billing.ts 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. },
  64. comingSoon: '即將推出',
  65. member: '成員',
  66. memberAfter: '個成員',
  67. messageRequest: {
  68. title: '訊息額度',
  69. tooltip: '為不同方案提供基於 OpenAI 模型的訊息響應額度。',
  70. },
  71. annotatedResponse: {
  72. title: '標註回覆數',
  73. tooltip: '標註回覆功能透過人工編輯標註為應用提供了可定製的高質量問答回覆能力',
  74. },
  75. ragAPIRequestTooltip: '指單獨呼叫 Dify 知識庫資料處理能力的 API。',
  76. receiptInfo: '只有團隊所有者和團隊管理員才能訂閱和檢視賬單資訊',
  77. },
  78. plans: {
  79. sandbox: {
  80. name: 'Sandbox',
  81. description: '200次 GPT 免費試用',
  82. includesTitle: '包括:',
  83. },
  84. professional: {
  85. name: 'Professional',
  86. description: '讓個人和小團隊能夠以經濟實惠的方式釋放更多能力。',
  87. includesTitle: 'Sandbox 計劃中的一切,加上:',
  88. },
  89. team: {
  90. name: 'Team',
  91. description: '協作無限制並享受頂級效能。',
  92. includesTitle: 'Professional 計劃中的一切,加上:',
  93. },
  94. enterprise: {
  95. name: 'Enterprise',
  96. description: '獲得大規模關鍵任務系統的完整功能和支援。',
  97. includesTitle: 'Team 計劃中的一切,加上:',
  98. },
  99. },
  100. vectorSpace: {
  101. fullTip: '向量空間已滿。',
  102. fullSolution: '升級您的套餐以獲得更多空間。',
  103. },
  104. apps: {
  105. fullTipLine1: '升級您的套餐以',
  106. fullTipLine2: '構建更多的程式。',
  107. },
  108. annotatedResponse: {
  109. fullTipLine1: '升級您的套餐以',
  110. fullTipLine2: '標註更多對話。',
  111. quotaTitle: '標註的配額',
  112. },
  113. }
  114. export default translation