forked from outline/rich-markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dictionary.ts
64 lines (63 loc) · 1.96 KB
/
dictionary.ts
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
export const base = {
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",
deleteColumn: "Delete column",
deleteRow: "Delete row",
deleteTable: "Delete table",
deleteImage: "Delete image",
downloadImage: "Download image",
replaceImage: "Replace image",
alignImageLeft: "Float left half width",
alignImageRight: "Float right half width",
alignImageDefault: "Center large",
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",
imageCaptionPlaceholder: "Write a caption",
info: "Info",
infoNotice: "Info notice",
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",
pageBreak: "Page break",
pasteLink: "Paste a link…",
pasteLinkWithTitle: (title: string): string => `Paste a ${title} link…`,
placeholder: "Placeholder",
quote: "Quote",
removeLink: "Remove link",
searchOrPasteLink: "Search or paste a link…",
strikethrough: "Strikethrough",
strong: "Bold",
subheading: "Subheading",
table: "Table",
tip: "Tip",
tipNotice: "Tip notice",
warning: "Warning",
warningNotice: "Warning notice",
};
export default base;