common.ts 476 B

123456789101112131415161718192021222324252627
  1. const commonTrans = {
  2. milvus: {
  3. admin: 'Milvus Insight',
  4. address: 'Milvus Address',
  5. },
  6. status: {
  7. loaded: 'loaded for search',
  8. unloaded: 'unloaded',
  9. error: 'error',
  10. running: 'running',
  11. },
  12. grid: {
  13. action: 'action',
  14. noData: 'No Data',
  15. rows: 'Rows',
  16. of: 'of',
  17. nextLabel: 'next page',
  18. prevLabel: 'prev page',
  19. },
  20. copy: {
  21. copy: 'Copy',
  22. copied: 'Copied',
  23. },
  24. param: 'Parameter',
  25. };
  26. export default commonTrans;