common.ts 2.3 KB

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