21 lines
390 B
TypeScript
21 lines
390 B
TypeScript
export interface TabBarText {
|
|
indexText: string;
|
|
repairText: string;
|
|
userText: string;
|
|
memberText: string;
|
|
}
|
|
|
|
export const tabBarZhCn: TabBarText = {
|
|
indexText: '主页',
|
|
repairText: '维修',
|
|
userText: '我的',
|
|
memberText: '管理',
|
|
};
|
|
|
|
export const tabBarEnUs: TabBarText = {
|
|
indexText: 'Home',
|
|
repairText: 'Repair',
|
|
userText: 'Account',
|
|
memberText: 'Member',
|
|
};
|