collection.ts 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. collection: 'Collection',
  9. // table
  10. id: 'ID',
  11. name: 'Name',
  12. status: 'Status',
  13. desc: 'Description',
  14. // create dialog
  15. createTitle: 'Create Collection',
  16. general: '1. General Info',
  17. structure: '2. Define Structure',
  18. description: 'Description (Optional)',
  19. fieldType: 'Field Type',
  20. vectorFieldType: 'Vector Field Type',
  21. fieldName: 'Field Name',
  22. autoId: 'Auto ID',
  23. dimension: 'Dimension',
  24. newBtn: 'add new field',
  25. // load dialog
  26. loadTitle: 'Load Collection',
  27. loadContent:
  28. 'You are trying to load a collection with data. Only loaded collection can be searched.',
  29. loadConfirmLabel: 'Load',
  30. // release dialog
  31. releaseTitle: 'Release Collection',
  32. releaseContent:
  33. 'You are trying to release a collection with data. Please be aware that the data will no longer be available for search.',
  34. releaseConfirmLabel: 'Release',
  35. // delete dialog
  36. deleteWarning:
  37. 'You are trying to delete a collection with data. This action cannot be undone.',
  38. // collection tabs
  39. partitionTab: 'Partitions',
  40. structureTab: 'Structure',
  41. };
  42. export default collectionTrans;