|
@@ -2,13 +2,12 @@ const collectionTrans = {
|
|
|
noLoadData: 'No Loaded Collection',
|
|
|
noData: 'No Collection',
|
|
|
|
|
|
- rowCount: 'Entity Count',
|
|
|
- tooltip: 'Approximately entity count.',
|
|
|
+ rowCount: 'Approx Entity Count',
|
|
|
|
|
|
create: 'Create Collection',
|
|
|
delete: 'delete',
|
|
|
deleteTooltip: 'Please select at least one item to delete.',
|
|
|
- alias: 'alias',
|
|
|
+ alias: 'Alias',
|
|
|
aliasTooltip: 'Please select one collection to create alias',
|
|
|
download: 'Download',
|
|
|
downloadTooltip: 'Download all query results',
|
|
@@ -19,29 +18,40 @@ const collectionTrans = {
|
|
|
// table
|
|
|
id: 'ID',
|
|
|
name: 'Name',
|
|
|
+ nameTip: 'Collection Name',
|
|
|
status: 'Status',
|
|
|
desc: 'Description',
|
|
|
createdTime: 'Created Time',
|
|
|
maxLength: 'Max Length',
|
|
|
|
|
|
+ // 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: 'Approximately entity count.',
|
|
|
+
|
|
|
// create dialog
|
|
|
createTitle: 'Create Collection',
|
|
|
- general: '1. General Info',
|
|
|
- schema: '2. Define Schema',
|
|
|
- consistency: '3. Consistency Level',
|
|
|
+ general: 'General information',
|
|
|
+ schema: 'Schema',
|
|
|
+ consistency: 'Consistency Level',
|
|
|
consistencyLevel: 'Consistency Level',
|
|
|
- description: 'Description (Optional)',
|
|
|
+ description: 'Description',
|
|
|
fieldType: 'Field Type',
|
|
|
vectorFieldType: 'Vector Field Type',
|
|
|
fieldName: 'Field Name',
|
|
|
+ idFieldName: 'ID Name',
|
|
|
+ vectorFieldName: 'Vector Name',
|
|
|
autoId: 'Auto ID',
|
|
|
+ vectorType: 'Vector Type',
|
|
|
+ idType: 'ID Type',
|
|
|
dimension: 'Dimension',
|
|
|
dimensionTooltip: 'Only vector type has dimension',
|
|
|
dimensionMutipleWarning: 'Dimension should be 8 multiple',
|
|
|
- dimensionPositiveWarning: 'Dimension should be positive number',
|
|
|
+ dimensionPositiveWarning: 'Positive number only',
|
|
|
newBtn: 'add new field',
|
|
|
nameLengthWarning: 'Name length should be less than 256',
|
|
|
- nameContentWarning: 'Only numbers, letters, and underscores are allowed',
|
|
|
+ nameContentWarning: 'Only numbers, letters, and underscores are allowed.',
|
|
|
nameFirstLetterWarning:
|
|
|
'Name first character must be underscore or character(a~z, A~Z)',
|
|
|
|
|
@@ -58,16 +68,20 @@ const collectionTrans = {
|
|
|
releaseConfirmLabel: 'Release',
|
|
|
|
|
|
// delete dialog
|
|
|
- deleteWarning:
|
|
|
- 'You are trying to delete a collection with data. This action cannot be undone.',
|
|
|
+ deleteWarning: `You are trying to delete a collection with data. This action cannot be undone.`,
|
|
|
deleteDataWarning: `You are trying to delete entites. This action cannot be undone.`,
|
|
|
+ deleteAliasWarning: `You are trying to drop an alias. This action cannot be undone.`,
|
|
|
|
|
|
// collection tabs
|
|
|
partitionTab: 'Partitions',
|
|
|
schemaTab: 'Schema',
|
|
|
queryTab: 'Data Query',
|
|
|
+ previewTab: 'Data Preview',
|
|
|
startTip: 'Start your data query',
|
|
|
exprPlaceHolder: 'Please enter your query by using advanced filter ->',
|
|
|
+
|
|
|
+ // alias dialog
|
|
|
+ aliasCreatePlaceholder: 'Alias name',
|
|
|
};
|
|
|
|
|
|
export default collectionTrans;
|