common.ts 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. prometheus: 'Prometheus',
  10. prometheusAddress: 'Prometheus Address',
  11. prometheusInstance: 'Prometheus Instance',
  12. prometheusNamespace: 'Prometheus Namespace',
  13. },
  14. status: {
  15. loaded: 'loaded',
  16. unloaded: 'unloaded',
  17. error: 'error',
  18. running: 'running',
  19. loading: 'is loaded',
  20. },
  21. grid: {
  22. action: 'action',
  23. noData: 'No Data',
  24. rows: 'Rows',
  25. results: 'results',
  26. of: 'of',
  27. nextLabel: 'next page',
  28. prevLabel: 'prev page',
  29. },
  30. copy: {
  31. copy: 'Copy',
  32. copied: 'Copied!',
  33. label: 'copy button',
  34. },
  35. param: 'Parameter',
  36. search: 'Search by name',
  37. code: 'Code View',
  38. view: 'View Code',
  39. js: 'Node.js',
  40. py: 'Python',
  41. java: 'Java',
  42. community: {
  43. hi: 'Hi, there!',
  44. growing: 'Our growing community is here!',
  45. question: 'Have question about Milvus?',
  46. qr: 'Scan WeChat QR code to get access',
  47. more: 'More Channels to Explore',
  48. join: 'Join our growing social community today',
  49. get: 'Get insight, tips and share ideas',
  50. },
  51. capacity: {
  52. b: 'B',
  53. kb: 'KB',
  54. mb: 'MB',
  55. gb: 'GB',
  56. tb: 'TB',
  57. pb: 'PB',
  58. },
  59. size: 'Approximate Size',
  60. tip: 'Use 100k vectors and 1024 segment file size as example',
  61. disk: 'Disk',
  62. memory: 'Memory',
  63. };
  64. export default commonTrans;