Skip to content

Localization

Language

The SmartWall user interface handles multiple languages. It will detect the user's browser language and show it in that language if available. However, you may want to always show the same language. To do that add the language code to the SDK instantiation.

Currently available languages are:

  • English en
  • French fr
  • German de
  • Italian it
  • Spanish es
  • Portuguese pt
  • Japanese ja

If you want to use a language not yet implemented, please contact us and we will add it for you.

Example:

  var smartWallSDK = new SmartWallSDK({
    ...
    language: "fr";
  });