2
0

common.ts 419 B

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