2024-04-04 16:39:50 +07:00
|
|
|
import main from './main';
|
2024-04-03 14:22:29 +07:00
|
|
|
import drawerComponent from './drawer-component';
|
2024-04-03 14:55:37 +07:00
|
|
|
import branchMainPage from './branch-main-page';
|
2024-04-04 16:39:50 +07:00
|
|
|
import personnelMainPage from './personnel-main-page';
|
2024-04-10 15:01:10 +07:00
|
|
|
import address from './address';
|
|
|
|
|
import branch from './branch';
|
2024-04-10 17:22:54 +07:00
|
|
|
import user from './user';
|
2024-04-02 11:02:16 +07:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
ok: 'Confirm',
|
|
|
|
|
cancel: 'Cancel',
|
|
|
|
|
failed: 'Failed',
|
|
|
|
|
success: 'Success',
|
|
|
|
|
search: 'Search',
|
2024-04-11 09:46:51 +07:00
|
|
|
loading: 'Loading',
|
2024-04-02 11:02:16 +07:00
|
|
|
download: 'Download',
|
|
|
|
|
save: 'Save',
|
2024-04-04 15:25:02 +07:00
|
|
|
edit: 'Edit',
|
|
|
|
|
delete: 'Delete',
|
2024-04-10 20:27:47 +07:00
|
|
|
telephone: 'Telephone',
|
2024-04-11 09:42:46 +07:00
|
|
|
noData: 'No Data',
|
2024-04-11 09:46:51 +07:00
|
|
|
code: 'Code',
|
|
|
|
|
type: 'Type',
|
2024-04-04 16:39:50 +07:00
|
|
|
...main,
|
2024-04-10 15:01:10 +07:00
|
|
|
...address,
|
|
|
|
|
...branch,
|
2024-04-10 17:22:54 +07:00
|
|
|
...user,
|
2024-04-03 14:22:29 +07:00
|
|
|
...drawerComponent,
|
2024-04-03 14:55:37 +07:00
|
|
|
...branchMainPage,
|
2024-04-10 15:01:10 +07:00
|
|
|
...personnelMainPage,
|
2024-04-02 11:02:16 +07:00
|
|
|
};
|