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. vectorSpace: '向量空間',
  33. vectorSpaceTooltip: '向量空間是 LLMs 理解您的資料所需的長期記憶系統。',
  34. vectorSpaceBillingTooltip: '向量儲存是將知識庫向量化處理後為讓 LLMs 理解資料而使用的長期記憶儲存,1MB 大約能滿足1.2 million character 的向量化後資料儲存(以 OpenAI Embedding 模型估算,不同模型計算方式有差異)。在向量化過程中,實際的壓縮或尺寸減小取決於內容的複雜性和冗餘性。',
  35. documentsUploadQuota: '文件上傳配額',
  36. documentProcessingPriority: '文件處理優先順序',
  37. documentProcessingPriorityTip: '如需更高的文件處理優先順序,請升級您的套餐',
  38. documentProcessingPriorityUpgrade: '以更快的速度、更高的精度處理更多的資料。',
  39. priority: {
  40. 'standard': '標準',
  41. 'priority': '優先',
  42. 'top-priority': '最高優先順序',
  43. },
  44. logsHistory: '日誌歷史',
  45. customTools: '自定義工具',
  46. unavailable: '不可用',
  47. days: '天',
  48. unlimited: '無限制',
  49. support: '支援',
  50. supportItems: {
  51. communityForums: '社群論壇',
  52. emailSupport: '電子郵件支援',
  53. priorityEmail: '優先電子郵件和聊天支援',
  54. logoChange: 'Logo更改',
  55. SSOAuthentication: 'SSO 認證',
  56. personalizedSupport: '個性化支援',
  57. dedicatedAPISupport: '專用 API 支援',
  58. customIntegration: '自定義整合和支援',
  59. ragAPIRequest: 'RAG API 請求',
  60. bulkUpload: '批次上傳文件',
  61. agentMode: '代理模式',
  62. workflow: '工作流',
  63. llmLoadingBalancing: 'LLM 負載均衡',
  64. llmLoadingBalancingTooltip: '向模型添加多個 API 金鑰,從而有效地繞過 API 速率限制。',
  65. },
  66. comingSoon: '即將推出',
  67. member: '成員',
  68. memberAfter: '個成員',
  69. messageRequest: {
  70. title: '訊息額度',
  71. tooltip: '為不同方案提供基於 OpenAI 模型的訊息響應額度。',
  72. },
  73. annotatedResponse: {
  74. title: '標註回覆數',
  75. tooltip: '標註回覆功能透過人工編輯標註為應用提供了可定製的高質量問答回覆能力',
  76. },
  77. ragAPIRequestTooltip: '指單獨呼叫 Dify 知識庫資料處理能力的 API。',
  78. receiptInfo: '只有團隊所有者和團隊管理員才能訂閱和檢視賬單資訊',
  79. annotationQuota: '註釋配額',
  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