billing.ts 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. const translation = {
  2. currentPlan: '当前套餐',
  3. upgradeBtn: {
  4. plain: '升级套餐',
  5. encourage: '立即升级',
  6. encourageShort: '升级',
  7. },
  8. viewBilling: '管理账单及订阅',
  9. buyPermissionDeniedTip: '请联系企业管理员订阅',
  10. plansCommon: {
  11. title: '选择适合您的套餐',
  12. yearlyTip: '订阅年度计划可免费获得 2个月!',
  13. mostPopular: '最受欢迎',
  14. planRange: {
  15. monthly: '按月',
  16. yearly: '按年',
  17. },
  18. month: '月',
  19. year: '年',
  20. save: '节省',
  21. currentPlan: '当前计划',
  22. contractSales: '联系销售',
  23. contractOwner: '联系团队管理员',
  24. free: '免费',
  25. startForFree: '免费开始',
  26. getStartedWith: '开始使用',
  27. contactSales: '联系销售',
  28. talkToSales: '联系销售',
  29. modelProviders: '支持的模型提供商',
  30. teamMembers: '团队成员',
  31. buildApps: '构建应用程序数',
  32. annotationQuota: '标注回复数',
  33. vectorSpace: '向量空间',
  34. vectorSpaceTooltip: '向量空间是 LLMs 理解您的数据所需的长期记忆系统。',
  35. vectorSpaceBillingTooltip: '向量存储是将知识库向量化处理后为让 LLMs 理解数据而使用的长期记忆存储,1MB 大约能满足1.2 million character 的向量化后数据存储(以 OpenAI Embedding 模型估算,不同模型计算方式有差异)。在向量化过程中,实际的压缩或尺寸减小取决于内容的复杂性和冗余性。',
  36. documentsUploadQuota: '文档上传配额',
  37. documentProcessingPriority: '文档处理优先级',
  38. documentProcessingPriorityTip: '如需更高的文档处理优先级,请升级您的套餐',
  39. documentProcessingPriorityUpgrade: '以更快的速度、更高的精度处理更多的数据。',
  40. priority: {
  41. 'standard': '标准',
  42. 'priority': '优先',
  43. 'top-priority': '最高优先级',
  44. },
  45. logsHistory: '日志历史',
  46. customTools: '自定义工具',
  47. unavailable: '不可用',
  48. days: '天',
  49. unlimited: '无限制',
  50. support: '支持',
  51. supportItems: {
  52. communityForums: '社区论坛',
  53. emailSupport: '电子邮件支持',
  54. priorityEmail: '优先电子邮件和聊天支持',
  55. logoChange: 'Logo更改',
  56. SSOAuthentication: 'SSO 认证',
  57. personalizedSupport: '个性化支持',
  58. dedicatedAPISupport: '专用 API 支持',
  59. customIntegration: '自定义集成和支持',
  60. ragAPIRequest: 'RAG API 请求',
  61. bulkUpload: '批量上传文档',
  62. agentMode: '代理模式',
  63. workflow: '工作流',
  64. llmLoadingBalancing: 'LLM 负载均衡',
  65. llmLoadingBalancingTooltip: '向模型添加多个 API 密钥,有效绕过 API 速率限制。',
  66. },
  67. comingSoon: '即将推出',
  68. member: '成员',
  69. memberAfter: '个成员',
  70. messageRequest: {
  71. title: '消息额度',
  72. tooltip: '为不同方案提供基于 OpenAI 模型的消息响应额度。',
  73. },
  74. annotatedResponse: {
  75. title: '标注回复数',
  76. tooltip: '标注回复功能通过人工编辑标注为应用提供了可定制的高质量问答回复能力',
  77. },
  78. ragAPIRequestTooltip: '指单独调用 Dify 知识库数据处理能力的 API。',
  79. receiptInfo: '只有团队所有者和团队管理员才能订阅和查看账单信息',
  80. },
  81. plans: {
  82. sandbox: {
  83. name: 'Sandbox',
  84. description: '200次 GPT 免费试用',
  85. includesTitle: '包括:',
  86. },
  87. professional: {
  88. name: 'Professional',
  89. description: '让个人和小团队能够以经济实惠的方式释放更多能力。',
  90. includesTitle: 'Sandbox 计划中的一切,加上:',
  91. },
  92. team: {
  93. name: 'Team',
  94. description: '协作无限制并享受顶级性能。',
  95. includesTitle: 'Professional 计划中的一切,加上:',
  96. },
  97. enterprise: {
  98. name: 'Enterprise',
  99. description: '获得大规模关键任务系统的完整功能和支持。',
  100. includesTitle: 'Team 计划中的一切,加上:',
  101. },
  102. },
  103. vectorSpace: {
  104. fullTip: '向量空间已满。',
  105. fullSolution: '升级您的套餐以获得更多空间。',
  106. },
  107. apps: {
  108. fullTipLine1: '升级您的套餐以',
  109. fullTipLine2: '构建更多的程序。',
  110. },
  111. annotatedResponse: {
  112. fullTipLine1: '升级您的套餐以',
  113. fullTipLine2: '标注更多对话。',
  114. quotaTitle: '标注的配额',
  115. },
  116. }
  117. export default translation