USDC (ERC-20) Pricing
Checkouts supports the following languages:
- English
- French
- Italian
- Spanish
- German
- Japanese
- Korean
- Chinese
By default, text is shown in the buyer's preferred browser language and defaults to English. Non-English languages are only supported in the Embedded Elements implementation.
Force a specific language
To always show text in one language, set the locale
property to the two-letter ISO 639-1 code when creating the Checkout Element in your frontend code.
React example
<CheckoutWithCard
// ...
locale="fr"
/>
Javascript SDK example
createCheckoutWithCardElement({
// ...
locale: "fr",
});