Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
0.20.0 source code.tar.gz | 2024-05-03 | 560.9 kB | |
0.20.0 source code.zip | 2024-05-03 | 720.5 kB | |
README.md | 2024-05-03 | 385 Bytes | |
Totals: 3 Items | 1.3 MB | 0 |
This version introduces the localization feature. Now you can localize the designer to any language you want.
:::js
const configuration = {
i18n: (key, defaultValue) => {
if (currentLang === 'pl') {
if (key === 'controlBar.undo') {
return 'Cofnij';
}
}
return defaultValue;
}
// ...
};