I noticed that with the Stripe layout, the language seems to be fixed in English.
Is there a way to change this language, for example, to Spanish, Japanese or Chinese?
I am currently using the default form code in the Stripe documentation:
<form action="/charge" method="POST">
<script
src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="pk_test_variable_here"
data-image="/img/documentation/checkout/marketplace.png"
data-name="My Company Pty Ltd"
data-description="2 widgets"
data-currency="aud"
data-amount="2000">
</script>
</form>
source
share