@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
30 lines (29 loc) • 947 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.messages = void 0;
var _reactIntl = require("react-intl");
// Do not add messages to this file
// Add them here platform/packages/editor/editor-common/src/messages/block-menu.ts instead
/**
* @private
* @deprecated
*/
var messages = exports.messages = (0, _reactIntl.defineMessages)({
copyBlock: {
id: 'fabric.editor.block.menu.copy.block',
defaultMessage: 'Copy block',
description: 'Copy the selected block to the clipboard'
},
deleteBlock: {
id: 'fabric.editor.block.menu.delete.block',
defaultMessage: 'Delete',
description: 'The text is shown as a menu item in the block menu when the user wants to delete the currently selected block from the document.'
},
turnInto: {
id: 'fabric.editor.block.menu.turn.into',
defaultMessage: 'Turn into',
description: 'Turn the selected block into another type'
}
});