Skip to content

Commit

Permalink
Adjust voucher text
Browse files Browse the repository at this point in the history
  • Loading branch information
RubyMineshaft committed Apr 2, 2024
1 parent 3da31fe commit 9378c3d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/views/Prizes/PrizeBatch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,13 @@ export const PrizeBatch: React.FC = () => {
</div>
<p class="redemption-instructions">${interpolate(
_(
"To redeem this voucher, visit {{url}} and enter the code above. This voucher entitles you to a {{supporter_level}} level of VIP service or an equivalent upgrade to your current subscription on Online-Go.com for the duration listed.",
"To redeem this voucher, visit {{url}} and enter the code above. This voucher entitles you to {{supporter_level}} level VIP service or an equivalent upgrade to your current subscription on Online-Go.com for {{duration}} days.",
),
{ url: redemptionLink, supporter_level: code.supporter_level },
{
url: redemptionLink,
supporter_level: code.supporter_level,
duration: code.duration,
},
)}</p>
</div>
</div>
Expand Down

0 comments on commit 9378c3d

Please sign in to comment.