Some locals
This commit is contained in:
parent
6c67927e5c
commit
e4981ff5ef
3 changed files with 16 additions and 4 deletions
|
@ -67,6 +67,12 @@
|
|||
"firstDate": "First date",
|
||||
"lastDate": "Last date"
|
||||
},
|
||||
"payment": {
|
||||
"successful": "Payment successful !",
|
||||
"canceled": "Payment canceled",
|
||||
"error": "An error occurred with the payment",
|
||||
"retry": "Retry"
|
||||
},
|
||||
"firstName": "First name",
|
||||
"lastName": "Last name",
|
||||
"username": "Username",
|
||||
|
|
|
@ -67,6 +67,12 @@
|
|||
"firstDate": "Première date",
|
||||
"lastDate": "Dernière date"
|
||||
},
|
||||
"payment": {
|
||||
"successful": "Paiement réussi !",
|
||||
"canceled": "Paiement annulé",
|
||||
"error": "Une erreur est survenue lors du paiement",
|
||||
"retry": "Recommencez"
|
||||
},
|
||||
"firstName": "Prénom",
|
||||
"lastName": "Nom de famille",
|
||||
"username": "Nom d'utilisateur",
|
||||
|
|
|
@ -4,11 +4,11 @@ block content
|
|||
div.card
|
||||
h1 Payment
|
||||
if (state === "success")
|
||||
h2 Payment successful !
|
||||
h2=__("payment.successful")
|
||||
else if (state === "cancel")
|
||||
h2 Payment canceled
|
||||
h2=__("payment.canceled")
|
||||
else if (state === "error")
|
||||
h2 An error occurred with the payment
|
||||
h2=__("payment.error")
|
||||
if (state !== "success")
|
||||
a(href="/order/retry")
|
||||
button Retry
|
||||
button=__("payment.retry")
|
||||
|
|
Reference in a new issue