common.ts 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. const commonTrans = {
  2. attu: {
  3. admin: 'Attu',
  4. address: 'Milvus Address',
  5. unAuth: 'Username or password is not correct',
  6. username: 'Username',
  7. password: 'Password',
  8. optional: '(optional)',
  9. ssl: 'SSL',
  10. },
  11. status: {
  12. loaded: 'loaded',
  13. unloaded: 'unloaded',
  14. error: 'error',
  15. running: 'running',
  16. loading: 'is loaded',
  17. },
  18. grid: {
  19. action: 'action',
  20. noData: 'No Data',
  21. rows: 'Rows',
  22. of: 'of',
  23. nextLabel: 'next page',
  24. prevLabel: 'prev page',
  25. },
  26. copy: {
  27. copy: 'Copy',
  28. copied: 'Copied!',
  29. label: 'copy button',
  30. },
  31. param: 'Parameter',
  32. search: 'Search by name',
  33. code: 'Code View',
  34. view: 'View Code',
  35. js: 'NODE.JS',
  36. py: 'PYTHON',
  37. community: {
  38. hi: 'Hi, there!',
  39. growing: 'Our growing community is here!',
  40. question: 'Have question about Milvus?',
  41. qr: 'Scan WeChat QR code to get access',
  42. more: 'More Channels to Explore',
  43. join: 'Join our growing social community today',
  44. get: 'Get insight, tips and share ideas',
  45. },
  46. capacity: {
  47. b: 'B',
  48. kb: 'KB',
  49. mb: 'MB',
  50. gb: 'GB',
  51. tb: 'TB',
  52. pb: 'PB',
  53. },
  54. size: 'Approximate size',
  55. tip: 'Use 100k vectors and 1024 segment file size as example',
  56. disk: 'Disk',
  57. memory: 'Memory',
  58. };
  59. export default commonTrans;