billing.ts 4.0 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. contractOwner: 'Contact team manager',
  24. startForFree: 'Start for free',
  25. getStartedWith: 'Get started with ',
  26. contactSales: 'Contact Sales',
  27. talkToSales: 'Talk to Sales',
  28. modelProviders: 'Model Providers',
  29. teamMembers: 'Team Members',
  30. buildApps: 'Build Apps',
  31. vectorSpace: 'Vector Space',
  32. vectorSpaceBillingTooltip: 'Each 1MB can store about 1.2million characters of vectorized data(estimated using OpenAI Embeddings, varies across models).',
  33. vectorSpaceTooltip: 'Vector Space is the long-term memory system required for LLMs to comprehend your data.',
  34. documentProcessingPriority: 'Document Processing Priority',
  35. documentProcessingPriorityTip: 'For higher document processing priority, please upgrade your plan.',
  36. documentProcessingPriorityUpgrade: 'Process more data with higher accuracy at faster speeds.',
  37. priority: {
  38. 'standard': 'Standard',
  39. 'priority': 'Priority',
  40. 'top-priority': 'Top Priority',
  41. },
  42. logsHistory: 'Logs history',
  43. days: 'days',
  44. unlimited: 'Unlimited',
  45. support: 'Support',
  46. supportItems: {
  47. communityForums: 'Community forums',
  48. emailSupport: 'Email support',
  49. priorityEmail: 'Priority email & chat support',
  50. logoChange: 'Logo change',
  51. SSOAuthentication: 'SSO authentication',
  52. personalizedSupport: 'Personalized support',
  53. dedicatedAPISupport: 'Dedicated API support',
  54. customIntegration: 'Custom integration and support',
  55. ragAPIRequest: 'RAG API Requests',
  56. agentModel: 'Agent Model',
  57. },
  58. comingSoon: 'Coming soon',
  59. member: 'Member',
  60. memberAfter: 'Member',
  61. messageRequest: {
  62. title: 'Message Credits',
  63. tooltip: 'Message invocation quotas for various plans using OpenAI models (except gpt4).Messages over the limit will use your OpenAI API Key.',
  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. receiptInfo: 'Somente proprietários e administradores de equipe podem se inscrever e visualizar informações de cobrança',
  71. },
  72. plans: {
  73. sandbox: {
  74. name: 'Sandbox',
  75. description: '200 times GPT free trial',
  76. includesTitle: 'Includes:',
  77. },
  78. professional: {
  79. name: 'Professional',
  80. description: 'For individuals and small teams to unlock more power affordably.',
  81. includesTitle: 'Everything in free plan, plus:',
  82. },
  83. team: {
  84. name: 'Team',
  85. description: 'Collaborate without limits and enjoy top-tier performance.',
  86. includesTitle: 'Everything in Professional plan, plus:',
  87. },
  88. enterprise: {
  89. name: 'Enterprise',
  90. description: 'Get full capabilities and support for large-scale mission-critical systems.',
  91. includesTitle: 'Everything in Team plan, plus:',
  92. },
  93. },
  94. vectorSpace: {
  95. fullTip: 'Vector Space is full.',
  96. fullSolution: 'Upgrade your plan to get more space.',
  97. },
  98. apps: {
  99. fullTipLine1: 'Upgrade your plan to',
  100. fullTipLine2: 'build more apps.',
  101. },
  102. annotatedResponse: {
  103. fullTipLine1: 'Upgrade your plan to',
  104. fullTipLine2: 'annotate more conversations.',
  105. quotaTitle: 'Annotation Reply Quota',
  106. },
  107. }
  108. export default translation