billing.en.ts 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. const translation = {
  2. currentPlan: 'Current Plan',
  3. upgradeBtn: {
  4. plain: 'Upgrade Plan',
  5. encourage: 'Upgrade Now',
  6. encourageShort: 'Upgrade',
  7. },
  8. viewBilling: 'View billing information',
  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. startForFree: 'Start for free',
  24. getStartedWith: 'Get started with ',
  25. contactSales: 'Contact Sales',
  26. talkToSales: 'Talk to Sales',
  27. modelProviders: 'Model Providers',
  28. teamMembers: 'Team Members',
  29. buildApps: 'Build Apps',
  30. vectorSpace: 'Vector Space',
  31. vectorSpaceBillingTooltip: 'Each 1MB can store about 1.2million characters of vectorized data(estimated using OpenAI Embeddings, varies across models).',
  32. vectorSpaceTooltip: 'Vector Space is the long-term memory system required for LLMs to comprehend your data.',
  33. documentProcessingPriority: 'Document Processing Priority',
  34. documentProcessingPriorityTip: 'For higher document processing priority, please upgrade your plan.',
  35. documentProcessingPriorityUpgrade: 'Process more data with higher accuracy at faster speeds.',
  36. priority: {
  37. 'standard': 'Standard',
  38. 'priority': 'Priority',
  39. 'top-priority': 'Top Priority',
  40. },
  41. logsHistory: 'Logs history',
  42. days: 'days',
  43. unlimited: 'Unlimited',
  44. support: 'Support',
  45. supportItems: {
  46. communityForums: 'Community forums',
  47. emailSupport: 'Email support',
  48. priorityEmail: 'Priority email & chat support',
  49. logoChange: 'Logo change',
  50. SSOAuthentication: 'SSO authentication',
  51. personalizedSupport: 'Personalized support',
  52. dedicatedAPISupport: 'Dedicated API support',
  53. customIntegration: 'Custom integration and support',
  54. ragAPIRequest: 'RAG API Requests',
  55. agentModel: 'Agent Model',
  56. },
  57. comingSoon: 'Coming soon',
  58. member: 'Member',
  59. memberAfter: 'Member',
  60. messageRequest: {
  61. title: 'Message Requests',
  62. unit: 'per day',
  63. tooltip: 'Includes all messages from your apps, whether via APIs or web sessions. (Not LLM resource usage)',
  64. },
  65. annotatedResponse: {
  66. title: 'Annotation Quota Limits',
  67. tooltip: 'Manual editing and annotation of responses provides customizable high-quality question-answering abilities for apps. (Applicable only in chat apps)',
  68. },
  69. ragAPIRequestTooltip: 'Refers to the number of API calls invoking only the knowledge base processing capabilities of Dify.',
  70. },
  71. plans: {
  72. sandbox: {
  73. name: 'Sandbox',
  74. description: '200 times GPT free trial',
  75. includesTitle: 'Includes:',
  76. },
  77. professional: {
  78. name: 'Professional',
  79. description: 'For individuals and small teams to unlock more power affordably.',
  80. includesTitle: 'Everything in free plan, plus:',
  81. },
  82. team: {
  83. name: 'Team',
  84. description: 'Collaborate without limits and enjoy top-tier performance.',
  85. includesTitle: 'Everything in Professional plan, plus:',
  86. },
  87. enterprise: {
  88. name: 'Enterprise',
  89. description: 'Get full capabilities and support for large-scale mission-critical systems.',
  90. includesTitle: 'Everything in Team plan, plus:',
  91. },
  92. },
  93. vectorSpace: {
  94. fullTip: 'Vector Space is full.',
  95. fullSolution: 'Upgrade your plan to get more space.',
  96. },
  97. apps: {
  98. fullTipLine1: 'Upgrade your plan to',
  99. fullTipLine2: 'build more apps.',
  100. },
  101. annotatedResponse: {
  102. fullTipLine1: 'Upgrade your plan to',
  103. fullTipLine2: 'annotate more conversations.',
  104. quotaTitle: 'Annotated Response Quota',
  105. },
  106. }
  107. export default translation