How to use the alloyeditor.Strings function in alloyeditor

To help you get started, we’ve selected a few alloyeditor 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 ezsystems / ezplatform-admin-ui / src / bundle / Resources / public / js / alloyeditor / src / buttons / ez-btn-tablecolumn.js View on Github external
onDismiss={this.props.toggleDropdown}
                />
            );
        }

        return (
            <div>
                <button title="{AlloyEditor.Strings.column}" tabindex="{this.props.tabIndex}" role="listbox" aria-owns="{buttonCommandsListId}" aria-label="{AlloyEditor.Strings.column}" aria-expanded="{this.props.expanded}">
                    <svg>
                        
                    </svg>
                </button>
                {buttonCommandsList}
            </div>
        );
    }
}
github ezsystems / ezplatform-admin-ui / src / bundle / Resources / public / js / alloyeditor / src / buttons / ez-btn-link.js View on Github external
render() {
        const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();

        if (this.props.renderExclusive) {
            const props = this.mergeButtonCfgProps();

            return ;
        }

        return (
            <button title="{AlloyEditor.Strings.link}" tabindex="{this.props.tabIndex}" data-type="button-link" aria-label="{AlloyEditor.Strings.link}">
                <svg>
                    
                </svg>
            </button>
        );
    }
}
github ezsystems / ezplatform-admin-ui / src / bundle / Resources / public / js / alloyeditor / src / buttons / ez-btn-linkedit.js View on Github external
<div>
                    <span>{separatorLabel}</span>
                </div>
                <div>
                    <label>{linkToLabel}</label>
                    <input value="{this.state.linkHref}" type="text" placeholder="{blockPlaceholderText}">
                    <button title="{AlloyEditor.Strings.clear}" aria-label="{AlloyEditor.Strings.clearInput}">
                </button></div>
            
        );
    }
github ezsystems / ezplatform-admin-ui / src / bundle / Resources / public / js / alloyeditor / src / buttons / ez-btn-strike.js View on Github external
render() {
        const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();

        return (
            <button title="{AlloyEditor.Strings.strike}" tabindex="{this.props.tabIndex}" data-type="button-strike" aria-pressed="{cssClass.indexOf('pressed')" aria-label="{AlloyEditor.Strings.strike}">
                <svg>
                    
                </svg>
            </button>
        );
    }
}
github ezsystems / ezplatform-admin-ui / src / bundle / Resources / public / js / alloyeditor / src / buttons / ez-btn-bold.js View on Github external
render() {
        const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();

        return (
            <button title="{AlloyEditor.Strings.bold}" tabindex="{this.props.tabIndex}" data-type="button-bold" aria-pressed="{cssClass.indexOf('pressed')" aria-label="{AlloyEditor.Strings.bold}">
                <svg>
                    
                </svg>
            </button>
        );
    }
}
github ezsystems / ezplatform-admin-ui / src / bundle / Resources / public / js / alloyeditor / src / buttons / ez-btn-strike.js View on Github external
render() {
        const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();

        return (
            <button title="{AlloyEditor.Strings.strike}" tabindex="{this.props.tabIndex}" data-type="button-strike" aria-pressed="{cssClass.indexOf('pressed')" aria-label="{AlloyEditor.Strings.strike}">
                <svg>
                    
                </svg>
            </button>
        );
    }
}
github ezsystems / ezplatform-admin-ui / src / bundle / Resources / public / js / alloyeditor / src / buttons / ez-btn-underline.js View on Github external
render() {
        const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();

        return (
            <button title="{AlloyEditor.Strings.underline}" tabindex="{this.props.tabIndex}" data-type="button-underline" aria-pressed="{cssClass.indexOf('pressed')" aria-label="{AlloyEditor.Strings.underline}">
                <svg>
                    
                </svg>
            </button>
        );
    }
}
github ezsystems / ezplatform-admin-ui / src / bundle / Resources / public / js / alloyeditor / src / buttons / ez-btn-underline.js View on Github external
render() {
        const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();

        return (
            <button title="{AlloyEditor.Strings.underline}" tabindex="{this.props.tabIndex}" data-type="button-underline" aria-pressed="{cssClass.indexOf('pressed')" aria-label="{AlloyEditor.Strings.underline}">
                <svg>
                    
                </svg>
            </button>
        );
    }
}
github ezsystems / ezplatform-richtext / src / bundle / Resources / public / js / OnlineEditor / buttons / ez-btn-tableremove.js View on Github external
render() {
        return (
            <button data-type="button-table-remove" aria-label="{AlloyEditor.Strings.deleteTable}"> {
                    this._removeTable();
                    this.fireCustomUpdateEvent();
                }}
                tabIndex={this.props.tabIndex}
                title={AlloyEditor.Strings.deleteTable}&gt;
                <svg>
                    
                </svg>
            </button>
        );
    }
github ezsystems / ezplatform-admin-ui / src / bundle / Resources / public / js / alloyeditor / src / buttons / ez-btn-italic.js View on Github external
render() {
        const cssClass = 'ae-button ez-btn-ae ' + this.getStateClasses();

        return (
            <button title="{AlloyEditor.Strings.italic}" tabindex="{this.props.tabIndex}" data-type="button-italic" aria-pressed="{cssClass.indexOf('pressed')" aria-label="{AlloyEditor.Strings.italic}">
                <svg>
                    
                </svg>
            </button>
        );
    }
}