@kangc/v-md-editor
Version:
A markdown editor built on Vue
105 lines (104 loc) • 1.77 kB
JavaScript
export default {
undo: {
toolbar: 'Undo',
},
redo: {
toolbar: 'Redo',
},
clear: {
toolbar: 'Clear',
},
h: {
toolbar: 'Headings',
},
h1: {
toolbar: 'Heading 1',
placeholder: 'Heading 1',
},
h2: {
toolbar: 'Heading 2',
placeholder: 'Heading 2',
},
h3: {
toolbar: 'Heading 3',
placeholder: 'Heading 3',
},
h4: {
toolbar: 'Heading 4',
placeholder: 'Heading 4',
},
h5: {
toolbar: 'Heading 5',
placeholder: 'Heading 5',
},
h6: {
toolbar: 'Heading 6',
placeholder: 'Heading 6',
},
bold: {
toolbar: 'Bold',
placeholder: 'Bold',
},
italic: {
toolbar: 'Italic',
placeholder: 'Italic',
},
strikethrough: {
toolbar: 'Strike',
placeholder: 'Strike',
},
quote: {
toolbar: 'Blockquote',
placeholder: 'Blockquote',
},
ul: {
toolbar: 'Unordered list',
placeholder: 'Unordered list',
},
ol: {
toolbar: 'Ordered list',
placeholder: 'Ordered list',
},
table: {
toolbar: 'Insert table',
},
hr: {
toolbar: 'Line',
},
link: {
toolbar: 'Insert link',
descPlaceholder: 'Link',
},
image: {
toolbar: 'Insert image',
},
imageLink: {
toolbar: 'Insert link',
},
uploadImage: {
toolbar: 'Upload Image',
},
code: {
toolbar: 'Insert Codeblock',
},
save: {
toolbar: 'Save',
},
preview: {
enabled: 'Enable preview',
disabled: 'Disable preview',
},
toc: {
title: 'Directory navigation',
enabled: 'Enable toc',
disabled: 'Disable toc',
},
syncScroll: {
enabled: 'Enable sync scroll ',
disabled: 'Disable sync scroll',
},
fullscreen: {
enabled: 'Full screen(Press ESC to exit)',
disabled: 'Exit Full Screen',
},
};