collection.ts 481 B

123456789101112131415161718192021222324
  1. const collectionTrans = {
  2. noLoadData: 'No Loaded Collection',
  3. noData: 'No Collection',
  4. rowCount: 'Row Count',
  5. tooltip: 'data in one row',
  6. create: 'Create Collection',
  7. delete: 'delete',
  8. // table
  9. id: 'ID',
  10. name: 'Name',
  11. status: 'Status',
  12. desc: 'Description',
  13. // create dialog
  14. createTitle: 'Create Collection',
  15. general: '1. General Info',
  16. structure: '2. Define Structure',
  17. description: 'Description (Optional)',
  18. };
  19. export default collectionTrans;