Skip to main content

Overview

Yuno SDKs support multiple locale codes for display language configuration. Pass the appropriate locale code during SDK initialization to set the checkout language.
If the language parameter is omitted, the SDK defaults to the browser’s language when available.

Supported Locales

Americas

LanguageLocale Code
English (United States)en-US
English (Canada)en-CA
Spanish (Latin America)es-CO
Portuguese (Brazil)pt-BR

Europe

LanguageLocale Code
German (Germany)de-DE
English (United Kingdom)en-GB
French (France)fr-FR
Italian (Italy)it-IT
Dutch (Netherlands)nl-NL
Polish (Poland)pl-PL
Russian (Russia)ru-RU
Swedish (Sweden)sv-SE
Turkish (Turkey)tr-TR

Asia

LanguageLocale Code
Japanese (Japan)ja-JP
Korean (South Korea)ko-KR
Chinese Simplified (China)zh-CN
Chinese Traditional (Taiwan)zh-TW
Thai (Thailand)th-TH
Vietnamese (Vietnam)vi-VN
Indonesian (Indonesia)id-ID
Malay (Malaysia)ms-MY
Filipino (Philippines)fil-PH

Usage Example

const yuno = await Yuno.initialize({
  publicApiKey: "your-public-api-key",
  language: "pt-BR"
});