collection.ts 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. const collectionTrans = {
  2. noLoadData: 'No Loaded Collection',
  3. noData: 'No Collection',
  4. rowCount: 'Entity Count',
  5. tooltip: 'data in one entity',
  6. create: 'Create Collection',
  7. delete: 'delete',
  8. deleteTooltip: 'Please select at least one item to delete.',
  9. alias: 'alias',
  10. aliasTooltip: 'Please select one collection to create alias',
  11. collection: 'Collection',
  12. entites: 'entites',
  13. // table
  14. id: 'ID',
  15. name: 'Name',
  16. status: 'Status',
  17. desc: 'Description',
  18. createdTime: 'Created Time',
  19. // create dialog
  20. createTitle: 'Create Collection',
  21. general: '1. General Info',
  22. schema: '2. Define Schema',
  23. description: 'Description (Optional)',
  24. fieldType: 'Field Type',
  25. vectorFieldType: 'Vector Field Type',
  26. fieldName: 'Field Name',
  27. autoId: 'Auto ID',
  28. dimension: 'Dimension',
  29. dimensionTooltip: 'Only vector type has dimension',
  30. dimensionMutipleWarning: 'Dimension should be 8 multiple',
  31. dimensionPositiveWarning: 'Dimension should be positive number',
  32. newBtn: 'add new field',
  33. nameLengthWarning: 'Name length should be less than 256',
  34. nameContentWarning: 'Name can only contain numbers, letters, and underscores',
  35. nameFirstLetterWarning:
  36. 'Name first character must be underscore or character(a~z, A~Z)',
  37. // load dialog
  38. loadTitle: 'Load Collection',
  39. loadContent:
  40. 'You are trying to load a collection with data. Only loaded collection can be searched.',
  41. loadConfirmLabel: 'Load',
  42. // release dialog
  43. releaseTitle: 'Release Collection',
  44. releaseContent:
  45. 'You are trying to release a collection with data. Please be aware that the data will no longer be available for search.',
  46. releaseConfirmLabel: 'Release',
  47. // delete dialog
  48. deleteWarning:
  49. 'You are trying to delete a collection with data. This action cannot be undone.',
  50. deleteDataWarning: `You are trying to delete entites. This action cannot be undone.`,
  51. // collection tabs
  52. partitionTab: 'Partitions',
  53. schemaTab: 'Schema',
  54. queryTab: 'Data Query',
  55. startTip: 'Start your data query',
  56. exprPlaceHolder: 'Please enter your query by using advanced filter ->',
  57. };
  58. export default collectionTrans;