Localizing the Designer
Our sample projects and report templates can help you learn the basics of working with our products.The designer interface can be shown in different languages, with several localization files at once.
Designer setup. Configure the designer, load the dashboard template, process its callbacks, and connect the save action to the application.
Designer setup. Configure the designer, load the dashboard template, process its callbacks, and connect the save action to the application.
$designer = new StiDesigner();
$designer->options->localization = 'de.xml';
$designer->options->addLocalization('fr.xml');
$designer->options->addLocalization('es.xml');
$designer->process();options->localization sets the active language and addLocalization registers additional ones the user can switch to.