billing.ts 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. const translation = {
  2. currentPlan: 'Current Plan',
  3. upgradeBtn: {
  4. plain: 'Upgrade Plan',
  5. encourage: 'Upgrade Now',
  6. encourageShort: 'Upgrade',
  7. },
  8. viewBilling: 'Manage billing and subscriptions',
  9. buyPermissionDeniedTip: 'Please contact your enterprise administrator to subscribe',
  10. plansCommon: {
  11. title: 'Choose a plan that’s right for you',
  12. yearlyTip: 'Get 2 months for free by subscribing yearly!',
  13. mostPopular: 'Most Popular',
  14. planRange: {
  15. monthly: 'Monthly',
  16. yearly: 'Yearly',
  17. },
  18. month: 'month',
  19. year: 'year',
  20. save: 'Save ',
  21. free: 'Free',
  22. currentPlan: 'Current Plan',
  23. contractSales: 'Contact sales',
  24. contractOwner: 'Contact team manager',
  25. startForFree: 'Start for free',
  26. getStartedWith: 'Get started with ',
  27. contactSales: 'Contact Sales',
  28. talkToSales: 'Talk to Sales',
  29. modelProviders: 'Model Providers',
  30. teamMembers: 'Team Members',
  31. buildApps: 'Build Apps',
  32. vectorSpace: 'Vector Space',
  33. vectorSpaceBillingTooltip: 'Each 1MB can store about 1.2million characters of vectorized data(estimated using OpenAI Embeddings, varies across models).',
  34. vectorSpaceTooltip: 'Vector Space is the long-term memory system required for LLMs to comprehend your data.',
  35. documentsUploadQuota: 'Documents Upload Quota',
  36. documentProcessingPriority: 'Document Processing Priority',
  37. documentProcessingPriorityTip: 'For higher document processing priority, please upgrade your plan.',
  38. documentProcessingPriorityUpgrade: 'Process more data with higher accuracy at faster speeds.',
  39. priority: {
  40. 'standard': 'Standard',
  41. 'priority': 'Priority',
  42. 'top-priority': 'Top Priority',
  43. },
  44. logsHistory: 'Logs history',
  45. customTools: 'Custom Tools',
  46. unavailable: 'Unavailable',
  47. days: 'days',
  48. unlimited: 'Unlimited',
  49. support: 'Support',
  50. supportItems: {
  51. communityForums: 'Community forums',
  52. emailSupport: 'Email support',
  53. priorityEmail: 'Priority email & chat support',
  54. logoChange: 'Logo change',
  55. SSOAuthentication: 'SSO authentication',
  56. personalizedSupport: 'Personalized support',
  57. dedicatedAPISupport: 'Dedicated API support',
  58. customIntegration: 'Custom integration and support',
  59. ragAPIRequest: 'RAG API Requests',
  60. bulkUpload: 'Bulk upload documents',
  61. agentMode: 'Agent Mode',
  62. workflow: 'Workflow',
  63. },
  64. comingSoon: 'Coming soon',
  65. member: 'Member',
  66. memberAfter: 'Member',
  67. messageRequest: {
  68. title: 'Message Credits',
  69. tooltip: 'Message invocation quotas for various plans using OpenAI models (except gpt4).Messages over the limit will use your OpenAI API Key.',
  70. },
  71. annotatedResponse: {
  72. title: 'Annotation Quota Limits',
  73. tooltip: 'Manual editing and annotation of responses provides customizable high-quality question-answering abilities for apps. (Applicable only in chat apps)',
  74. },
  75. ragAPIRequestTooltip: 'Refers to the number of API calls invoking only the knowledge base processing capabilities of Dify.',
  76. receiptInfo: 'Only team owner and team admin can subscribe and view billing information',
  77. },
  78. plans: {
  79. sandbox: {
  80. name: 'Sandbox',
  81. description: '200 times GPT free trial',
  82. includesTitle: 'Includes:',
  83. },
  84. professional: {
  85. name: 'Professional',
  86. description: 'For individuals and small teams to unlock more power affordably.',
  87. includesTitle: 'Everything in free plan, plus:',
  88. },
  89. team: {
  90. name: 'Team',
  91. description: 'Collaborate without limits and enjoy top-tier performance.',
  92. includesTitle: 'Everything in Professional plan, plus:',
  93. },
  94. enterprise: {
  95. name: 'Enterprise',
  96. description: 'Get full capabilities and support for large-scale mission-critical systems.',
  97. includesTitle: 'Everything in Team plan, plus:',
  98. },
  99. },
  100. vectorSpace: {
  101. fullTip: 'Vector Space is full.',
  102. fullSolution: 'Upgrade your plan to get more space.',
  103. },
  104. apps: {
  105. fullTipLine1: 'Upgrade your plan to',
  106. fullTipLine2: 'build more apps.',
  107. },
  108. annotatedResponse: {
  109. fullTipLine1: 'Upgrade your plan to',
  110. fullTipLine2: 'annotate more conversations.',
  111. quotaTitle: 'Annotation Reply Quota',
  112. },
  113. }
  114. export default translation