123456789101112131415161718192021222324252627 |
- const commonTrans = {
- milvus: {
- admin: 'Milvus Insight',
- address: 'Milvus Address',
- },
- status: {
- loaded: 'loaded for search',
- unloaded: 'unloaded',
- error: 'error',
- running: 'running',
- },
- grid: {
- action: 'action',
- noData: 'No Data',
- rows: 'Rows',
- of: 'of',
- nextLabel: 'next page',
- prevLabel: 'prev page',
- },
- copy: {
- copy: 'Copy',
- copied: 'Copied',
- },
- param: 'Parameter',
- };
- export default commonTrans;
|