Skip to content

0.20.0

Compare
Choose a tag to compare
@b4rtaz b4rtaz released this 03 May 21:37
· 38 commits to main since this release
0298467

This version introduces the localization feature. Now you can localize the designer to any language you want.

const configuration = {
  i18n: (key, defaultValue) => {
    if (currentLang === 'pl') {
      if (key === 'controlBar.undo') {
        return 'Cofnij';
      }
    }
    return defaultValue;
  }
  // ...
};