billing.ts 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. documentProcessingPriority: 'Document Processing Priority',
  36. documentProcessingPriorityTip: 'For higher document processing priority, please upgrade your plan.',
  37. documentProcessingPriorityUpgrade: 'Process more data with higher accuracy at faster speeds.',
  38. priority: {
  39. 'standard': 'Standard',
  40. 'priority': 'Priority',
  41. 'top-priority': 'Top Priority',
  42. },
  43. logsHistory: 'Logs history',
  44. customTools: 'Custom Tools',
  45. unavailable: 'Unavailable',
  46. days: 'days',
  47. unlimited: 'Unlimited',
  48. support: 'Support',
  49. supportItems: {
  50. communityForums: 'Community forums',
  51. emailSupport: 'Email support',
  52. priorityEmail: 'Priority email & chat support',
  53. logoChange: 'Logo change',
  54. SSOAuthentication: 'SSO authentication',
  55. personalizedSupport: 'Personalized support',
  56. dedicatedAPISupport: 'Dedicated API support',
  57. customIntegration: 'Custom integration and support',
  58. ragAPIRequest: 'RAG API Requests',
  59. agentMode: 'Agent Mode',
  60. workflow: 'Workflow',
  61. },
  62. comingSoon: 'Coming soon',
  63. member: 'Member',
  64. memberAfter: 'Member',
  65. messageRequest: {
  66. title: 'Message Credits',
  67. tooltip: 'Message invocation quotas for various plans using OpenAI models (except gpt4).Messages over the limit will use your OpenAI API Key.',
  68. },
  69. annotatedResponse: {
  70. title: 'Annotation Quota Limits',
  71. tooltip: 'Manual editing and annotation of responses provides customizable high-quality question-answering abilities for apps. (Applicable only in chat apps)',
  72. },
  73. ragAPIRequestTooltip: 'Refers to the number of API calls invoking only the knowledge base processing capabilities of Dify.',
  74. receiptInfo: 'Only team owner and team admin can subscribe and view billing information',
  75. },
  76. plans: {
  77. sandbox: {
  78. name: 'Sandbox',
  79. description: '200 times GPT free trial',
  80. includesTitle: 'Includes:',
  81. },
  82. professional: {
  83. name: 'Professional',
  84. description: 'For individuals and small teams to unlock more power affordably.',
  85. includesTitle: 'Everything in free plan, plus:',
  86. },
  87. team: {
  88. name: 'Team',
  89. description: 'Collaborate without limits and enjoy top-tier performance.',
  90. includesTitle: 'Everything in Professional plan, plus:',
  91. },
  92. enterprise: {
  93. name: 'Enterprise',
  94. description: 'Get full capabilities and support for large-scale mission-critical systems.',
  95. includesTitle: 'Everything in Team plan, plus:',
  96. },
  97. },
  98. vectorSpace: {
  99. fullTip: 'Vector Space is full.',
  100. fullSolution: 'Upgrade your plan to get more space.',
  101. },
  102. apps: {
  103. fullTipLine1: 'Upgrade your plan to',
  104. fullTipLine2: 'build more apps.',
  105. },
  106. annotatedResponse: {
  107. fullTipLine1: 'Upgrade your plan to',
  108. fullTipLine2: 'annotate more conversations.',
  109. quotaTitle: 'Annotation Reply Quota',
  110. },
  111. }
  112. export default translation