2
0

common.ts 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. const commonTrans = {
  2. attu: {
  3. admin: 'Attu',
  4. address: 'Milvus Address',
  5. fileIssue: 'Open an Issue',
  6. discord: 'Discord',
  7. token: 'token',
  8. authentication: 'Authentication',
  9. connectTitle: 'Connect to Milvus Server',
  10. unAuth: 'Username or password is not correct',
  11. username: 'username',
  12. password: 'password',
  13. optional: '(optional)',
  14. prometheus: 'Prometheus',
  15. prometheusAddress: 'Prometheus Address',
  16. prometheusInstance: 'Prometheus Instance',
  17. prometheusNamespace: 'Prometheus Namespace',
  18. connectionTip:
  19. 'Self-hosted Milvus or Zilliz Cloud Dedicated cluster are supported.',
  20. },
  21. status: {
  22. loaded: 'loaded',
  23. unloaded: 'unloaded',
  24. error: 'error',
  25. running: 'running',
  26. loading: 'is loaded',
  27. noVectorIndex: 'No Vector Index',
  28. },
  29. grid: {
  30. action: 'action',
  31. noData: 'No Data',
  32. rows: 'Rows',
  33. entity: 'Entity',
  34. entities: 'Entities',
  35. collection: 'Collection',
  36. collections: 'Collections',
  37. field: 'Field',
  38. fields: 'Fields',
  39. segment: 'Segment',
  40. segments: 'Segments',
  41. partition: 'Partition',
  42. partitions: 'Partitions',
  43. results: 'results',
  44. of: 'of',
  45. nextLabel: 'next page',
  46. prevLabel: 'prev page',
  47. },
  48. copy: {
  49. copy: 'Copy',
  50. copied: 'Copied!',
  51. label: 'copy button',
  52. },
  53. param: 'Parameter',
  54. search: 'Search by name',
  55. code: 'Code View',
  56. view: 'View Code',
  57. js: 'Node.js',
  58. py: 'Python',
  59. java: 'Java',
  60. community: {
  61. hi: 'Hi, there!',
  62. growing: 'Our growing community is here!',
  63. question: 'Have question about Milvus?',
  64. qr: 'Scan WeChat QR code to get access',
  65. more: 'More Channels to Explore',
  66. join: 'Join our growing social community today',
  67. get: 'Get insight, tips and share ideas',
  68. },
  69. capacity: {
  70. b: 'B',
  71. kb: 'KB',
  72. mb: 'MB',
  73. gb: 'GB',
  74. tb: 'TB',
  75. pb: 'PB',
  76. },
  77. size: 'Approximate Size',
  78. tip: 'Use 100k vectors and 1024 segment file size as example',
  79. disk: 'Disk',
  80. memory: 'Memory',
  81. };
  82. export default commonTrans;