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=256m \
  -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-centos7-x86_64:1.9.1-cuda10.0.23
Localized UI