My requirement is that users can use the language I installed when logging in for the first time, instead of manually switching every time.
1 Like
You will need to add overrides.json
file to predefine settings for you users, see: Advanced Usage — JupyterLab 3.2.4 documentation for information on where to place the file. I guess that something like:
{
"@jupyterlab/translation-extension:plugin": {
"locale": "en"
}
}
where you would replace en
with the locale you your users to have on by default. You can find out the code by switching the language from the interface (Settings
menu → Language
) and then going to Settings
→ Advanced Settings Editor
→ Language
1 Like