Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions public/locales/en/signup.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
"many_months_payment": "{{qty}} months payment",
"our_plans": "Our plans",
"discount": "{{discount}} OFF",
"try-again": "Try again",
"join-cohort": {
"cta": {
"lesson": "Join cohort to get access to this lesson",
Expand Down
1 change: 1 addition & 0 deletions public/locales/es/signup.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
"many_months_payment": "{{qty}} pagos mensuales",
"our_plans": "Nuestros planes",
"discount": "{{discount}} DE DESCUENTO",
"try-again": "Intenta de nuevo",
"join-cohort": {
"cta": {
"lesson": "Únete a la cohorte para poder acceder a esta lección",
Expand Down
2 changes: 1 addition & 1 deletion src/js_modules/checkout/Summary.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ function Summary() {
}
}}
>
{isPaymentSuccess ? 'Start learning' : 'Try again'}
{isPaymentSuccess ? t('start-free-course') : t('try-again')}
</Button>
) : (
<>
Expand Down