I have noticed that with the Stripe checkout form, the language seems to be fixed in English.
Is there a way for me to change this language to, for example, Spanish, Japanese or Chinese?
I'm currently using the default form code on 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>