@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
29 lines • 1.32 kB
JavaScript
// Common Translations will live here
import { defineMessages } from 'react-intl';
export const messages = 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 option in the quick insert menu when the user searches for list formatting options.'
},
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 option in the quick insert menu when the user searches for list formatting options.'
},
lists: {
id: 'fabric.editor.lists',
defaultMessage: 'Lists',
description: 'Menu shows ordered/bullet list and unordered/numbered lists'
}
});