Ju99ernaut / grapesjs-template-manager

Template and page manager for grapesjs
MIT License
79 stars 35 forks source link

GrapesJS Project Manager Text Fields #15

Closed donbwhite closed 2 years ago

donbwhite commented 2 years ago

Ability to edit text in the Project Manager. Such as change Site Info to something else. *

*Issue created from conversation with Ju99ernaut in the GrapesJS discord.

Ju99ernaut commented 2 years ago

I think I've added all text to i18n were possible so it's now possible to change text using something like

editor.I18n.addMessages({
    en: { // indicate the locale to update
        'grapesjs-project-manager': {
            info: 'Site Information',
        }
    }
});

You can check en.js for the messages structure

I18n docs: https://grapesjs.com/docs/modules/I18n.html