reactjs-tiptap-editor-pro 0.2.28 → 0.2.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -60
- package/src/components/ActionButton.tsx +103 -0
- package/src/components/ActionMenuButton.tsx +76 -0
- package/src/components/BubbleMenu.tsx +93 -0
- package/src/components/CharactorCount.tsx +50 -0
- package/src/components/ColorPicker.tsx +272 -0
- package/src/components/RichTextEditor.tsx +212 -0
- package/src/components/SizeSetter/SizeSetter.tsx +102 -0
- package/src/components/Toolbar.tsx +108 -0
- package/src/components/icons/Activity.tsx +19 -0
- package/src/components/icons/Animas.tsx +24 -0
- package/src/components/icons/AspectRatio.tsx +13 -0
- package/src/components/icons/Blockquote.tsx +17 -0
- package/src/components/icons/ColumnAddLeft.tsx +7 -0
- package/src/components/icons/ColumnAddRight.tsx +7 -0
- package/src/components/icons/DeleteColumn.tsx +26 -0
- package/src/components/icons/DeleteRow.tsx +26 -0
- package/src/components/icons/Direction.tsx +7 -0
- package/src/components/icons/Excalidraw.tsx +7 -0
- package/src/components/icons/ExportPdf.tsx +8 -0
- package/src/components/icons/ExportWord.tsx +24 -0
- package/src/components/icons/FileWordOutline.tsx +13 -0
- package/src/components/icons/Flag.tsx +19 -0
- package/src/components/icons/Food.tsx +20 -0
- package/src/components/icons/GIfIcon.tsx +10 -0
- package/src/components/icons/Icon.tsx +30 -0
- package/src/components/icons/ImportWord.tsx +23 -0
- package/src/components/icons/LeftToRight.tsx +7 -0
- package/src/components/icons/LineHeight.tsx +13 -0
- package/src/components/icons/MenuDown.tsx +24 -0
- package/src/components/icons/Mermaid.tsx +13 -0
- package/src/components/icons/NoFill.tsx +7 -0
- package/src/components/icons/Object.tsx +24 -0
- package/src/components/icons/RightToLeft.tsx +7 -0
- package/src/components/icons/SizeL.tsx +9 -0
- package/src/components/icons/SizeM.tsx +13 -0
- package/src/components/icons/SizeS.tsx +13 -0
- package/src/components/icons/Symbol.tsx +19 -0
- package/src/components/icons/Travel.tsx +24 -0
- package/src/components/icons/Twitter.tsx +7 -0
- package/src/components/icons/icons.ts +212 -0
- package/src/components/icons/index.ts +12 -0
- package/src/components/index.ts +9 -0
- package/src/components/menus/bubble.ts +395 -0
- package/src/components/menus/components/BubbleMenuContent.tsx +15 -0
- package/src/components/menus/components/BubbleMenuDrawer.tsx +128 -0
- package/src/components/menus/components/BubbleMenuExcalidraw.tsx +91 -0
- package/src/components/menus/components/BubbleMenuIframe.tsx +143 -0
- package/src/components/menus/components/BubbleMenuKatex.tsx +136 -0
- package/src/components/menus/components/BubbleMenuLink.tsx +99 -0
- package/src/components/menus/components/BubbleMenuMedia.tsx +235 -0
- package/src/components/menus/components/BubbleMenuMermaid.tsx +128 -0
- package/src/components/menus/components/BubbleMenuText.tsx +102 -0
- package/src/components/menus/components/BubbleMenuTwitter.tsx +91 -0
- package/src/components/menus/components/ColumnsBubbleMenu.tsx +59 -0
- package/src/components/menus/components/ContentMenu.tsx +396 -0
- package/src/components/menus/components/TableBubbleMenu.tsx +362 -0
- package/src/components/menus/index.ts +7 -0
- package/src/components/ui/button.tsx +56 -0
- package/src/components/ui/checkbox.tsx +30 -0
- package/src/components/ui/dialog.tsx +128 -0
- package/src/components/ui/dropdown-menu.tsx +203 -0
- package/src/components/ui/emoji-picker.tsx +166 -0
- package/src/components/ui/index.ts +14 -0
- package/src/components/ui/input.tsx +25 -0
- package/src/components/ui/label.tsx +26 -0
- package/src/components/ui/popover.tsx +31 -0
- package/src/components/ui/select.tsx +162 -0
- package/src/components/ui/separator.tsx +31 -0
- package/src/components/ui/switch.tsx +29 -0
- package/src/components/ui/tabs.tsx +55 -0
- package/src/components/ui/textarea.tsx +24 -0
- package/src/components/ui/toast.tsx +129 -0
- package/src/components/ui/toaster.tsx +44 -0
- package/src/components/ui/toggle.tsx +45 -0
- package/src/components/ui/tooltip.tsx +30 -0
- package/src/components/ui/use-toast.ts +197 -0
- package/src/constants/index.ts +223 -0
- package/src/constants/resetCSS.ts +139 -0
- package/src/extension-bundle.ts +2 -0
- package/src/extensions/Attachment/Attachment.ts +144 -0
- package/src/extensions/Attachment/components/NodeViewAttachment/FileIcon.tsx +69 -0
- package/src/extensions/Attachment/components/NodeViewAttachment/FileIconString.ts +28 -0
- package/src/extensions/Attachment/components/NodeViewAttachment/NodeViewAttachment.tsx +155 -0
- package/src/extensions/Attachment/components/NodeViewAttachment/index.module.scss +23 -0
- package/src/extensions/Attachment/index.ts +1 -0
- package/src/extensions/BaseKit.ts +253 -0
- package/src/extensions/Blockquote/Blockquote.ts +31 -0
- package/src/extensions/Blockquote/index.ts +1 -0
- package/src/extensions/Bold/Bold.ts +26 -0
- package/src/extensions/Bold/index.ts +1 -0
- package/src/extensions/BulletList/BulletList.ts +28 -0
- package/src/extensions/BulletList/index.ts +1 -0
- package/src/extensions/Clear/Clear.ts +24 -0
- package/src/extensions/Clear/index.ts +1 -0
- package/src/extensions/Code/Code.ts +26 -0
- package/src/extensions/Code/index.ts +1 -0
- package/src/extensions/CodeBlock/CodeBlock.ts +54 -0
- package/src/extensions/CodeBlock/components/CodeBlockActiveButton.tsx +66 -0
- package/src/extensions/CodeBlock/components/NodeViewCodeBlock/NodeViewCodeBlock.tsx +89 -0
- package/src/extensions/CodeBlock/components/NodeViewCodeBlock/index.module.scss +81 -0
- package/src/extensions/CodeBlock/highlighter.ts +132 -0
- package/src/extensions/CodeBlock/index.ts +1 -0
- package/src/extensions/CodeBlock/shiki-plugin.ts +213 -0
- package/src/extensions/Color/Color.ts +52 -0
- package/src/extensions/Color/components/ColorActionButton.tsx +104 -0
- package/src/extensions/Color/index.ts +1 -0
- package/src/extensions/Document/Document.ts +8 -0
- package/src/extensions/Document/index.ts +1 -0
- package/src/extensions/Drawer/Drawer.ts +177 -0
- package/src/extensions/Drawer/components/ControlDrawer/ControlDrawer.module.scss +85 -0
- package/src/extensions/Drawer/components/ControlDrawer/ControlDrawer.tsx +598 -0
- package/src/extensions/Drawer/components/ControlDrawer/icon.tsx +500 -0
- package/src/extensions/Drawer/components/DrawerActiveButton.tsx +239 -0
- package/src/extensions/Drawer/components/EditDrawerBlock.tsx +238 -0
- package/src/extensions/Drawer/components/NodeViewDrawer/NodeViewDrawer.tsx +260 -0
- package/src/extensions/Drawer/index.ts +1 -0
- package/src/extensions/Emoji/Emoji.ts +146 -0
- package/src/extensions/Emoji/components/EmojiList/EmojiList.tsx +103 -0
- package/src/extensions/Emoji/components/EmojiList/emojis.ts +1858 -0
- package/src/extensions/Emoji/components/EmojiPicker/EmojiPicker.tsx +61 -0
- package/src/extensions/Emoji/index.ts +1 -0
- package/src/extensions/Excalidraw/Excalidraw.ts +123 -0
- package/src/extensions/Excalidraw/components/ExcalidrawActiveButton.tsx +138 -0
- package/src/extensions/Excalidraw/components/NodeViewExcalidraw/NodeViewExcalidraw.tsx +178 -0
- package/src/extensions/Excalidraw/components/NodeViewExcalidraw/index.module.scss +43 -0
- package/src/extensions/Excalidraw/index.ts +1 -0
- package/src/extensions/ExportPdf/ExportPdf.ts +25 -0
- package/src/extensions/ExportPdf/index.ts +1 -0
- package/src/extensions/ExportWord/ExportWord.ts +87 -0
- package/src/extensions/ExportWord/index.ts +1 -0
- package/src/extensions/FontFamily/FontFamily.ts +64 -0
- package/src/extensions/FontFamily/components/FontFamilyButton.tsx +97 -0
- package/src/extensions/FontFamily/index.ts +1 -0
- package/src/extensions/FontSize/FontSize.ts +119 -0
- package/src/extensions/FontSize/components/FontSizeMenuButton.tsx +84 -0
- package/src/extensions/FontSize/index.ts +1 -0
- package/src/extensions/FormatPainter/FormatPainter.ts +121 -0
- package/src/extensions/FormatPainter/index.ts +1 -0
- package/src/extensions/Heading/Heading.ts +57 -0
- package/src/extensions/Heading/components/HeadingButton.tsx +96 -0
- package/src/extensions/Heading/index.ts +1 -0
- package/src/extensions/Highlight/Highlight.ts +36 -0
- package/src/extensions/Highlight/components/HighlightActionButton.tsx +108 -0
- package/src/extensions/Highlight/index.ts +1 -0
- package/src/extensions/History/History.ts +39 -0
- package/src/extensions/History/components/HistoryActionButton.tsx +74 -0
- package/src/extensions/History/index.ts +1 -0
- package/src/extensions/HorizontalRule/HorizontalRule.ts +42 -0
- package/src/extensions/HorizontalRule/index.ts +1 -0
- package/src/extensions/Iframe/Iframe.ts +140 -0
- package/src/extensions/Iframe/components/IframeNodeView.tsx +92 -0
- package/src/extensions/Iframe/components/index.module.scss +40 -0
- package/src/extensions/Iframe/embed.ts +487 -0
- package/src/extensions/Iframe/index.ts +1 -0
- package/src/extensions/Image/Image.ts +303 -0
- package/src/extensions/Image/components/ActionImageButton.tsx +186 -0
- package/src/extensions/Image/components/ImageCropper.tsx +198 -0
- package/src/extensions/Image/components/ImageView.tsx +271 -0
- package/src/extensions/Image/index.ts +1 -0
- package/src/extensions/Image/store.ts +15 -0
- package/src/extensions/ImageGif/ImageGif.ts +176 -0
- package/src/extensions/ImageGif/components/ImageGifActionButton.tsx +138 -0
- package/src/extensions/ImageGif/components/ImageGifView.tsx +260 -0
- package/src/extensions/ImageGif/index.ts +1 -0
- package/src/extensions/ImportWord/ImportWord.ts +52 -0
- package/src/extensions/ImportWord/components/ImportWordButton.tsx +151 -0
- package/src/extensions/ImportWord/index.ts +1 -0
- package/src/extensions/Indent/Indent.ts +110 -0
- package/src/extensions/Indent/index.ts +1 -0
- package/src/extensions/Italic/Italic.ts +29 -0
- package/src/extensions/Italic/index.ts +1 -0
- package/src/extensions/Katex/Katex.ts +109 -0
- package/src/extensions/Katex/components/KatexActiveButton.tsx +117 -0
- package/src/extensions/Katex/components/KatexWrapper.tsx +53 -0
- package/src/extensions/Katex/index.ts +1 -0
- package/src/extensions/LineHeight/LineHeight.ts +76 -0
- package/src/extensions/LineHeight/components/LineHeightDropdown.tsx +93 -0
- package/src/extensions/LineHeight/index.ts +1 -0
- package/src/extensions/Link/Link.ts +92 -0
- package/src/extensions/Link/components/LinkEditBlock.tsx +110 -0
- package/src/extensions/Link/components/LinkEditPopover.tsx +46 -0
- package/src/extensions/Link/components/LinkViewBlock.tsx +54 -0
- package/src/extensions/Link/index.ts +1 -0
- package/src/extensions/ListItem/ListItem.ts +1 -0
- package/src/extensions/ListItem/index.ts +1 -0
- package/src/extensions/Mention/Mention.ts +100 -0
- package/src/extensions/Mention/components/NodeViewMentionList/NodeViewMentionList.tsx +94 -0
- package/src/extensions/Mention/components/NodeViewMentionList/index.module.scss +38 -0
- package/src/extensions/Mention/index.ts +1 -0
- package/src/extensions/Mermaid/Mermaid.ts +177 -0
- package/src/extensions/Mermaid/components/EditMermaidBlock.tsx +155 -0
- package/src/extensions/Mermaid/components/MermaidActiveButton.tsx +151 -0
- package/src/extensions/Mermaid/components/NodeViewMermaid/NodeViewMermaid.tsx +260 -0
- package/src/extensions/Mermaid/index.ts +1 -0
- package/src/extensions/MoreMark/MoreMark.ts +102 -0
- package/src/extensions/MoreMark/components/ActionMoreButton.tsx +97 -0
- package/src/extensions/MoreMark/index.ts +1 -0
- package/src/extensions/MultiColumn/Column.ts +36 -0
- package/src/extensions/MultiColumn/MultiColumn.ts +111 -0
- package/src/extensions/MultiColumn/components/ColumnActionButton.ts +22 -0
- package/src/extensions/MultiColumn/index.ts +3 -0
- package/src/extensions/OrderedList/OrderedList.ts +28 -0
- package/src/extensions/OrderedList/index.ts +1 -0
- package/src/extensions/SearchAndReplace/SearchAndReplace.ts +395 -0
- package/src/extensions/SearchAndReplace/components/SearchAndReplaceButton.tsx +190 -0
- package/src/extensions/SearchAndReplace/index.ts +1 -0
- package/src/extensions/Selection/Selection.ts +32 -0
- package/src/extensions/Selection/index.ts +1 -0
- package/src/extensions/SlashCommand/SlashCommand.ts +255 -0
- package/src/extensions/SlashCommand/components/CommandsList.tsx +180 -0
- package/src/extensions/SlashCommand/groups.ts +183 -0
- package/src/extensions/SlashCommand/index.ts +1 -0
- package/src/extensions/SlashCommand/types.ts +24 -0
- package/src/extensions/Strike/Strike.ts +26 -0
- package/src/extensions/Strike/index.ts +1 -0
- package/src/extensions/Subscript/Subscript.ts +88 -0
- package/src/extensions/Subscript/index.ts +1 -0
- package/src/extensions/Table/Cell.ts +131 -0
- package/src/extensions/Table/Header.ts +93 -0
- package/src/extensions/Table/Row.ts +8 -0
- package/src/extensions/Table/Table.ts +60 -0
- package/src/extensions/Table/cell-background.ts +112 -0
- package/src/extensions/Table/components/CreateTablePopover.tsx +132 -0
- package/src/extensions/Table/components/TableActionButton.tsx +42 -0
- package/src/extensions/Table/index.ts +6 -0
- package/src/extensions/Table/utils.ts +352 -0
- package/src/extensions/TableOfContent/TableOfContent.ts +124 -0
- package/src/extensions/TableOfContent/components/NodeViewTableOfContent.tsx +116 -0
- package/src/extensions/TableOfContent/components/TableOfContentActionButton.tsx +27 -0
- package/src/extensions/TableOfContent/components/index.module.scss +40 -0
- package/src/extensions/TableOfContent/index.ts +1 -0
- package/src/extensions/TaskList/TaskList.ts +46 -0
- package/src/extensions/TaskList/index.ts +1 -0
- package/src/extensions/TextAlign/TextAlign.ts +68 -0
- package/src/extensions/TextAlign/components/TextAlignMenuButton.tsx +103 -0
- package/src/extensions/TextAlign/index.ts +1 -0
- package/src/extensions/TextBubble/TextBubble.ts +22 -0
- package/src/extensions/TextBubble/components/TextDropdown.tsx +146 -0
- package/src/extensions/TextBubble/index.ts +1 -0
- package/src/extensions/TextDirection/TextDirection.ts +97 -0
- package/src/extensions/TextDirection/components/TextDirectionButton.tsx +103 -0
- package/src/extensions/TextDirection/index.ts +1 -0
- package/src/extensions/TrailingNode/TrailingNode.ts +71 -0
- package/src/extensions/TrailingNode/index.ts +1 -0
- package/src/extensions/Twitter/Twitter.ts +161 -0
- package/src/extensions/Twitter/components/FormEditLinkTwitter.tsx +68 -0
- package/src/extensions/Twitter/components/NodeViewTweet.tsx +30 -0
- package/src/extensions/Twitter/components/TwitterActiveButton.tsx +41 -0
- package/src/extensions/Twitter/index.ts +1 -0
- package/src/extensions/UnderLine/Underline.ts +30 -0
- package/src/extensions/UnderLine/index.ts +1 -0
- package/src/extensions/Video/Video.ts +204 -0
- package/src/extensions/Video/components/ActiveVideoButton.tsx +191 -0
- package/src/extensions/Video/index.ts +1 -0
- package/src/extensions/Video/store.ts +15 -0
- package/src/extensions/index.ts +122 -0
- package/src/hooks/useActive.tsx +24 -0
- package/src/hooks/useAttributes.tsx +45 -0
- package/src/hooks/useCopy.tsx +20 -0
- package/src/hooks/useEditorState.tsx +23 -0
- package/src/hooks/useExtension.tsx +29 -0
- package/src/index.ts +8 -0
- package/src/lib/utils.ts +7 -0
- package/src/locale-bundle.ts +3 -0
- package/src/locales/en.ts +173 -0
- package/src/locales/hu.ts +173 -0
- package/src/locales/index.tsx +163 -0
- package/src/locales/pt-br.ts +173 -0
- package/src/locales/vi.ts +173 -0
- package/src/locales/zh-cn.ts +173 -0
- package/src/plugins/DragHandle/index.ts +375 -0
- package/src/plugins/DragHandle/range.ts +114 -0
- package/src/plugins/DragHandle/utils.ts +80 -0
- package/src/plugins/image-upload.ts +160 -0
- package/src/store/ProviderRichText.tsx +53 -0
- package/src/store/editableEditor.ts +15 -0
- package/src/store/fast-context.tsx +70 -0
- package/src/store/store.ts +35 -0
- package/src/styles/ProseMirror.scss +176 -0
- package/src/styles/columns.scss +23 -0
- package/src/styles/editor.scss +411 -0
- package/src/styles/global.scss +87 -0
- package/src/styles/index.scss +5 -0
- package/src/styles/mention.scss +6 -0
- package/src/theme/theme.ts +15 -0
- package/src/types.ts +271 -0
- package/src/utils/_event.ts +55 -0
- package/src/utils/color.ts +67 -0
- package/src/utils/columns.ts +142 -0
- package/src/utils/customEvents/customEvents.ts +18 -0
- package/src/utils/customEvents/events.constant.ts +11 -0
- package/src/utils/delete-node.ts +46 -0
- package/src/utils/dom-dataset.ts +121 -0
- package/src/utils/download.ts +17 -0
- package/src/utils/dynamicCSS.ts +192 -0
- package/src/utils/editor-container-size.ts +28 -0
- package/src/utils/file.ts +112 -0
- package/src/utils/getRenderContainer.ts +41 -0
- package/src/utils/indent.ts +99 -0
- package/src/utils/is-mobile.ts +57 -0
- package/src/utils/json.ts +18 -0
- package/src/utils/line-height.ts +109 -0
- package/src/utils/lru-cache.ts +145 -0
- package/src/utils/mitt.ts +114 -0
- package/src/utils/node.ts +92 -0
- package/src/utils/pdf.ts +72 -0
- package/src/utils/plateform.ts +49 -0
- package/src/utils/shortId.ts +5 -0
- package/src/utils/storage.ts +18 -0
- package/src/utils/utils.ts +71 -0
- package/src/vite-env.d.ts +3 -0
- package/lib/RichTextEditor-BC85Dn21.js +0 -8826
- package/lib/RichTextEditor-Cxm0yJdr.cjs +0 -141
- package/lib/extension-bundle.cjs +0 -33
- package/lib/extension-bundle.d.cts +0 -947
- package/lib/extension-bundle.d.ts +0 -947
- package/lib/extension-bundle.js +0 -5755
- package/lib/index-DV-nXpU1.cjs +0 -1
- package/lib/index-M6H3FoBi.js +0 -1147
- package/lib/index.cjs +0 -1
- package/lib/index.d.cts +0 -511
- package/lib/index.d.ts +0 -511
- package/lib/index.js +0 -16
- package/lib/locale-bundle.cjs +0 -1
- package/lib/locale-bundle.d.cts +0 -1140
- package/lib/locale-bundle.d.ts +0 -1140
- package/lib/locale-bundle.js +0 -9
- package/lib/style.css +0 -1
- package/lib/tiptap-DkWHMWDt.js +0 -6061
- package/lib/tiptap-gBG-1T-V.cjs +0 -116
- package/lib/vendor-BJ0Yf78E.cjs +0 -8114
- package/lib/vendor-Cpa6z-M0.js +0 -67575
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
const locale = {
|
|
2
|
+
'editor.remove': 'Remover',
|
|
3
|
+
'editor.copy': 'Copiar',
|
|
4
|
+
'editor.words': 'PALAVRAS',
|
|
5
|
+
'editor.characters': 'CARACTERES',
|
|
6
|
+
'editor.default': 'Padrão',
|
|
7
|
+
'editor.recent': 'Usado recentemente',
|
|
8
|
+
'editor.nofill': 'Sem preenchimento',
|
|
9
|
+
'editor.format': 'Format Painter',
|
|
10
|
+
'editor.delete': 'Deletar',
|
|
11
|
+
'editor.edit': 'Editar',
|
|
12
|
+
'editor.settings': 'Configurações',
|
|
13
|
+
'editor.table_of_content': 'Tabela de conteúdos',
|
|
14
|
+
'editor.draghandle.tooltip': 'Modificar',
|
|
15
|
+
'editor.copyToClipboard': 'Copiar para a área de transferência',
|
|
16
|
+
'editor.slash': 'Pressione \'/\' para comandos',
|
|
17
|
+
'editor.slash.empty': 'Nenhum resultado',
|
|
18
|
+
'editor.slash.format': 'Formato',
|
|
19
|
+
'editor.slash.insert': 'Inserir',
|
|
20
|
+
'editor.slash.embed': 'Incorporar serviços',
|
|
21
|
+
'editor.content': 'Por favor, insira o conteúdo',
|
|
22
|
+
'editor.fontFamily.tooltip': 'Fonte',
|
|
23
|
+
'editor.fontFamily.default.tooltip': 'Padrão',
|
|
24
|
+
'editor.moremark': 'Mais estilos de texto',
|
|
25
|
+
'editor.size.small.tooltip': 'Pequeno',
|
|
26
|
+
'editor.size.medium.tooltip': 'Médio',
|
|
27
|
+
'editor.size.large.tooltip': 'Grande',
|
|
28
|
+
'editor.bold.tooltip': 'Negrito',
|
|
29
|
+
'editor.italic.tooltip': 'Itálico',
|
|
30
|
+
'editor.underline.tooltip': 'Sublinhado',
|
|
31
|
+
'editor.strike.tooltip': 'Riscado',
|
|
32
|
+
'editor.color.tooltip': 'Cor',
|
|
33
|
+
'editor.color.more': 'Mais cores',
|
|
34
|
+
'editor.highlight.tooltip': 'Destaque',
|
|
35
|
+
'editor.lineheight.tooltip': 'Altura da linha',
|
|
36
|
+
'editor.heading.tooltip': 'Cabeçalhos',
|
|
37
|
+
'editor.heading.h1.tooltip': 'Cabeçalho 1',
|
|
38
|
+
'editor.heading.h2.tooltip': 'Cabeçalho 2',
|
|
39
|
+
'editor.heading.h3.tooltip': 'Cabeçalho 3',
|
|
40
|
+
'editor.heading.h4.tooltip': 'Cabeçalho 4',
|
|
41
|
+
'editor.heading.h5.tooltip': 'Cabeçalho 5',
|
|
42
|
+
'editor.heading.h6.tooltip': 'Cabeçalho 6',
|
|
43
|
+
'editor.paragraph.tooltip': 'Parágrafo',
|
|
44
|
+
'editor.textalign.tooltip': 'Alinhar',
|
|
45
|
+
'editor.textalign.left.tooltip': 'Esquerda',
|
|
46
|
+
'editor.textalign.center.tooltip': 'Centro',
|
|
47
|
+
'editor.textalign.right.tooltip': 'Direita',
|
|
48
|
+
'editor.textalign.justify.tooltip': 'Justificar',
|
|
49
|
+
'editor.indent': 'Recuo',
|
|
50
|
+
'editor.indent.indent': 'Aumentar recuo',
|
|
51
|
+
'editor.indent.outdent': 'Diminuir recuo',
|
|
52
|
+
'editor.fontSize.tooltip': 'Tamanho da fonte',
|
|
53
|
+
'editor.fontSize.default.tooltip': 'Padrão',
|
|
54
|
+
'editor.superscript.tooltip': 'Sobrescrito',
|
|
55
|
+
'editor.subscript.tooltip': 'Subscrito',
|
|
56
|
+
'editor.bulletlist.tooltip': 'Lista de marcadores',
|
|
57
|
+
'editor.orderedlist.tooltip': 'Lista numerada',
|
|
58
|
+
'editor.tasklist.tooltip': 'Lista de tarefas',
|
|
59
|
+
'editor.indent.tooltip': 'Recuo',
|
|
60
|
+
'editor.outdent.tooltip': 'Diminuir recuo',
|
|
61
|
+
'editor.columns.tooltip': 'Colunas',
|
|
62
|
+
'editor.link.tooltip': 'Link',
|
|
63
|
+
'editor.link.unlink.tooltip': 'Desvincular',
|
|
64
|
+
'editor.link.open.tooltip': 'Abrir link',
|
|
65
|
+
'editor.link.edit.tooltip': 'Editar link',
|
|
66
|
+
'editor.link.dialog.title': 'Inserir link',
|
|
67
|
+
'editor.link.dialog.link': 'Link',
|
|
68
|
+
'editor.link.dialog.text': 'Texto',
|
|
69
|
+
'editor.link.dialog.openInNewTab': 'Abrir em nova guia',
|
|
70
|
+
'editor.link.dialog.link.placeholder': 'Endereço do link',
|
|
71
|
+
'editor.link.dialog.text.placeholder': 'Texto do link',
|
|
72
|
+
'editor.link.dialog.button.apply': 'Aplicar',
|
|
73
|
+
'editor.image.tooltip': 'Imagem',
|
|
74
|
+
'editor.image.dragger.tooltip': 'Clique ou arraste a imagem para a área de upload',
|
|
75
|
+
'editor.image.float.left.tooltip': 'Flutuar à esquerda',
|
|
76
|
+
'editor.image.float.none.tooltip': 'Nenhum flutuante',
|
|
77
|
+
'editor.image.float.right.tooltip': 'Flutuar à direita',
|
|
78
|
+
'editor.image.dialog.title': 'Adicionar uma imagem',
|
|
79
|
+
'editor.image.dialog.tab.url': 'Url',
|
|
80
|
+
'editor.image.dialog.tab.upload': 'Enviar',
|
|
81
|
+
'editor.link.dialog.inline': 'Inline',
|
|
82
|
+
'editor.image.dialog.tab.uploadCrop': 'Enviar e cortar',
|
|
83
|
+
'editor.image.dialog.uploading': 'Enviando',
|
|
84
|
+
'editor.image.dialog.form.link': 'Link',
|
|
85
|
+
'editor.image.dialog.placeholder': 'Link',
|
|
86
|
+
'editor.image.dialog.form.alt': 'Alt',
|
|
87
|
+
'editor.image.dialog.form.aspectRatio': 'Bloquear proporção original',
|
|
88
|
+
'editor.image.dialog.form.file': 'Arquivo',
|
|
89
|
+
'editor.image.dialog.button.apply': 'Aplicar',
|
|
90
|
+
'editor.video.tooltip': 'Vídeo',
|
|
91
|
+
'editor.video.dialog.tab.upload': 'Enviar',
|
|
92
|
+
'editor.video.dialog.uploading': 'Enviando',
|
|
93
|
+
'editor.video.dialog.title': 'Incorporar ou enviar um vídeo',
|
|
94
|
+
'editor.video.dialog.link': 'Link',
|
|
95
|
+
'editor.video.dialog.placeholder': 'Link',
|
|
96
|
+
'editor.video.dialog.button.apply': 'Aplicar',
|
|
97
|
+
'editor.table.tooltip': 'Tabela',
|
|
98
|
+
'editor.table.menu.insert_table': 'Inserir tabela',
|
|
99
|
+
'editor.table.menu.insert_table.with_header_row': 'Com linha de cabeçalho',
|
|
100
|
+
'editor.table.menu.add_column_before': 'Adicionar coluna antes',
|
|
101
|
+
'editor.table.menu.add_column_after': 'Adicionar coluna depois',
|
|
102
|
+
'editor.table.menu.delete_column': 'Excluir coluna',
|
|
103
|
+
'editor.table.menu.add_row_before': 'Adicionar linha antes',
|
|
104
|
+
'editor.table.menu.add_row_after': 'Adicionar linha depois',
|
|
105
|
+
'editor.table.menu.delete_row': 'Deletar linha',
|
|
106
|
+
'editor.table.menu.merge_or_split_cells': 'Mesclar ou dividir células',
|
|
107
|
+
'editor.table.menu.delete_table': 'Deletar tabela',
|
|
108
|
+
'editor.blockquote.tooltip': 'Citação',
|
|
109
|
+
'editor.horizontalrule.tooltip': 'Regra horizontal',
|
|
110
|
+
'editor.code.tooltip': 'Código',
|
|
111
|
+
'editor.codeblock.tooltip': 'Bloco de código',
|
|
112
|
+
'editor.clear.tooltip': 'Limpar formato',
|
|
113
|
+
'editor.undo.tooltip': 'Desfazer',
|
|
114
|
+
'editor.redo.tooltip': 'Refazer',
|
|
115
|
+
'editor.fullscreen.tooltip.fullscreen': 'Tela cheia',
|
|
116
|
+
'editor.fullscreen.tooltip.exit': 'Sair da tela cheia',
|
|
117
|
+
'editor.imageUpload.cancel': 'Cancelar',
|
|
118
|
+
'editor.imageUpload.crop': 'Cortar',
|
|
119
|
+
'editor.imageUpload.fileTypeNotSupported': 'Tipo de arquivo não suportado',
|
|
120
|
+
'editor.imageUpload.fileSizeTooBig': 'Tamanho do arquivo muito grande, tamanho máximo é',
|
|
121
|
+
'editor.table.menu.insertColumnBefore': 'Inserir coluna antes',
|
|
122
|
+
'editor.table.menu.insertColumnAfter': 'Inserir coluna depois',
|
|
123
|
+
'editor.table.menu.deleteColumn': 'Excluir coluna',
|
|
124
|
+
'editor.table.menu.insertRowAbove': 'Inserir linha acima',
|
|
125
|
+
'editor.table.menu.insertRowBelow': 'Inserir linha abaixo',
|
|
126
|
+
'editor.table.menu.deleteRow': 'Deletar linha',
|
|
127
|
+
'editor.table.menu.mergeCells': 'Mesclar células',
|
|
128
|
+
'editor.table.menu.splitCells': 'Dividir células',
|
|
129
|
+
'editor.table.menu.deleteTable': 'Deletar tabela',
|
|
130
|
+
'editor.table.menu.setCellsBgColor': 'Cor de fundo da célula',
|
|
131
|
+
'editor.emoji.tooltip': 'Emoji',
|
|
132
|
+
'editor.iframe.tooltip': 'Iframe',
|
|
133
|
+
'editor.searchAndReplace.tooltip': 'Pesquisar e substituir',
|
|
134
|
+
'editor.search.dialog.text': 'Pesquisar',
|
|
135
|
+
'editor.replace.dialog.text': 'Substituir',
|
|
136
|
+
'editor.replaceAll.dialog.text': 'Substituir tudo',
|
|
137
|
+
'editor.previous.dialog.text': 'Anterior',
|
|
138
|
+
'editor.next.dialog.text': 'Próximo',
|
|
139
|
+
'no_result_found': 'Nenhum resultado encontrado',
|
|
140
|
+
'Smileys & People': 'Emoticons & Pessoas',
|
|
141
|
+
'Animals & Nature': 'Animais & Natureza',
|
|
142
|
+
'Food & Drink': 'Comida & Bebida',
|
|
143
|
+
'Activity': 'Atividade',
|
|
144
|
+
'Travel & Places': 'Viagem & Lugares',
|
|
145
|
+
'Object': 'Objetos',
|
|
146
|
+
'Symbol': 'Símbolos',
|
|
147
|
+
'Flags': 'Bandeiras',
|
|
148
|
+
'Frequently used': 'Frequentemente usado',
|
|
149
|
+
'editor.formula.dialog.text': 'Fórmula',
|
|
150
|
+
'editor.katex.tooltip': 'Fórmula matemática',
|
|
151
|
+
'editor.exportPdf.tooltip': 'Exportar PDF',
|
|
152
|
+
'editor.exportWord.tooltip': 'Exportar Word',
|
|
153
|
+
'editor.importWord.tooltip': 'Importar Word',
|
|
154
|
+
'editor.importWord.limitSize': 'O tamanho do arquivo não pode exceder',
|
|
155
|
+
'editor.importWord.converting': 'Convertendo documento do Word, aguarde...',
|
|
156
|
+
'editor.importWord.convertError': 'Erro ao analisar documento do Word',
|
|
157
|
+
'editor.importWord.importError': 'Erro ao importar documento do Word',
|
|
158
|
+
'editor.textDirection.tooltip': 'Direção do texto',
|
|
159
|
+
'editor.textDirection.auto.tooltip': 'Automático',
|
|
160
|
+
'editor.textDirection.ltr.tooltip': 'Esquerda para Direita',
|
|
161
|
+
'editor.textDirection.rtl.tooltip': 'Direita para Esquerda',
|
|
162
|
+
'editor.attachment.tooltip': 'Anexo',
|
|
163
|
+
'editor.attachment.uploading': 'Enviando',
|
|
164
|
+
'editor.attachment.please_upload': 'Por favor, envie o arquivo',
|
|
165
|
+
'editor.imageGif.tooltip': 'Gif',
|
|
166
|
+
'editor.replace.caseSensitive': 'Sensível a maiúsculas e minúsculas',
|
|
167
|
+
'editor.mermaid.tooltip': 'Mermaid',
|
|
168
|
+
'editor.twitter.tooltip': 'Twitter',
|
|
169
|
+
'editor.tooltip.flipX': 'Inverter Horizontal',
|
|
170
|
+
'editor.tooltip.flipY': 'Inverter Vertical',
|
|
171
|
+
};
|
|
172
|
+
|
|
173
|
+
export default locale;
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
const locale = {
|
|
2
|
+
'editor.remove': 'Xóa',
|
|
3
|
+
'editor.copy': 'Sao chép',
|
|
4
|
+
'editor.words': 'TỪ',
|
|
5
|
+
'editor.characters': 'KÝ TỰ',
|
|
6
|
+
'editor.default': 'Mặc định',
|
|
7
|
+
'editor.recent': 'Đã sử dụng gần đây',
|
|
8
|
+
'editor.nofill': 'Không tô',
|
|
9
|
+
'editor.format': 'Format Painter',
|
|
10
|
+
'editor.delete': 'Xóa',
|
|
11
|
+
'editor.edit': 'Chỉnh sửa',
|
|
12
|
+
'editor.settings': 'Cài đặt',
|
|
13
|
+
'editor.table_of_content': 'Mục lục',
|
|
14
|
+
'editor.draghandle.tooltip': 'Sửa đổi',
|
|
15
|
+
'editor.copyToClipboard': 'CopyToClipboard',
|
|
16
|
+
'editor.slash': 'Nhấn \'/\' để biết lệnh',
|
|
17
|
+
'editor.slash.empty': 'Không có kết quả',
|
|
18
|
+
'editor.slash.format': 'Định dạng',
|
|
19
|
+
'editor.slash.insert': 'Chèn',
|
|
20
|
+
'editor.slash.embed': 'Dịch vụ nhúng',
|
|
21
|
+
'editor.content': 'Vui lòng nhập nội dung',
|
|
22
|
+
'editor.moremark': 'Nhiều kiểu văn bản hơn',
|
|
23
|
+
'editor.size.small.tooltip': 'Nhỏ',
|
|
24
|
+
'editor.fontFamily.tooltip': 'Phông chữ',
|
|
25
|
+
'editor.fontFamily.default.tooltip': 'Mặc định',
|
|
26
|
+
'editor.size.medium.tooltip': 'Trung bình',
|
|
27
|
+
'editor.size.large.tooltip': 'Lớn',
|
|
28
|
+
'editor.bold.tooltip': 'Đậm',
|
|
29
|
+
'editor.italic.tooltip': 'In nghiêng',
|
|
30
|
+
'editor.underline.tooltip': 'Gạch chân',
|
|
31
|
+
'editor.strike.tooltip': 'Gạch',
|
|
32
|
+
'editor.color.tooltip': 'Màu',
|
|
33
|
+
'editor.color.more': 'Nhiều màu hơn',
|
|
34
|
+
'editor.highlight.tooltip': 'Đánh dấu',
|
|
35
|
+
'editor.lineheight.tooltip': 'Chiều cao dòng',
|
|
36
|
+
'editor.heading.tooltip': 'Tiêu đề',
|
|
37
|
+
'editor.heading.h1.tooltip': 'Tiêu đề 1',
|
|
38
|
+
'editor.heading.h2.tooltip': 'Tiêu đề 2',
|
|
39
|
+
'editor.heading.h3.tooltip': 'Tiêu đề 3',
|
|
40
|
+
'editor.heading.h4.tooltip': 'Tiêu đề 4',
|
|
41
|
+
'editor.heading.h5.tooltip': 'Tiêu đề 5',
|
|
42
|
+
'editor.heading.h6.tooltip': 'Tiêu đề 6',
|
|
43
|
+
'editor.paragraph.tooltip': 'Đoạn văn',
|
|
44
|
+
'editor.textalign.tooltip': 'Căn chỉnh',
|
|
45
|
+
'editor.textalign.left.tooltip': 'Trái',
|
|
46
|
+
'editor.textalign.center.tooltip': 'Giữa',
|
|
47
|
+
'editor.textalign.right.tooltip': 'Phải',
|
|
48
|
+
'editor.textalign.justify.tooltip': 'Căn đều',
|
|
49
|
+
'editor.indent': 'Thụt lề',
|
|
50
|
+
'editor.indent.indent': 'Tăng thụt lề',
|
|
51
|
+
'editor.indent.outdent': 'Giảm thụt lề',
|
|
52
|
+
'editor.fontSize.tooltip': 'Kích thước phông chữ',
|
|
53
|
+
'editor.fontSize.default.tooltip': 'Mặc định',
|
|
54
|
+
'editor.superscript.tooltip': 'Chỉ số trên',
|
|
55
|
+
'editor.subscript.tooltip': 'Chỉ số dưới',
|
|
56
|
+
'editor.bulletlist.tooltip': 'Danh sách dấu đầu dòng',
|
|
57
|
+
'editor.orderedlist.tooltip': 'Danh sách có thứ tự',
|
|
58
|
+
'editor.tasklist.tooltip': 'Danh sách tác vụ',
|
|
59
|
+
'editor.indent.tooltip': 'Tăng thụt lề',
|
|
60
|
+
'editor.outdent.tooltip': 'Giảm thụt lề',
|
|
61
|
+
'editor.columns.tooltip': 'Cột',
|
|
62
|
+
'editor.link.tooltip': 'Liên kết',
|
|
63
|
+
'editor.link.unlink.tooltip': 'Hủy liên kết',
|
|
64
|
+
'editor.link.open.tooltip': 'Mở liên kết',
|
|
65
|
+
'editor.link.edit.tooltip': 'Chỉnh sửa liên kết',
|
|
66
|
+
'editor.link.dialog.title': 'Chèn liên kết',
|
|
67
|
+
'editor.link.dialog.link': 'Liên kết',
|
|
68
|
+
'editor.link.dialog.text': 'Văn bản',
|
|
69
|
+
'editor.link.dialog.openInNewTab': 'Mở trong tab mới',
|
|
70
|
+
'editor.link.dialog.link.placeholder': 'Địa chỉ liên kết',
|
|
71
|
+
'editor.link.dialog.text.placeholder': 'Thêm mô tả',
|
|
72
|
+
'editor.link.dialog.button.apply': 'Áp dụng',
|
|
73
|
+
'editor.image.tooltip': 'Hình ảnh',
|
|
74
|
+
'editor.image.dragger.tooltip': 'Nhấp hoặc kéo hình ảnh đến khu vực để tải lên',
|
|
75
|
+
'editor.image.float.left.tooltip': 'Trôi sang trái',
|
|
76
|
+
'editor.image.float.none.tooltip': 'Trôi không',
|
|
77
|
+
'editor.image.float.right.tooltip': 'Trôi sang phải',
|
|
78
|
+
'editor.image.dialog.title': 'Thêm hình ảnh',
|
|
79
|
+
'editor.image.dialog.tab.url': 'Url',
|
|
80
|
+
'editor.image.dialog.tab.upload': 'Tải lên',
|
|
81
|
+
'editor.link.dialog.inline': 'Inline',
|
|
82
|
+
'editor.image.dialog.tab.uploadCrop': 'Tải lên & Cắt',
|
|
83
|
+
'editor.image.dialog.uploading': 'Đang tải lên',
|
|
84
|
+
'editor.image.dialog.form.link': 'Liên kết',
|
|
85
|
+
'editor.image.dialog.placeholder': 'Liên kết',
|
|
86
|
+
'editor.image.dialog.form.alt': 'Alt',
|
|
87
|
+
'editor.image.dialog.form.aspectRatio': 'Khóa tỷ lệ khung hình gốc',
|
|
88
|
+
'editor.image.dialog.form.file': 'Tệp',
|
|
89
|
+
'editor.image.dialog.button.apply': 'Áp dụng',
|
|
90
|
+
'editor.video.tooltip': 'Video',
|
|
91
|
+
'editor.video.dialog.tab.upload': 'Tải lên',
|
|
92
|
+
'editor.video.dialog.uploading': 'Đang tải lên',
|
|
93
|
+
'editor.video.dialog.title': 'Nhúng hoặc tải lên video',
|
|
94
|
+
'editor.video.dialog.link': 'Liên kết',
|
|
95
|
+
'editor.video.dialog.placeholder': 'Liên kết',
|
|
96
|
+
'editor.video.dialog.button.apply': 'Áp dụng',
|
|
97
|
+
'editor.table.tooltip': 'Bảng',
|
|
98
|
+
'editor.table.menu.insert_table': 'Chèn Bảng',
|
|
99
|
+
'editor.table.menu.insert_table.with_header_row': 'Có hàng tiêu đề',
|
|
100
|
+
'editor.table.menu.add_column_before': 'Thêm Cột Trước',
|
|
101
|
+
'editor.table.menu.add_column_after': 'Thêm Cột Sau',
|
|
102
|
+
'editor.table.menu.delete_column': 'Xóa Cột',
|
|
103
|
+
'editor.table.menu.add_row_before': 'Thêm Hàng Trước',
|
|
104
|
+
'editor.table.menu.add_row_after': 'Thêm Hàng Sau',
|
|
105
|
+
'editor.table.menu.delete_row': 'Xóa Hàng',
|
|
106
|
+
'editor.table.menu.merge_or_split_cells': 'Gộp Hoặc Tách Ô',
|
|
107
|
+
'editor.table.menu.delete_table': 'Xóa Bảng',
|
|
108
|
+
'editor.blockquote.tooltip': 'Blockquote',
|
|
109
|
+
'editor.horizontalrule.tooltip': 'Quy tắc ngang',
|
|
110
|
+
'editor.code.tooltip': 'Mã',
|
|
111
|
+
'editor.codeblock.tooltip': 'Khối mã',
|
|
112
|
+
'editor.clear.tooltip': 'Xóa định dạng',
|
|
113
|
+
'editor.undo.tooltip': 'Hoàn tác',
|
|
114
|
+
'editor.redo.tooltip': 'Làm lại',
|
|
115
|
+
'editor.fullscreen.tooltip.fullscreen': 'Toàn màn hình',
|
|
116
|
+
'editor.fullscreen.tooltip.exit': 'Thoát toàn màn hình',
|
|
117
|
+
'editor.imageUpload.cancel': 'Hủy',
|
|
118
|
+
'editor.imageUpload.crop': 'Cắt',
|
|
119
|
+
'editor.imageUpload.fileTypeNotSupported': 'Loại tệp không được hỗ trợ',
|
|
120
|
+
'editor.imageUpload.fileSizeTooBig': 'Kích thước tệp quá lớn, Kích thước tối đa là',
|
|
121
|
+
'editor.table.menu.insertColumnBefore': 'Chèn cột trước',
|
|
122
|
+
'editor.table.menu.insertColumnAfter': 'Chèn cột sau',
|
|
123
|
+
'editor.table.menu.deleteColumn': 'Xóa cột',
|
|
124
|
+
'editor.table.menu.insertRowAbove': 'Chèn hàng ở trên',
|
|
125
|
+
'editor.table.menu.insertRowBelow': 'Chèn hàng ở dưới',
|
|
126
|
+
'editor.table.menu.deleteRow': 'Xóa hàng',
|
|
127
|
+
'editor.table.menu.mergeCells': 'Gộp các ô',
|
|
128
|
+
'editor.table.menu.splitCells': 'Chia ô',
|
|
129
|
+
'editor.table.menu.deleteTable': 'Xóa bảng',
|
|
130
|
+
'editor.table.menu.setCellsBgColor': 'Màu nền ô',
|
|
131
|
+
'editor.emoji.tooltip': 'Biểu tượng',
|
|
132
|
+
'editor.iframe.tooltip': 'Iframe',
|
|
133
|
+
'editor.searchAndReplace.tooltip': 'Tìm kiếm và thay thế',
|
|
134
|
+
'editor.search.dialog.text': 'Tìm kiếm',
|
|
135
|
+
'editor.replace.dialog.text': 'Thay thế',
|
|
136
|
+
'editor.replaceAll.dialog.text': 'Thay thế tất cả',
|
|
137
|
+
'editor.previous.dialog.text': 'Trước',
|
|
138
|
+
'editor.next.dialog.text': 'Tiếp theo',
|
|
139
|
+
'no_result_found': 'Không tìm thấy kết quả',
|
|
140
|
+
'Smileys & People': 'Cười & Mọi người',
|
|
141
|
+
'Animals & Nature': 'Động vật & Thiên nhiên',
|
|
142
|
+
'Food & Drink': 'Thức ăn & Đồ uống',
|
|
143
|
+
'Activity': 'Hoạt động',
|
|
144
|
+
'Travel & Places': 'Du lịch & Địa điểm',
|
|
145
|
+
'Object': 'Vật',
|
|
146
|
+
'Symbol': 'Ký hiệu',
|
|
147
|
+
'Flags': 'Cờ',
|
|
148
|
+
'Frequently used': 'Thường xuyên sử dụng',
|
|
149
|
+
'editor.formula.dialog.text': 'Công thức',
|
|
150
|
+
'editor.katex.tooltip': 'Công thức toán học',
|
|
151
|
+
'editor.exportPdf.tooltip': 'Xuất PDF',
|
|
152
|
+
'editor.exportWord.tooltip': 'Xuất Word',
|
|
153
|
+
'editor.importWord.tooltip': 'Nhập Word',
|
|
154
|
+
'editor.importWord.limitSize': 'Kích thước tệp không được vượt quá',
|
|
155
|
+
'editor.importWord.converting': 'Đang chuyển đổi tài liệu Word, vui lòng đợi...',
|
|
156
|
+
'editor.importWord.convertError': 'Lỗi khi phân tích tài liệu Word',
|
|
157
|
+
'editor.importWord.importError': 'Lỗi khi nhập tài liệu Word',
|
|
158
|
+
'editor.textDirection.tooltip': 'Hướng văn bản',
|
|
159
|
+
'editor.textDirection.auto.tooltip': 'Tự động',
|
|
160
|
+
'editor.textDirection.ltr.tooltip': 'Trái sang Phải',
|
|
161
|
+
'editor.textDirection.rtl.tooltip': 'Phải sang Trái',
|
|
162
|
+
'editor.attachment.tooltip': 'Đính kèm',
|
|
163
|
+
'editor.attachment.uploading': 'Đang tải lên',
|
|
164
|
+
'editor.attachment.please_upload': 'Vui lòng tải lên tệp',
|
|
165
|
+
'editor.imageGif.tooltip': 'Gif',
|
|
166
|
+
'editor.replace.caseSensitive': 'Phân biệt chữ hoa chữ thường',
|
|
167
|
+
'editor.mermaid.tooltip': 'Mermaid',
|
|
168
|
+
'editor.twitter.tooltip': 'Twitter',
|
|
169
|
+
'editor.tooltip.flipX': 'Lật Ngang',
|
|
170
|
+
'editor.tooltip.flipY': 'Lật Dọc',
|
|
171
|
+
};
|
|
172
|
+
|
|
173
|
+
export default locale;
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
const locale = {
|
|
2
|
+
'editor.remove': '移除',
|
|
3
|
+
'editor.copy': '复制',
|
|
4
|
+
'editor.words': '字数',
|
|
5
|
+
'editor.characters': '字符数',
|
|
6
|
+
'editor.default': '默认',
|
|
7
|
+
'editor.recent': '最近使用',
|
|
8
|
+
'editor.nofill': '无填充',
|
|
9
|
+
'editor.format': '格式刷',
|
|
10
|
+
'editor.delete': '删除',
|
|
11
|
+
'editor.edit': '编辑',
|
|
12
|
+
'editor.settings': '设置',
|
|
13
|
+
'editor.table_of_content': '目录',
|
|
14
|
+
'editor.draghandle.tooltip': '修改',
|
|
15
|
+
'editor.copyToClipboard': '复制到剪贴板',
|
|
16
|
+
'editor.slash': '按 \'/\' 使用命令',
|
|
17
|
+
'editor.slash.empty': '无结果',
|
|
18
|
+
'editor.slash.format': '格式',
|
|
19
|
+
'editor.slash.insert': '插入',
|
|
20
|
+
'editor.slash.embed': '嵌入服务',
|
|
21
|
+
'editor.content': '请输入内容',
|
|
22
|
+
'editor.fontFamily.tooltip': '字体',
|
|
23
|
+
'editor.fontFamily.default.tooltip': '默认',
|
|
24
|
+
'editor.moremark': '更多文本样式',
|
|
25
|
+
'editor.size.small.tooltip': '小',
|
|
26
|
+
'editor.size.medium.tooltip': '中',
|
|
27
|
+
'editor.size.large.tooltip': '封面',
|
|
28
|
+
'editor.bold.tooltip': '粗体',
|
|
29
|
+
'editor.italic.tooltip': '斜体',
|
|
30
|
+
'editor.underline.tooltip': '下划线',
|
|
31
|
+
'editor.strike.tooltip': '删除线',
|
|
32
|
+
'editor.color.tooltip': '颜色',
|
|
33
|
+
'editor.color.more': '更多颜色',
|
|
34
|
+
'editor.highlight.tooltip': '高亮',
|
|
35
|
+
'editor.lineheight.tooltip': '行高',
|
|
36
|
+
'editor.heading.tooltip': '标题',
|
|
37
|
+
'editor.heading.h1.tooltip': '标题 1',
|
|
38
|
+
'editor.heading.h2.tooltip': '标题 2',
|
|
39
|
+
'editor.heading.h3.tooltip': '标题 3',
|
|
40
|
+
'editor.heading.h4.tooltip': '标题 4',
|
|
41
|
+
'editor.heading.h5.tooltip': '标题 5',
|
|
42
|
+
'editor.heading.h6.tooltip': '标题 6',
|
|
43
|
+
'editor.paragraph.tooltip': '段落',
|
|
44
|
+
'editor.textalign.tooltip': '对齐',
|
|
45
|
+
'editor.textalign.left.tooltip': '左对齐',
|
|
46
|
+
'editor.textalign.center.tooltip': '居中',
|
|
47
|
+
'editor.textalign.right.tooltip': '右对齐',
|
|
48
|
+
'editor.textalign.justify.tooltip': '两端对齐',
|
|
49
|
+
'editor.indent': '缩进',
|
|
50
|
+
'editor.indent.indent': '增加缩进',
|
|
51
|
+
'editor.indent.outdent': '减少缩进',
|
|
52
|
+
'editor.fontSize.tooltip': '字号',
|
|
53
|
+
'editor.fontSize.default.tooltip': '默认',
|
|
54
|
+
'editor.superscript.tooltip': '上标',
|
|
55
|
+
'editor.subscript.tooltip': '下标',
|
|
56
|
+
'editor.bulletlist.tooltip': '无序列表',
|
|
57
|
+
'editor.orderedlist.tooltip': '有序列表',
|
|
58
|
+
'editor.tasklist.tooltip': '任务列表',
|
|
59
|
+
'editor.indent.tooltip': '缩进',
|
|
60
|
+
'editor.outdent.tooltip': '减少缩进',
|
|
61
|
+
'editor.columns.tooltip': '列',
|
|
62
|
+
'editor.link.tooltip': '链接',
|
|
63
|
+
'editor.link.unlink.tooltip': '取消链接',
|
|
64
|
+
'editor.link.open.tooltip': '打开链接',
|
|
65
|
+
'editor.link.edit.tooltip': '编辑链接',
|
|
66
|
+
'editor.link.dialog.title': '插入链接',
|
|
67
|
+
'editor.link.dialog.link': '链接',
|
|
68
|
+
'editor.link.dialog.text': '文本',
|
|
69
|
+
'editor.link.dialog.openInNewTab': '在新标签页中打开',
|
|
70
|
+
'editor.link.dialog.link.placeholder': '链接地址',
|
|
71
|
+
'editor.link.dialog.text.placeholder': '添加描述',
|
|
72
|
+
'editor.link.dialog.button.apply': '应用',
|
|
73
|
+
'editor.image.tooltip': '图片',
|
|
74
|
+
'editor.image.dragger.tooltip': '点击或拖拽图片到此区域上传',
|
|
75
|
+
'editor.image.float.left.tooltip': '左浮动',
|
|
76
|
+
'editor.image.float.none.tooltip': '无浮动',
|
|
77
|
+
'editor.image.float.right.tooltip': '右浮动',
|
|
78
|
+
'editor.image.dialog.title': '添加图片',
|
|
79
|
+
'editor.image.dialog.tab.url': '链接',
|
|
80
|
+
'editor.image.dialog.tab.upload': '上传',
|
|
81
|
+
'editor.link.dialog.inline': '行内嵌入图片',
|
|
82
|
+
'editor.image.dialog.uploading': '上传中',
|
|
83
|
+
'editor.image.dialog.form.link': '链接',
|
|
84
|
+
'editor.image.dialog.placeholder': '链接',
|
|
85
|
+
'editor.image.dialog.form.alt': '替代文本',
|
|
86
|
+
'editor.image.dialog.form.aspectRatio': '锁定原始宽高比',
|
|
87
|
+
'editor.image.dialog.form.file': '文件',
|
|
88
|
+
'editor.image.dialog.button.apply': '应用',
|
|
89
|
+
'editor.video.tooltip': '视频',
|
|
90
|
+
'editor.video.dialog.tab.upload': '上传',
|
|
91
|
+
'editor.image.dialog.tab.uploadCrop': '上传并裁剪',
|
|
92
|
+
'editor.video.dialog.uploading': '上传中',
|
|
93
|
+
'editor.video.dialog.title': '嵌入或上传视频',
|
|
94
|
+
'editor.video.dialog.link': '链接',
|
|
95
|
+
'editor.video.dialog.placeholder': '链接',
|
|
96
|
+
'editor.video.dialog.button.apply': '应用',
|
|
97
|
+
'editor.table.tooltip': '表格',
|
|
98
|
+
'editor.table.menu.insert_table': '插入表格',
|
|
99
|
+
'editor.table.menu.insert_table.with_header_row': '带标题行',
|
|
100
|
+
'editor.table.menu.add_column_before': '在前面插入列',
|
|
101
|
+
'editor.table.menu.add_column_after': '在后面插入列',
|
|
102
|
+
'editor.table.menu.delete_column': '删除列',
|
|
103
|
+
'editor.table.menu.add_row_before': '在上方插入行',
|
|
104
|
+
'editor.table.menu.add_row_after': '在下方插入行',
|
|
105
|
+
'editor.table.menu.delete_row': '删除行',
|
|
106
|
+
'editor.table.menu.merge_or_split_cells': '合并或拆分单元格',
|
|
107
|
+
'editor.table.menu.delete_table': '删除表格',
|
|
108
|
+
'editor.blockquote.tooltip': '引用',
|
|
109
|
+
'editor.horizontalrule.tooltip': '水平线',
|
|
110
|
+
'editor.code.tooltip': '代码',
|
|
111
|
+
'editor.codeblock.tooltip': '代码块',
|
|
112
|
+
'editor.clear.tooltip': '清除格式',
|
|
113
|
+
'editor.undo.tooltip': '撤销',
|
|
114
|
+
'editor.redo.tooltip': '重做',
|
|
115
|
+
'editor.fullscreen.tooltip.fullscreen': '全屏',
|
|
116
|
+
'editor.fullscreen.tooltip.exit': '退出全屏',
|
|
117
|
+
'editor.imageUpload.cancel': '取消',
|
|
118
|
+
'editor.imageUpload.crop': '裁剪',
|
|
119
|
+
'editor.imageUpload.fileTypeNotSupported': '不支持的文件类型',
|
|
120
|
+
'editor.imageUpload.fileSizeTooBig': '文件大小超出限制,最大大小为',
|
|
121
|
+
'editor.table.menu.insertColumnBefore': '在前面插入列',
|
|
122
|
+
'editor.table.menu.insertColumnAfter': '在后面插入列',
|
|
123
|
+
'editor.table.menu.deleteColumn': '删除列',
|
|
124
|
+
'editor.table.menu.insertRowAbove': '在上方插入行',
|
|
125
|
+
'editor.table.menu.insertRowBelow': '在下方插入行',
|
|
126
|
+
'editor.table.menu.deleteRow': '删除行',
|
|
127
|
+
'editor.table.menu.mergeCells': '合并单元格',
|
|
128
|
+
'editor.table.menu.splitCells': '拆分单元格',
|
|
129
|
+
'editor.table.menu.deleteTable': '删除表格',
|
|
130
|
+
'editor.table.menu.setCellsBgColor': '设置单元格背景色',
|
|
131
|
+
'editor.emoji.tooltip': '表情',
|
|
132
|
+
'editor.iframe.tooltip': '内嵌框架',
|
|
133
|
+
'editor.searchAndReplace.tooltip': '搜索和替换',
|
|
134
|
+
'editor.search.dialog.text': '搜索',
|
|
135
|
+
'editor.replace.dialog.text': '替换',
|
|
136
|
+
'editor.replaceAll.dialog.text': '全部替换',
|
|
137
|
+
'editor.previous.dialog.text': '上一个',
|
|
138
|
+
'editor.next.dialog.text': '下一个',
|
|
139
|
+
'no_result_found': '未找到结果',
|
|
140
|
+
'Smileys & People': '笑脸和人',
|
|
141
|
+
'Animals & Nature': '动物和自然',
|
|
142
|
+
'Food & Drink': '食物和饮料',
|
|
143
|
+
'Activity': '活动',
|
|
144
|
+
'Travel & Places': '旅行和地点',
|
|
145
|
+
'Object': '物体',
|
|
146
|
+
'Symbol': '符号',
|
|
147
|
+
'Flags': '旗帜',
|
|
148
|
+
'Frequently used': '常用',
|
|
149
|
+
'editor.formula.dialog.text': '公式',
|
|
150
|
+
'editor.katex.tooltip': '数学公式',
|
|
151
|
+
'editor.exportPdf.tooltip': '导出 PDF',
|
|
152
|
+
'editor.exportWord.tooltip': '导出 Word',
|
|
153
|
+
'editor.importWord.tooltip': '导入 Word',
|
|
154
|
+
'editor.importWord.limitSize': '文件大小不能超过',
|
|
155
|
+
'editor.importWord.converting': '正在转换 Word 文档,请稍后...',
|
|
156
|
+
'editor.importWord.convertError': '解析 Word 文档出错',
|
|
157
|
+
'editor.importWord.importError': '导入 Word 文档出错',
|
|
158
|
+
'editor.textDirection.tooltip': '文本方向',
|
|
159
|
+
'editor.textDirection.auto.tooltip': '自动',
|
|
160
|
+
'editor.textDirection.ltr.tooltip': '从左到右',
|
|
161
|
+
'editor.textDirection.rtl.tooltip': '从右到左',
|
|
162
|
+
'editor.attachment.tooltip': '附件',
|
|
163
|
+
'editor.attachment.uploading': '上传中',
|
|
164
|
+
'editor.attachment.please_upload': '请上传文件',
|
|
165
|
+
'editor.imageGif.tooltip': 'Gif',
|
|
166
|
+
'editor.replace.caseSensitive': '区分大小写',
|
|
167
|
+
'editor.mermaid.tooltip': 'Mermaid',
|
|
168
|
+
'editor.twitter.tooltip': 'Twitter',
|
|
169
|
+
'editor.tooltip.flipX': '水平翻转',
|
|
170
|
+
'editor.tooltip.flipY': '垂直翻转',
|
|
171
|
+
};
|
|
172
|
+
|
|
173
|
+
export default locale;
|