-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdictionary.ts
More file actions
47 lines (46 loc) · 1.35 KB
/
dictionary.ts
File metadata and controls
47 lines (46 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
export const base = {
addImage: 'Add Image',
addColumnAfter: 'Insert column after',
addColumnBefore: 'Insert column before',
addRowAfter: 'Insert row after',
addRowBefore: 'Insert row before',
alignCenter: 'Align center',
alignLeft: 'Align left',
alignRight: 'Align right',
bulletList: 'Bulleted list',
checkboxList: 'Todo list',
codeBlock: 'Code block',
codeCopied: 'Copied to clipboard',
codeInline: 'Code',
createLink: 'Create link',
createLinkError: 'Sorry, an error occurred creating the link',
createNewDoc: 'Create a new doc',
em: 'Italic',
embedInvalidLink: 'Sorry, that link won’t work for this embed type',
findOrCreateDoc: 'Find or create a doc…',
h1: 'Big heading',
h2: 'Medium heading',
h3: 'Small heading',
heading: 'Heading',
hr: 'Divider',
image: 'Image',
imageUploadError: 'Sorry, an error occurred uploading the image',
info: 'Info',
link: 'Link',
linkCopied: 'Link copied to clipboard',
mark: 'Highlight',
newLineEmpty: "Type '/' to insert…",
newLineWithSlash: 'Keep typing to filter…',
noResults: 'No results',
openLink: 'Open link',
orderedList: 'Ordered list',
pasteLink: 'Paste a link…',
placeholder: 'Placeholder',
quote: 'Quote',
removeLink: 'Remove link',
searchOrPasteLink: 'Search or paste a link…',
strikethrough: 'Strikethrough',
strong: 'Bold',
subheading: 'Subheading'
};
export default base;