@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
24 lines (23 loc) • 984 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.unsupportedContentMessages = void 0;
var _reactIntlNext = require("react-intl-next");
var unsupportedContentMessages = exports.unsupportedContentMessages = (0, _reactIntlNext.defineMessages)({
unsupportedInlineContent: {
id: 'fabric.editor.unsupportedInlineContent',
defaultMessage: 'Unsupported content',
description: 'Unsupported content'
},
unsupportedBlockContent: {
id: 'fabric.editor.unsupportedBlockContent',
defaultMessage: 'This editor does not support displaying this content',
description: 'This editor does not support displaying this content'
},
unsupportedContentTooltip: {
id: 'fabric.editor.unsupportedContentTooltip',
defaultMessage: 'Content is not available in this editor, this will be preserved when you edit and save',
description: 'Content is not available in this editor, this will be preserved when you edit and save'
}
});