2024-04-02 11:02:16 +07:00
|
|
|
// This is just an example,
|
|
|
|
|
// so you can safely delete all default props below
|
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-02 11:02:16 +07:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
ok: 'Confirm',
|
|
|
|
|
cancel: 'Cancel',
|
|
|
|
|
failed: 'Failed',
|
|
|
|
|
success: 'Success',
|
|
|
|
|
search: 'Search',
|
|
|
|
|
download: 'Download',
|
|
|
|
|
save: 'Save',
|
2024-04-04 15:25:02 +07:00
|
|
|
edit: 'Edit',
|
|
|
|
|
delete: 'Delete',
|
2024-04-04 16:39:50 +07:00
|
|
|
...main,
|
2024-04-10 15:01:10 +07:00
|
|
|
...address,
|
|
|
|
|
...branch,
|
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
|
|
|
};
|