-
Notifications
You must be signed in to change notification settings - Fork 439
hotfix: credit pricing page #1722
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
14ff7fd
Merge pull request #1503 from refly-ai/fix/resource-count-issues-stable
mrcfps 9100495
Merge pull request #1542 from refly-ai/fix/staging-app-credit
mrcfps f737f47
Merge pull request #1547 from refly-ai/staging
mrcfps 40a9911
Merge pull request #1669 from refly-ai/main
mrcfps efd9c73
Staging Release 20251129 (#1674)
mrcfps 5212e91
Merge pull request #1691 from refly-ai/main
mrcfps 1da2e0b
Merge pull request #1694 from refly-ai/main
mrcfps c7f2284
Merge pull request #1692 from refly-ai/staging
mrcfps 9688108
Stable Release 20251203 (#1705)
mrcfps 1708ab2
Stable Release (#1717)
mrcfps 71e08fd
feat: enhance EndMessage component for marketplace engagement
Siri-Ray File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -888,7 +888,7 @@ const translations = { | |
| endMessage: { | ||
| title: "Didn't find the workflow automation template you need?", | ||
| subtitle: "Join our Discord and tell us what you're looking for", | ||
| goToMarketplace: 'Go to Marketplace', | ||
| goToMarketplace: 'Explore More Templates', | ||
| }, | ||
| }, | ||
| agentInputPlaceholder: 'Enter task description, Agent will generate reusable workflows', | ||
|
|
@@ -2704,7 +2704,7 @@ const translations = { | |
| getStarted: 'Get Started', | ||
| subscribeNow: 'Subscribe Now', | ||
| manage: 'Manage Subscription', | ||
| currentPlan: 'Current Plan', | ||
| currentPlan: 'Your Current Plan', | ||
| t1Requests: 'T1 Requests', | ||
| t1RequestsDescription: | ||
| 'T1 models include Claude 3.7 Sonnet (Thinking), DeepSeek R1, o3 Mini, GPT-4o and others. Each successful skill call to T1 models counts as one request.', | ||
|
|
@@ -3591,7 +3591,7 @@ const translations = { | |
| }, | ||
| }, | ||
| subscription: { | ||
| modalTitle: 'Upgrade to Get More Credits', | ||
| modalTitle: 'Upgrade Your Plan to Get More Credits', | ||
| cancelAnytime: "Cancel anytime. By subscribing, you agree to Refly's", | ||
| privacy: 'Privacy', | ||
| terms: 'Terms', | ||
|
|
@@ -3621,14 +3621,15 @@ const translations = { | |
| priceMonthly: '{{price}}/month', | ||
| priceYearly: '{{price}}/month', | ||
| priceYearlyTotal: '{{price}}/year Save 20%', | ||
| upgrade: 'Upgrade to {{planType}}', | ||
| upgrade: 'Get {{planType}}', | ||
| cannotChangeTo: 'Cannot change to {{planType}}', | ||
| currentPlan: 'Current Plan', | ||
| currentPlan: 'Your Current Plan', | ||
| cannotSwitchTo: | ||
| "Legacy plans can't be switched to Plus directly.Please contact [email protected]", | ||
| memberBenefits: 'Member Benefits', | ||
| free: { | ||
| title: 'Free Plan', | ||
| description: 'A welcoming gateway to explore the power of AI—completely free', | ||
| title: 'Free', | ||
| description: 'Ideal for beginners exploring workflow automation', | ||
| price: 'Free forever', | ||
| buttonText: 'Continue for free', | ||
| buttonTextDowngrade: 'Downgrade to Free', | ||
|
|
@@ -3644,9 +3645,9 @@ const translations = { | |
| features: [ | ||
| 'Daily new credits\n300 credits', | ||
| 'Monthly credits\n2,000 credits', | ||
| 'New subscribers receive an extra\n2,000 bonus credits', | ||
| //'New subscribers receive an extra\n2,000 bonus credits', | ||
| 'Access to a vast library of tools', | ||
| { | ||
| /*{ | ||
| name: 'Credit-free tools', | ||
| type: 'pointFreeTools', | ||
| items: [ | ||
|
|
@@ -3660,7 +3661,7 @@ const translations = { | |
| 'X', | ||
| ], | ||
| duration: '365 DAYS', | ||
| }, | ||
| },*/ | ||
| 'Service support\nHigh priority support', | ||
| ], | ||
| }, | ||
|
|
@@ -3825,7 +3826,7 @@ const translations = { | |
| storageFullModal: { | ||
| free: { | ||
| title: 'Free Plan', | ||
| titleCn: 'Current Plan', | ||
| titleCn: 'Your Current Plan', | ||
| description: 'A welcoming gateway to explore the power of AI—completely free', | ||
| price: 'Free forever', | ||
| buttonText: 'Continue for free', | ||
|
|
@@ -3880,7 +3881,7 @@ const translations = { | |
| 'More enterprise features coming soon', | ||
| ], | ||
| }, | ||
| currentPlan: 'Current Plan', | ||
| currentPlan: 'Your Current Plan', | ||
| }, | ||
| }, | ||
| onboarding: { | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: refly-ai/refly
Length of output: 2784
Remove dead code for pointFreeTools feature rendering.
The rendering logic for
pointFreeToolstype features (lines 128-156) is dead code. The corresponding feature data is commented out in all translation files (both en-US and zh-Hans), so this branch will never execute. Remove this unused rendering logic to reduce code complexity and maintenance burden.🤖 Prompt for AI Agents