common.ts 921 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. label: 'copy button',
  24. },
  25. param: 'Parameter',
  26. search: 'Search by name',
  27. code: 'Code View',
  28. view: 'View Code',
  29. js: 'NODE.JS',
  30. py: 'PYTHON',
  31. community: {
  32. hi: 'Hi, there!',
  33. growing: 'Our growing community is here!',
  34. question: 'Have question about Milvus?',
  35. qr: 'Scan WeChat QR code to get access',
  36. more: 'More Channels to Explore',
  37. join: 'Join our growing social community today',
  38. get: 'Get insight, tips and share ideas'
  39. },
  40. };
  41. export default commonTrans;