billing.ts 4.3 KB

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