@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
23 lines • 1.26 kB
JavaScript
import { defineMessages } from 'react-intl';
export var mediaResizeAnnouncerMessMessages = defineMessages({
MediaWidthIsMax: {
id: 'fabric.editor.media.pixelEntry.MediaWidthIsMax',
defaultMessage: 'Media increased to the maximum size',
description: 'Assistive announcement text read by screen readers when the user resizes a media item and it reaches the maximum allowed size.'
},
MediaWidthIsMin: {
id: 'fabric.editor.media.MediaWidthIsMin',
defaultMessage: 'Media decreased to the minimum size',
description: 'Assistive announcement text read by screen readers when the user resizes a media item and it reaches the minimum allowed size.'
},
DefaultMediaWidthIncreased: {
id: 'fabric.editor.media.DefaultMediaWidthIncreased',
defaultMessage: '{newMediaWidth, plural, one {Media width increased to # pixel.} other {Media width increased to # pixels.}}',
description: 'Media width increased to {newMediaWidth} pixels.'
},
DefaultMediaWidthDecreased: {
id: 'fabric.editor.media.DefaultMediaWidthDecreased',
defaultMessage: '{newMediaWidth, plural, one {Media width decreased to # pixel.} other {Media width decreased to # pixels.}}',
description: 'Media width decreased to {newMediaWidth} pixels.'
}
});