Skip to content

Commit 980f280

Browse files
fix: align in-app pricing copy with comfy.org/cloud/pricing (#8725)
## Summary Align stale in-app pricing strings and links with the current comfy.org/cloud/pricing page. ## Changes - **What**: Update video estimate numbers (standard 120→380, creator 211→670, pro 600→1915), fix template URL (`video_wan2_2_14B_fun_camera` → `video_wan2_2_14B_i2v`), fix `templateNote` to reference Wan 2.2 Image-to-Video, align `videoEstimateExplanation` wording order with website, remove stale "$10" from `benefit1` string. ## Review Focus Copy-only changes across 4 files — no logic or UI changes. Source of truth: https://www.comfy.org/cloud/pricing ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8725-fix-align-in-app-pricing-copy-with-comfy-org-cloud-pricing-3006d73d3650811faf11c248e6bf27c3) by [Unito](https://www.unito.io)
1 parent 4856fb0 commit 980f280

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/locales/en/main.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2047,7 +2047,7 @@
20472047
"howManyCredits": "How many credits would you like to add?",
20482048
"usdAmount": "${amount}",
20492049
"videosEstimate": "~{count} videos*",
2050-
"templateNote": "*Generated with Wan Fun Control template",
2050+
"templateNote": "*Generated with Wan 2.2 Image-to-Video template",
20512051
"buy": "Buy",
20522052
"purchaseSuccess": "Credits added successfully!",
20532053
"purchaseError": "Purchase Failed",
@@ -2152,7 +2152,7 @@
21522152
"messageSupport": "Message support",
21532153
"invoiceHistory": "Invoice history",
21542154
"benefits": {
2155-
"benefit1": "$10 in monthly credits for Partner Nodes — top up when needed",
2155+
"benefit1": "Monthly credits for Partner Nodes — top up when needed",
21562156
"benefit2": "Up to 30 min runtime per job"
21572157
},
21582158
"yearlyDiscount": "20% DISCOUNT",
@@ -2210,7 +2210,7 @@
22102210
"customLoRAsLabel": "Import your own LoRAs",
22112211
"videoEstimateLabel": "Approx. amount of 5s videos generated with Wan 2.2 Image-to-Video template",
22122212
"videoEstimateHelp": "More details on this template",
2213-
"videoEstimateExplanation": "These estimates are based on the Wan 2.2 Image-to-Video template using default settings (5 seconds, 640x640, 16fps, 4-step sampling).",
2213+
"videoEstimateExplanation": "These estimates are based on the Wan 2.2 Image-to-Video template using default settings (5 sec, 16fps, 640x640, 4-step sampling).",
22142214
"videoEstimateTryTemplate": "Try this template",
22152215
"videoTemplateBasedCredits": "Videos generated with Wan 2.2 Image to Video",
22162216
"upgradePlan": "Upgrade Plan",

src/platform/cloud/subscription/components/PricingTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@
226226
{{ t('subscription.videoEstimateExplanation') }}
227227
</p>
228228
<a
229-
href="https://cloud.comfy.org/?template=video_wan2_2_14B_fun_camera"
229+
href="https://cloud.comfy.org/?template=video_wan2_2_14B_i2v"
230230
target="_blank"
231231
rel="noopener noreferrer"
232232
class="text-sm text-azure-600 hover:text-azure-400 no-underline flex gap-1"

src/platform/cloud/subscription/components/PricingTableWorkspace.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
{{ t('subscription.videoEstimateExplanation') }}
236236
</p>
237237
<a
238-
href="https://cloud.comfy.org/?template=video_wan2_2_14B_fun_camera"
238+
href="https://cloud.comfy.org/?template=video_wan2_2_14B_i2v"
239239
target="_blank"
240240
rel="noopener noreferrer"
241241
class="text-sm text-azure-600 hover:text-azure-400 no-underline flex gap-1"

src/platform/cloud/subscription/constants/tierPricing.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ export interface TierPricing {
2626
}
2727

2828
export const TIER_PRICING: Record<Exclude<TierKey, 'founder'>, TierPricing> = {
29-
standard: { monthly: 20, yearly: 16, credits: 4200, videoEstimate: 120 },
30-
creator: { monthly: 35, yearly: 28, credits: 7400, videoEstimate: 211 },
31-
pro: { monthly: 100, yearly: 80, credits: 21100, videoEstimate: 600 }
29+
standard: { monthly: 20, yearly: 16, credits: 4200, videoEstimate: 380 },
30+
creator: { monthly: 35, yearly: 28, credits: 7400, videoEstimate: 670 },
31+
pro: { monthly: 100, yearly: 80, credits: 21100, videoEstimate: 1915 }
3232
}
3333

3434
interface TierFeatures {

0 commit comments

Comments
 (0)