@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
23 lines • 1.05 kB
JavaScript
import { defineMessages } from 'react-intl';
export const highlightMessages = defineMessages({
highlight: {
id: 'fabric.editor.highlight',
defaultMessage: 'Highlight color',
description: 'Label for the highlight color menu option in the primary editor toolbar. Opens up the color palette for the highlight colors.'
},
highlightFloatingToolbar: {
id: 'fabric.editor.highlightFloatingToolbar',
defaultMessage: 'Highlight',
description: 'Button content for the highlight color menu option in the editor floating toolbar. Opens up the color palette for the highlight colors.'
},
removeColor: {
id: 'fabric.editor.highlight.removeColor',
defaultMessage: 'Remove color',
description: 'Button content for the combined text highlight and color menu, removes either the applied text color or highlight color.'
},
removeHighlight: {
id: 'fabric.editor.highlight.removeHighlight',
defaultMessage: 'Remove highlight',
description: 'Button content for removing the applied highlight color.'
}
});