Skip to content

Commit fc796ed

Browse files
author
tianzx
committed
chore: unify currency symbols across pricing UI and localization files
1 parent b76670a commit fc796ed

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/web/components/marketing/price/components/pricing-column.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ export function PricingColumn({
186186
<p className='text-muted-foreground min-h-[40px] max-w-[220px] text-sm'>
187187
{monthlyPrice === 0
188188
? m['pricing.forever_free']()
189-
: `${isYearly ? m['pricing.yearly']() : m['pricing.monthly']()} (${isYearly ? `$${yearlyPrice}/year` : `¥${monthlyPrice}/month`})`}
189+
: `${isYearly ? m['pricing.yearly']() : m['pricing.monthly']()} (${isYearly ? `$${yearlyPrice}/year` : `$${monthlyPrice}/month`})`}
190190
</p>
191191
<hr className='border-input' />
192192
</div>

apps/web/messages/zh.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@
9696
"title_default": "价格方案",
9797
"description_default": "选择适合您需求的方案,提供量身定制的功能和支持。",
9898
"free_plan": "免费版",
99-
"free_price": "¥0",
99+
"free_price": "$0",
100100
"free_period": "永久免费",
101101
"free_description": "适合入门使用",
102102
"pro_plan": "专业版",
103-
"pro_price": "¥199",
103+
"pro_price": "$199",
104104
"pro_period": "每月",
105105
"pro_description": "适合成长中的企业",
106106
"enterprise_plan": "企业版",

0 commit comments

Comments
 (0)