@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
28 lines • 1.19 kB
JavaScript
import { defineMessages } from 'react-intl';
export const messages = defineMessages({
statusEditorLabel: {
id: 'fabric.editor.statusEditorLabel',
defaultMessage: 'Status editor',
description: 'Accessible label for the status element editor panel that appears when a user clicks on a status badge in the editor to modify it.'
},
placeholder: {
id: 'fabric.editor.statusPlaceholder',
defaultMessage: 'Set a status',
description: 'Placeholder description for an empty (new) status item in the editor'
},
editText: {
id: 'fabric.editor.editStatusText',
defaultMessage: 'Edit Status',
description: 'Title for the input that changes the status text'
},
editColor: {
id: 'fabric.editor.editStatusColor',
defaultMessage: 'Edit Status Color',
description: 'Title for the color picker that changes the status color'
},
statusPickerOpenedAlert: {
id: 'fabric.editor.statusPickerOpenedAlert',
defaultMessage: 'Status editor popup opened, press Tab to access popup',
description: 'Screen reader alert when the status picker is opened, letting the user know they can press the Tab button to access the status picker'
}
});