85 lines
2.2 KiB
TypeScript
85 lines
2.2 KiB
TypeScript
import main from './main';
|
|
import drawerComponent from './drawer-component';
|
|
import personnelMainPage from './personnel-main-page';
|
|
import address from './address';
|
|
import branch from './branch';
|
|
import user from './user';
|
|
import formDialog from './form-dialog';
|
|
import status from './status';
|
|
import customerMainPage from './customer-main-page';
|
|
import employerDialog from './employer-dialog';
|
|
import otherDocument from './other-document';
|
|
import productService from './product-service';
|
|
import alertDialog from './alert-dialog';
|
|
export default {
|
|
ok: 'Confirm',
|
|
agree: 'Ok',
|
|
cancel: 'Cancel',
|
|
failed: 'Failed',
|
|
success: 'Success',
|
|
search: 'Search',
|
|
loading: 'Loading',
|
|
download: 'Download',
|
|
save: 'Save',
|
|
edit: 'Edit',
|
|
delete: 'Delete',
|
|
telephone: 'Telephone',
|
|
viewDetail: 'View Detail',
|
|
noData: 'No Data',
|
|
notFound: 'Data Not Found',
|
|
code: 'Code',
|
|
status: 'Status',
|
|
type: 'Type',
|
|
switchOnLabel: 'Open',
|
|
switchOffLabel: 'Close',
|
|
language: 'Language',
|
|
languageName: 'English',
|
|
select: 'Select',
|
|
all: 'All',
|
|
displayField: 'Display Fields',
|
|
deleteConfirmTitle: 'Comfirm Deletion',
|
|
deleteConfirmMessage: 'Do you want to delete this item?',
|
|
headquartersNotEstablished:
|
|
'You have not yet established the headquarters. You need to establish the headquarters before you can create personnel.',
|
|
|
|
changePassword: 'Change Password',
|
|
signature: 'Signature',
|
|
addSignature: 'Add Signature',
|
|
clear: 'Clear',
|
|
detail: 'Detail',
|
|
add: 'Add',
|
|
name: 'Name',
|
|
editPersonalInfo: 'Edit personal infomation',
|
|
logout: 'Logout',
|
|
list: 'Item',
|
|
manage: 'Manage',
|
|
mode: 'Mode',
|
|
theme: 'Theme',
|
|
light: 'Light',
|
|
dark: 'Dark',
|
|
uploadFile: 'Upload File',
|
|
newUpload: 'New Upload',
|
|
baseOnDevice: 'Base on Device',
|
|
person: 'Person',
|
|
recordsPage: 'Showing {resultcurrentPage} out of {total} records',
|
|
showing: 'Showing',
|
|
dataSum: 'Data Summaries',
|
|
createdAt: 'Created At',
|
|
noResults: 'No Data',
|
|
notRecorded: 'You have not yet saved.',
|
|
editImage: 'Edit Image',
|
|
bankBook: 'Bank Book',
|
|
...status,
|
|
...main,
|
|
...address,
|
|
...branch,
|
|
...user,
|
|
...drawerComponent,
|
|
...personnelMainPage,
|
|
...formDialog,
|
|
...customerMainPage,
|
|
...employerDialog,
|
|
...otherDocument,
|
|
...productService,
|
|
...alertDialog,
|
|
};
|