remirror/remirror

View on GitHub
packages/remirror__messages/src/extension-paragraph-messages.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import type { MessageDescriptor } from '@lingui/core';
import { defineMessage } from '@lingui/macro';

export const INSERT_LABEL: MessageDescriptor = defineMessage({
  id: 'extension.command.insert-paragraph.label',
  comment: 'Label for inserting a paragraph.',
  message: 'Insert Paragraph',
});

export const INSERT_DESCRIPTION: MessageDescriptor = defineMessage({
  id: 'extension.command.insert-paragraph.description',
  comment: 'Description for inserting a paragraph.',
  message: 'Insert a new paragraph',
});

export const CONVERT_LABEL: MessageDescriptor = defineMessage({
  id: 'extension.command.convert-paragraph.label',
  comment: 'Label for converting the current node into a paragraph.',
  message: 'Convert Paragraph',
});

export const CONVERT_DESCRIPTION: MessageDescriptor = defineMessage({
  id: 'extension.command.convert-paragraph.description',
  comment: 'Description for converting a paragraph.',
  message: 'Convert current block into a paragraph block.',
});