collection.ts 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. const collectionTrans = {
  2. noLoadData: 'No Loaded Collection',
  3. noData: 'No Collection',
  4. rowCount: 'Approx Entity Count',
  5. create: 'Create Collection',
  6. delete: 'delete',
  7. deleteTooltip: 'Please select at least one item to delete.',
  8. rename: 'rename',
  9. renameTooltip: 'Please select one item to rename.',
  10. newColName: 'New Collection Name',
  11. alias: 'Alias',
  12. aliasTooltip: 'Please select one collection to create alias',
  13. download: 'Download',
  14. downloadTooltip: 'Export all query results to CSV file',
  15. downloadDisabledTooltip: 'Please query data before exporting',
  16. collection: 'Collection',
  17. entites: 'entites',
  18. // table
  19. id: 'ID',
  20. name: 'Name',
  21. nameTip: 'Collection Name',
  22. status: 'Status',
  23. desc: 'Description',
  24. createdTime: 'Created Time',
  25. maxLength: 'Max Length',
  26. // table tooltip
  27. aliasInfo: 'Alias can be used as collection name in vector search.',
  28. consistencyLevelInfo:
  29. 'Consistency refers to the property that ensures every node or replica has the same view of data when writing or reading data at a given time.',
  30. entityCountInfo: 'Approximately entity count.',
  31. // create dialog
  32. createTitle: 'Create Collection',
  33. general: 'General information',
  34. schema: 'Schema',
  35. consistency: 'Consistency Level',
  36. consistencyLevel: 'Consistency Level',
  37. description: 'Description',
  38. fieldType: 'Field Type',
  39. vectorFieldType: 'Vector Field Type',
  40. fieldName: 'Field',
  41. idFieldName: 'Primary Key Field',
  42. vectorFieldName: 'Vector Field',
  43. autoId: 'Auto ID',
  44. autoIdToggleTip:
  45. 'Whether the primary key is automatically generated by Milvus, only suppport INT64.',
  46. vectorType: 'Type',
  47. idType: 'Type',
  48. dimension: 'Dimension',
  49. dimensionTooltip: 'Only vector type has dimension',
  50. dimensionMutipleWarning: 'Dimension should be 8 multiple',
  51. dimensionPositiveWarning: 'Positive number only',
  52. newBtn: 'add new field',
  53. nameLengthWarning: 'Name length should be less than 256',
  54. nameContentWarning: 'Only numbers, letters, and underscores are allowed.',
  55. nameFirstLetterWarning:
  56. 'Name first character must be underscore or character(a~z, A~Z)',
  57. // load dialog
  58. loadTitle: 'Load Collection',
  59. loadContent:
  60. 'All search and query operations within Milvus are executed in memory, only loaded collection can be searched.',
  61. loadConfirmLabel: 'Load',
  62. replicaNum: 'Replica number',
  63. replicaDes: `With in-memory replicas, Milvus can load the same segment on multiple query nodes. The replica number can not exceed query node count.`,
  64. enableRepica: `Enable in-memory replica`,
  65. // release dialog
  66. releaseTitle: 'Release Collection',
  67. releaseContent:
  68. 'You are trying to release a collection with data. Please be aware that the data will no longer be available for search.',
  69. releaseConfirmLabel: 'Release',
  70. // delete dialog
  71. deleteWarning: `You are trying to delete a collection with data. This action cannot be undone.`,
  72. deleteDataWarning: `You are trying to delete entites. This action cannot be undone.`,
  73. deleteAliasWarning: `You are trying to drop an alias. This action cannot be undone.`,
  74. // collection tabs
  75. partitionTab: 'Partitions',
  76. schemaTab: 'Schema',
  77. queryTab: 'Data Query',
  78. previewTab: 'Data Preview',
  79. startTip: 'Start your data query.',
  80. dataQuerylimits:
  81. ' Please note that the maximum number of results for your data query is 16384.',
  82. exprPlaceHolder: 'Please enter your data query, for example id > 0',
  83. // alias dialog
  84. aliasCreatePlaceholder: 'Alias name',
  85. // rename dialog
  86. newColNamePlaceholder: 'New Collection Name',
  87. newNameInfo: 'Only numbers, letters, and underscores are allowed.',
  88. };
  89. export default collectionTrans;