123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- const collectionTrans = {
- noLoadData: 'No Loaded Collection',
- noData: 'No Collection',
- rowCount: 'Approx Count',
- count: 'Entity Count',
- create: 'Collection',
- newColName: 'New Collection Name',
- alias: 'Alias',
- aliasTooltip: 'Please select one collection to create alias',
- collection: 'Collection',
- entities: 'entities',
- mmapEnabled: 'MMap-Enabled',
- mmapSettings: 'MMap Settings',
- collectionMMapSettingsLabel: 'Collection Raw Data MMap Settings',
- rawData: 'Raw Data',
- functions: 'Functions',
- // table
- id: 'ID',
- name: 'Name',
- features: 'Features',
- nameTip: 'Collection Name',
- status: 'Status',
- desc: 'Description',
- createdTime: 'Created Time',
- maxLength: 'Max Length',
- dynamicSchema: 'Dynamic Schema',
- function: 'Function',
- functionInput: 'Input',
- functionOutput: 'Output',
- // table tooltip
- aliasInfo: 'Alias can be used as collection name in vector search.',
- consistencyLevelInfo:
- '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.',
- entityCountInfo:
- 'This count is an approximation and may be slightly delayed due to the unique mechanisms of Milvus. The actual count may vary and is updated periodically. Please note that this number should be used as a reference and not as an exact count.',
- replicaTooltip:
- 'The number of replicas for the collection, it can not exceed the number of query nodes.',
- modifyReplicaTooltip: 'Modify Replica Number',
- // create dialog
- createTitle: 'Create Collection {{name}}',
- idAndVectorFields: 'Primary Key, Vector Fields',
- scalarFields: 'Scalar Fields',
- schema: 'Schema',
- consistency: 'Consistency',
- consistencyLevel: 'Consistency Level',
- description: 'Description',
- fieldType: 'Type',
- elementType: 'Array Type',
- vectorFieldType: 'Vector Field Type',
- fieldName: 'Field',
- idFieldName: 'Primary Key Field',
- vectorFieldName: 'Vector Field',
- autoId: 'Auto ID',
- autoIdToggleTip:
- 'Whether the primary key is automatically generated by Milvus, only support INT64.',
- vectorType: 'Type',
- idType: 'Type',
- dimension: 'Dimension',
- dimensionTooltip: 'Only vector type has dimension',
- dimensionMultipleWarning: 'Dimension should be 8 multiple',
- dimensionPositiveWarning: 'Positive number only',
- newBtn: 'add new field',
- nameLengthWarning: 'Name length should be less than 256',
- nameContentWarning: 'Only numbers, letters, and underscores are allowed.',
- nameFirstLetterWarning:
- 'Name first character must be underscore or character(a~z, A~Z)',
- partitionKey: 'Partition Key',
- partitionKeyTooltip:
- ' Milvus will store entities in a partition according to the values in the partition key field. Only one Int64 or VarChar field is supported.',
- paritionKeyDisabledTooltip:
- 'Only one field can be marked as paritition key and field marked as nullable cannot be used as partition key.',
- enableDynamicSchema: 'Dynamic Schema',
- analyzer: 'Analyzer',
- enableMatch: 'Enable Match',
- textMatchTooltip:
- 'Text match in Milvus enables precise document retrieval based on specific terms.',
- nullable: 'Nullable',
- nullableTooltip:
- 'Whether the field can be null, nullable field cannot be used as partition keys.',
- defaultValue: 'Default',
- defaultValueTooltip:
- 'Default value of the field, JSON and Array types are not supported.',
- loadCollectionAfterCreate: 'Load collection immediately after creation',
- loadCollectionAfterCreateTip:
- 'Attu will create indexes for fields using AUTOINDEX and then load the collection.',
- addBm25Function: 'Add BM25 Function',
- bm25NoVarcharAndSparse:
- 'To create a BM25 function, please add at least one VarChar field and one SparseFloatVector field.',
- bm25NoVarchar:
- 'To create a BM25 function, please add at least one VarChar field.',
- bm25NoSparse:
- 'To create a BM25 function, please add at least one SparseFloatVector field.',
- bm25InputVarChar: 'Input VarChar',
- bm25OutputSparse: 'Output SparseFloatVector',
- noAvailableSparse: 'No available field',
- // load dialog
- loadTitle: 'Load Collection',
- loadContent:
- 'All search and query operations within Milvus are executed in memory, only loaded collection can be searched.',
- loadConfirmLabel: 'Load',
- replica: 'Replica',
- replicaNum: 'Replica number',
- replicaDes: `With in-memory replicas, Milvus can load the same segment on multiple query nodes. The replica number can not exceed query node count.`,
- enableRepica: `Enable in-memory replica`,
- // release dialog
- releaseTitle: 'Release Collection',
- releaseContent:
- 'You are trying to release a collection with data. Please be aware that the data will no longer be available for search.',
- releaseConfirmLabel: 'Release',
- // delete dialog
- deleteWarning: `You are trying to delete a collection with data. This action cannot be undone.`,
- deleteDataWarning: `You are trying to delete entities. This action cannot be undone.`,
- deleteAliasWarning: `You are trying to drop an alias. This action cannot be undone.`,
- // collection tabs
- partitionTab: 'Partitions',
- overviewTab: 'Overview',
- schemaTab: 'Schema',
- searchTab: 'Vector Search',
- dataTab: 'Data',
- previewTab: 'Data Preview',
- segmentsTab: 'Segments',
- propertiesTab: 'Properties',
- startTip: 'Start Your Data Query',
- exprPlaceHolder: 'Please enter your query expression, eg: id > 0',
- queryExpression: 'Query Expression',
- // alias dialog
- aliasCreatePlaceholder: 'Alias Name',
- // rename dialog
- newColNamePlaceholder: 'New Collection Name',
- newNameInfo: 'Only numbers, letters, and underscores are allowed.',
- // duplicate dialog
- duplicateNameExist: 'A collection with this name already exists.',
- fieldNameExist: 'field name is already exist',
- // segment
- segments: 'Segments',
- segPState: 'Persistent Segment State',
- partitionID: 'Partition ID',
- segmentID: 'Segment ID',
- num_rows: 'Row Count',
- q_nodeIds: 'Query Node IDs',
- q_index_name: 'Index Name',
- q_indexID: 'Index ID',
- q_state: 'Query Segment State',
- q_mem_size: 'Memory Size',
- compact: 'Compact',
- compactDialogInfo: `Compaction is a process that optimizes storage and query performance by organizing segments. <a href='https://milvus.io/blog/2022-2-21-compact.md' target="_blank">Learn more</a><br /><br /> Please note that this operation may take some time to complete, especially for large datasets. We recommend running compaction during periods of lower system activity or during scheduled maintenance to minimize disruption.
- `,
- // column tooltip
- dynamicSchemaTooltip: `Dynamic schema enables users to insert entities with new fields into a Milvus collection without modifying the existing schema.`,
- consistencyBoundedTooltip: `It allows data inconsistency during a certain period of time`,
- consistencyStrongTooltip: `It ensures that users can read the latest version of data.`,
- consistencySessionTooltip: `It ensures that all data writes can be immediately perceived in reads during the same session.`,
- consistencyEventuallyTooltip: `There is no guaranteed order of reads and writes, and replicas eventually converge to the same state given that no further write operations are done.`,
- noVectorIndexTooltip: `Please make sure all vector fields have index.`,
- mmapTooltip: `Memory-mapped files allow for direct mapping of raw data and indexes into memory. This feature enhances memory efficiency, particularly in situations where available memory is scarce but complete data loading is infeasible.`,
- mmapFieldSettingDisabledTooltip: `This setting is disabled because collection-level mmap configuration overrides field-level settings.`,
- mmapCollectionNotReleasedTooltip: `Collection is not released, please release it first.`,
- clickToLoad: 'Click to load the collection.',
- clickToRelease: 'Click to release the collection.',
- clickToSearch: 'Click to execute vector search.',
- clickToCreateVectorIndex: 'Click to create the vector index.',
- collectionIsLoading: 'The collection is loading...',
- };
- export default collectionTrans;
|