Hi @poornima.bal,
You can include the ui_locales
query parameter in a login request to display the login page in that language.
For example:
https://{yourDomain}/authorize?
response_type=code&
client_id={yourClientId}&
redirect_uri={https://yourApp/callback}&
scope={scope}&
audience={apiAudience}&
state={state}&
ui_locales={languageCode}
You can find the full list of language codes here.
And here are some helpful knowledge articles for your reference:
- How to Collect and Use the User's Local Language to Translate Universal Login
- Passing ui_locales Parameters to the Universal Login Page Using next-js-auth0 SDK
Thanks,
Rueben