@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
13 lines • 659 B
JavaScript
import { defineMessages } from 'react-intl';
export const contextPanelMessages = defineMessages({
panelLabel: {
id: 'fabric.editor.contextPanel.panelLabel',
defaultMessage: 'Context panel',
description: 'Accessibility label for the context panel dialog in the editor. Used as an aria-label to identify the panel for screen reader users.'
},
panelContentLabel: {
id: 'fabric.editor.contextPanel.panelContentLabel',
defaultMessage: 'Scrollable context panel content',
description: 'Accessible label for the scrollable content region inside the editor context panel, used by screen readers to identify this scrollable area.'
}
});