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-02 11:02:16 +07:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
ok: 'Confirm',
|
|
|
|
|
cancel: 'Cancel',
|
|
|
|
|
failed: 'Failed',
|
|
|
|
|
success: 'Success',
|
|
|
|
|
search: 'Search',
|
|
|
|
|
download: 'Download',
|
|
|
|
|
save: 'Save',
|
2024-04-03 14:22:29 +07:00
|
|
|
...drawerComponent,
|
2024-04-02 11:02:16 +07:00
|
|
|
};
|