common.ts 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. property: 'Property',
  44. properties: 'Properties',
  45. node: 'Node',
  46. nodes: 'Nodes',
  47. results: 'results',
  48. of: 'of',
  49. nextLabel: 'next page',
  50. prevLabel: 'prev page',
  51. },
  52. copy: {
  53. copy: 'Copy',
  54. copied: 'Copied!',
  55. label: 'copy button',
  56. },
  57. param: 'Parameter',
  58. search: 'Search by name',
  59. code: 'Code View',
  60. view: 'View Code',
  61. js: 'Node.js',
  62. py: 'Python',
  63. java: 'Java',
  64. community: {
  65. hi: 'Hi, there!',
  66. growing: 'Our growing community is here!',
  67. question: 'Have question about Milvus?',
  68. qr: 'Scan WeChat QR code to get access',
  69. more: 'More Channels to Explore',
  70. join: 'Join our growing social community today',
  71. get: 'Get insight, tips and share ideas',
  72. },
  73. capacity: {
  74. b: 'B',
  75. kb: 'KB',
  76. mb: 'MB',
  77. gb: 'GB',
  78. tb: 'TB',
  79. pb: 'PB',
  80. },
  81. size: 'Approximate Size',
  82. tip: 'Use 100k vectors and 1024 segment file size as example',
  83. disk: 'Disk',
  84. memory: 'Memory',
  85. };
  86. export default commonTrans;