Internationalization (i18n) allows your application to support multiple languages, making it accessible to users worldwide. Neon Auth provides built-in internationalization support for its components, enabling you to offer a localized authentication experience with minimal effort.
- Setup- Internationalization with Neon Auth is very straightforward. Simply pass the - langprop to the- StackProvidercomponent, and all the pages will be translated to the specified language.- ... <StackProvider ... lang={'de-DE'}> ... </StackProvider> ...- By default, if no language is provided, it will be set to - en-US.- You can choose which languages to use by employing your own methods, such as storing the language in - localStorageor using the user's browser language.
- Supported languages- en-US: English (United States)
- de-DE: German (Germany)
- es-419: Spanish (Latin America)
- es-ES: Spanish (Spain)
- fr-CA: French (Canada)
- fr-FR: French (France)
- it-IT: Italian (Italy)
- pt-BR: Portuguese (Brazil)
- pt-PT: Portuguese (Portugal)
- zh-CN: Chinese (China)
- zh-TW: Chinese (Taiwan)
- ja-JP: Japanese (Japan)
- ko-KR: Korean (South Korea)