collection.ts 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. dimensionTooltip: 'Only vector type has dimension',
  25. dimensionMutipleWarning: 'Dimension should be 8 multiple',
  26. dimensionPositiveWarning: 'Dimension should be positive number',
  27. newBtn: 'add new field',
  28. // load dialog
  29. loadTitle: 'Load Collection',
  30. loadContent:
  31. 'You are trying to load a collection with data. Only loaded collection can be searched.',
  32. loadConfirmLabel: 'Load',
  33. // release dialog
  34. releaseTitle: 'Release Collection',
  35. releaseContent:
  36. 'You are trying to release a collection with data. Please be aware that the data will no longer be available for search.',
  37. releaseConfirmLabel: 'Release',
  38. // delete dialog
  39. deleteWarning:
  40. 'You are trying to delete a collection with data. This action cannot be undone.',
  41. // collection tabs
  42. partitionTab: 'Partitions',
  43. structureTab: 'Structure',
  44. };
  45. export default collectionTrans;