How to use the scratch-gui.initLocale function in scratch-gui

To help you get started, we’ve selected a few scratch-gui examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github LLK / scratch-www / src / views / preview / preview.jsx View on Github external
}
    if (parts.indexOf('fullscreen') !== -1) {
        guiInitialState = GUI.initFullScreen(guiInitialState);
    }
    return guiInitialState;
};

render(
    ,
    document.getElementById('app'),
    {
        preview: previewActions.previewReducer,
        ...GUI.guiReducers
    },
    {
        locales: GUI.initLocale(GUI.localesInitialState, window._locale),
        scratchGui: initGuiState(GUI.guiInitialState)
    },
    GUI.guiMiddleware
);