2024-04-02 11:02:16 +07:00
|
|
|
// This is just an example,
|
|
|
|
|
// so you can safely delete all default props below
|
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 11:28:52 +07:00
|
|
|
import main from './main';
|
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-03 14:22:29 +07:00
|
|
|
...drawerComponent,
|
2024-04-03 14:55:37 +07:00
|
|
|
...branchMainPage,
|
2024-04-04 11:28:52 +07:00
|
|
|
...main,
|
2024-04-02 11:02:16 +07:00
|
|
|
};
|