1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- const collectionTrans = {
- noLoadData: 'No Loaded Collection',
- noData: 'No Collection',
- rowCount: 'Entity Count',
- tooltip: 'data in one entity',
- create: 'Create Collection',
- delete: 'delete',
- deleteTooltip: 'Please select at least one item to delete.',
- alias: 'alias',
- aliasTooltip: 'Please select one collection to create alias',
- collection: 'Collection',
- entites: 'entites',
- // table
- id: 'ID',
- name: 'Name',
- status: 'Status',
- desc: 'Description',
- createdTime: 'Created Time',
- // create dialog
- createTitle: 'Create Collection',
- general: '1. General Info',
- schema: '2. Define Schema',
- description: 'Description (Optional)',
- fieldType: 'Field Type',
- vectorFieldType: 'Vector Field Type',
- fieldName: 'Field Name',
- autoId: 'Auto ID',
- dimension: 'Dimension',
- dimensionTooltip: 'Only vector type has dimension',
- dimensionMutipleWarning: 'Dimension should be 8 multiple',
- dimensionPositiveWarning: 'Dimension should be positive number',
- newBtn: 'add new field',
- nameLengthWarning: 'Name length should be less than 256',
- nameContentWarning: 'Name can only contain numbers, letters, and underscores',
- nameFirstLetterWarning:
- 'Name first character must be underscore or character(a~z, A~Z)',
- // load dialog
- loadTitle: 'Load Collection',
- loadContent:
- 'You are trying to load a collection with data. Only loaded collection can be searched.',
- loadConfirmLabel: 'Load',
- // 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 entites. This action cannot be undone.`,
- // collection tabs
- partitionTab: 'Partitions',
- schemaTab: 'Schema',
- queryTab: 'Data Query',
- startTip: 'Start your data query',
- exprPlaceHolder: 'Please enter your query by using advanced filter ->',
- };
- export default collectionTrans;
|