15 lines
309 B
TypeScript
15 lines
309 B
TypeScript
export interface SettingsPageText {
|
|
aboutText: string;
|
|
quitText: string;
|
|
}
|
|
|
|
export const settingsPageZhCn: SettingsPageText = {
|
|
aboutText: '关于 EVA Notify',
|
|
quitText: '退出账号',
|
|
};
|
|
|
|
export const settingsPageEnUs: SettingsPageText = {
|
|
aboutText: 'About EVA Notify',
|
|
quitText: 'Log Out',
|
|
};
|