@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
39 lines (38 loc) • 1.27 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.toolbarMessages = void 0;
var _reactIntlNext = require("react-intl-next");
var toolbarMessages = exports.toolbarMessages = (0, _reactIntlNext.defineMessages)({
singleColumn: {
id: 'fabric.editor.single',
defaultMessage: 'Single column',
description: 'Layout with one single column'
},
twoColumns: {
id: 'fabric.editor.twoColumns',
defaultMessage: 'Two columns',
description: 'Layout with two columns of equal width'
},
threeColumns: {
id: 'fabric.editor.threeColumns',
defaultMessage: 'Three columns',
description: 'Layout with three columns of equal width'
},
rightSidebar: {
id: 'fabric.editor.rightSidebar',
defaultMessage: 'Right sidebar',
description: 'Layout with two columns, left column is 2/3 and right is 1/3 of page'
},
leftSidebar: {
id: 'fabric.editor.leftSidebar',
defaultMessage: 'Left sidebar',
description: 'Layout with two columns, left column is 1/3 and right is 2/3 of page'
},
threeColumnsWithSidebars: {
id: 'fabric.editor.threeColumnsWithSidebars',
defaultMessage: 'Three columns with sidebars',
description: 'Layout with 3 columns laid out as 25% - 50% - 25%'
}
});