12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- const collectionTrans = {
- noLoadData: 'No Loaded Collection',
- noData: 'No Collection',
- rowCount: 'Row Count',
- tooltip: 'data in one row',
- create: 'Create Collection',
- delete: 'delete',
- collection: 'Collection',
- // table
- id: 'ID',
- name: 'Name',
- status: 'Status',
- desc: 'Description',
- // create dialog
- createTitle: 'Create Collection',
- general: '1. General Info',
- structure: '2. Define Structure',
- description: 'Description (Optional)',
- fieldType: 'Field Type',
- vectorFieldType: 'Vector Field Type',
- fieldName: 'Field Name',
- autoId: 'Auto ID',
- dimension: 'Dimension',
- newBtn: 'add new field',
- // 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.',
- // collection tabs
- partitionTab: 'Partitions',
- structureTab: 'Structure',
- };
- export default collectionTrans;
|