@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
46 lines (44 loc) • 1.77 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.messages = void 0;
var _reactIntl = require("react-intl");
// Common Translations will live here
var messages = exports.messages = (0, _reactIntl.defineMessages)({
unorderedList: {
id: 'fabric.editor.unorderedList',
defaultMessage: 'Bullet list',
description: 'A list with bullets. Also known as an “unordered” list'
},
unorderedListDescription: {
id: 'fabric.editor.unorderedList.description',
defaultMessage: 'Create an unordered list',
description: 'The text is shown as a description for the bullet list item in the quick insert menu when the user searches for formatting options.'
},
bulletedList: {
id: 'fabric.editor.bulletedList',
defaultMessage: 'Bulleted list',
description: 'A list with bullets. Also known as an “unordered” list'
},
orderedList: {
id: 'fabric.editor.orderedList',
defaultMessage: 'Numbered list',
description: 'The text is shown as the label for the numbered list option in the editor toolbar or menu, allowing the user to insert a sequentially numbered list into their document.'
},
orderedListDescription: {
id: 'fabric.editor.orderedList.description',
defaultMessage: 'Create an ordered list',
description: 'The text is shown as a description for the numbered list item in the quick insert menu when the user searches for formatting options.'
},
lists: {
id: 'fabric.editor.lists',
defaultMessage: 'Lists',
description: 'Menu shows ordered/bullet list and unordered/numbered lists'
},
listsFormat: {
id: 'fabric.editor.listsFormat',
defaultMessage: 'List formatting',
description: 'Aria label for the wrapper of list buttons'
}
});