UI Language

The Driverless AI UI is available in English (default), Japanese, Chinese (Simplified), and Korean. This section describes how you can use the app_language config setting/environment variable to change the language of the UI before starting Driverless AI.

When using app_language, the following options can be specified:

  • en: English (default)

  • ja: Japanese

  • cn: Chinese (Simplified)

  • ko: Korean

Examples

The following examples show how to change the app language from English to Japanese.

To change the application language in Docker images, specify the APP_LANGUAGE environment variable. Note that this variable must be prepended with DRIVERLESS_AI_. Replace nvidia-docker with docker in the example below if necessary.

     nvidia-docker run \
       --pid=host \
       --init \
       --rm \
       --shm-size=2g --cap-add=SYS_NICE --ulimit nofile=131071:131071 --ulimit nproc=16384:16384 \
       -p 12345:12345 \
       -u `id -u`:`id -g` \
       -e DRIVERLESS_AI_ENABLED_FILE_SYSTEMS="file,s3,hdfs" \
       -e DRIVERLESS_AI_APP_LANGUAGE="ja" \
       -v `pwd`/data:/data \
       -v `pwd`/log:/log \
       -v `pwd`/license:/license \
       -v `pwd`/tmp:/tmp \
       h2oai/dai-ubi8-x86_64:1.10.7-cuda11.2.2.xx
Localized UI