billing.ts 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. llmLoadingBalancing: 'LLM Load Balancing',
  65. llmLoadingBalancingTooltip: 'Add multiple API keys to models, effectively bypassing the API rate limits. ',
  66. },
  67. comingSoon: 'Coming soon',
  68. member: 'Member',
  69. memberAfter: 'Member',
  70. messageRequest: {
  71. title: 'Message Credits',
  72. tooltip: 'Message invocation quotas for various plans using OpenAI models (except gpt4).Messages over the limit will use your OpenAI API Key.',
  73. },
  74. annotatedResponse: {
  75. title: 'Annotation Quota Limits',
  76. tooltip: 'Manual editing and annotation of responses provides customizable high-quality question-answering abilities for apps. (Applicable only in chat apps)',
  77. },
  78. ragAPIRequestTooltip: 'Refers to the number of API calls invoking only the knowledge base processing capabilities of Dify.',
  79. receiptInfo: 'Only team owner and team admin can subscribe and view billing information',
  80. },
  81. plans: {
  82. sandbox: {
  83. name: 'Sandbox',
  84. description: '200 times GPT free trial',
  85. includesTitle: 'Includes:',
  86. },
  87. professional: {
  88. name: 'Professional',
  89. description: 'For individuals and small teams to unlock more power affordably.',
  90. includesTitle: 'Everything in free plan, plus:',
  91. },
  92. team: {
  93. name: 'Team',
  94. description: 'Collaborate without limits and enjoy top-tier performance.',
  95. includesTitle: 'Everything in Professional plan, plus:',
  96. },
  97. enterprise: {
  98. name: 'Enterprise',
  99. description: 'Get full capabilities and support for large-scale mission-critical systems.',
  100. includesTitle: 'Everything in Team plan, plus:',
  101. },
  102. },
  103. vectorSpace: {
  104. fullTip: 'Vector Space is full.',
  105. fullSolution: 'Upgrade your plan to get more space.',
  106. },
  107. apps: {
  108. fullTipLine1: 'Upgrade your plan to',
  109. fullTipLine2: 'build more apps.',
  110. },
  111. annotatedResponse: {
  112. fullTipLine1: 'Upgrade your plan to',
  113. fullTipLine2: 'annotate more conversations.',
  114. quotaTitle: 'Annotation Reply Quota',
  115. },
  116. }
  117. export default translation