CodeBlockLocalizations constructor

const CodeBlockLocalizations({
  1. String codeBlockNewParagraph = "Insert a new paragraph next to the code block",
  2. String codeBlockIndentLines = "Insert two spaces at the line start in code block",
  3. String codeBlockOutdentLines = "Delete two spaces at the line start in code block",
  4. String codeBlockSelectAll = "Select all content inside a code block",
  5. String codeBlockPasteText = "Paste text in codeblock",
  6. String language = "Language",
  7. String languagePlaceholder = "Select a language",
  8. String autoLanguage = "Auto",
  9. String copyTooltip = "Copy contents of the code block",
  10. String codeBlockAddTwoSpaces = "Add two spaces at cursor position in code block",
})

Implementation

const CodeBlockLocalizations({
  this.codeBlockNewParagraph =
      "Insert a new paragraph next to the code block",
  this.codeBlockIndentLines =
      "Insert two spaces at the line start in code block",
  this.codeBlockOutdentLines =
      "Delete two spaces at the line start in code block",
  this.codeBlockSelectAll = "Select all content inside a code block",
  this.codeBlockPasteText = "Paste text in codeblock",
  this.language = "Language",
  this.languagePlaceholder = "Select a language",
  this.autoLanguage = "Auto",
  this.copyTooltip = "Copy contents of the code block",
  this.codeBlockAddTwoSpaces =
      "Add two spaces at cursor position in code block",
});