adtec-core-package 3.0.0 → 3.0.1
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/auto-imports.d.ts +299 -0
- package/package.json +94 -49
- package/prebuilt/umo-editor/favicon.ico +0 -0
- package/prebuilt/umo-editor/umo-editor.css +1 -0
- package/prebuilt/umo-editor/umo-editor.js +85998 -0
- package/prebuilt/umo-editor/umo-editor.js.map +1 -0
- package/scripts/build-umo.mjs +47 -0
- package/scripts/generate-umo-entry.mjs +81 -0
- package/scripts/inject-umo-composable-imports.mjs +66 -0
- package/scripts/patch-es-drager-vue35.mjs +68 -0
- package/scripts/patch-tiptap-vue3.mjs +117 -0
- package/scripts/prepare-umo-source.mjs +122 -0
- package/src/components/RichTextEditor/RichTextEditor.vue +566 -398
- package/src/components/RichTextEditor/installUmoEditorApp.ts +31 -0
- package/src/components/RichTextEditor/richTextHtmlUtils.ts +151 -17
- package/src/components/RichTextEditor/umo-editor.d.ts +9 -0
- package/src/components/editor-main/src/assets/icons/align-center.svg +1 -0
- package/src/components/editor-main/src/assets/icons/align-distributed.svg +1 -0
- package/src/components/editor-main/src/assets/icons/align-justify.svg +1 -0
- package/src/components/editor-main/src/assets/icons/align-left.svg +1 -0
- package/src/components/editor-main/src/assets/icons/align-right.svg +1 -0
- package/src/components/editor-main/src/assets/icons/arrow-down.svg +1 -0
- package/src/components/editor-main/src/assets/icons/audio.svg +1 -0
- package/src/components/editor-main/src/assets/icons/auto-width.svg +1 -0
- package/src/components/editor-main/src/assets/icons/background-color.svg +1 -0
- package/src/components/editor-main/src/assets/icons/barcode.svg +1 -0
- package/src/components/editor-main/src/assets/icons/block-add.svg +1 -0
- package/src/components/editor-main/src/assets/icons/block-menu.svg +1 -0
- package/src/components/editor-main/src/assets/icons/bold.svg +1 -0
- package/src/components/editor-main/src/assets/icons/bookmark.svg +10 -0
- package/src/components/editor-main/src/assets/icons/border-none.svg +1 -0
- package/src/components/editor-main/src/assets/icons/border.svg +1 -0
- package/src/components/editor-main/src/assets/icons/break-marks.svg +1 -0
- package/src/components/editor-main/src/assets/icons/bullet-list-2.svg +1 -0
- package/src/components/editor-main/src/assets/icons/bullet-list-circle.svg +1 -0
- package/src/components/editor-main/src/assets/icons/bullet-list-disc.svg +1 -0
- package/src/components/editor-main/src/assets/icons/bullet-list-square.svg +1 -0
- package/src/components/editor-main/src/assets/icons/bullet-list.svg +1 -0
- package/src/components/editor-main/src/assets/icons/callout.svg +1 -0
- package/src/components/editor-main/src/assets/icons/check.svg +1 -0
- package/src/components/editor-main/src/assets/icons/checkbox.svg +1 -0
- package/src/components/editor-main/src/assets/icons/chinese-case.svg +1 -0
- package/src/components/editor-main/src/assets/icons/clear-cache.svg +1 -0
- package/src/components/editor-main/src/assets/icons/clear-format.svg +1 -0
- package/src/components/editor-main/src/assets/icons/clickable.svg +1 -0
- package/src/components/editor-main/src/assets/icons/close.svg +1 -0
- package/src/components/editor-main/src/assets/icons/code-block.svg +1 -0
- package/src/components/editor-main/src/assets/icons/code-line-number.svg +1 -0
- package/src/components/editor-main/src/assets/icons/code-word-wrap.svg +1 -0
- package/src/components/editor-main/src/assets/icons/code.svg +1 -0
- package/src/components/editor-main/src/assets/icons/color.svg +1 -0
- package/src/components/editor-main/src/assets/icons/columns.svg +1 -0
- package/src/components/editor-main/src/assets/icons/copy.svg +1 -0
- package/src/components/editor-main/src/assets/icons/copyright.svg +1 -0
- package/src/components/editor-main/src/assets/icons/date.svg +1 -0
- package/src/components/editor-main/src/assets/icons/details.svg +1 -0
- package/src/components/editor-main/src/assets/icons/diagrams.svg +1 -0
- package/src/components/editor-main/src/assets/icons/download.svg +1 -0
- package/src/components/editor-main/src/assets/icons/echarts.svg +1 -0
- package/src/components/editor-main/src/assets/icons/edit.svg +1 -0
- package/src/components/editor-main/src/assets/icons/embed.svg +1 -0
- package/src/components/editor-main/src/assets/icons/emoji.svg +1 -0
- package/src/components/editor-main/src/assets/icons/equal-proportion.svg +1 -0
- package/src/components/editor-main/src/assets/icons/exit.svg +1 -0
- package/src/components/editor-main/src/assets/icons/expand-down.svg +1 -0
- package/src/components/editor-main/src/assets/icons/file-view.svg +1 -0
- package/src/components/editor-main/src/assets/icons/file.svg +1 -0
- package/src/components/editor-main/src/assets/icons/font-size-decrease.svg +1 -0
- package/src/components/editor-main/src/assets/icons/font-size-increase.svg +1 -0
- package/src/components/editor-main/src/assets/icons/footnote.svg +1 -0
- package/src/components/editor-main/src/assets/icons/format-painter.svg +1 -0
- package/src/components/editor-main/src/assets/icons/format.svg +1 -0
- package/src/components/editor-main/src/assets/icons/full-screen-exit.svg +1 -0
- package/src/components/editor-main/src/assets/icons/full-screen.svg +1 -0
- package/src/components/editor-main/src/assets/icons/hand-drawn.svg +1 -0
- package/src/components/editor-main/src/assets/icons/hard-break.svg +1 -0
- package/src/components/editor-main/src/assets/icons/heading.svg +1 -0
- package/src/components/editor-main/src/assets/icons/help.svg +1 -0
- package/src/components/editor-main/src/assets/icons/hide-toolbar.svg +1 -0
- package/src/components/editor-main/src/assets/icons/highlight.svg +1 -0
- package/src/components/editor-main/src/assets/icons/hr.svg +1 -0
- package/src/components/editor-main/src/assets/icons/html5.svg +1 -0
- package/src/components/editor-main/src/assets/icons/image-draggable.svg +1 -0
- package/src/components/editor-main/src/assets/icons/image-failed.svg +1 -0
- package/src/components/editor-main/src/assets/icons/image-flip.svg +1 -0
- package/src/components/editor-main/src/assets/icons/image-inline.svg +1 -0
- package/src/components/editor-main/src/assets/icons/image-preview.svg +1 -0
- package/src/components/editor-main/src/assets/icons/image-remove-background.svg +1 -0
- package/src/components/editor-main/src/assets/icons/image-reset.svg +1 -0
- package/src/components/editor-main/src/assets/icons/image-rotate.svg +1 -0
- package/src/components/editor-main/src/assets/icons/image.svg +1 -0
- package/src/components/editor-main/src/assets/icons/indent.svg +1 -0
- package/src/components/editor-main/src/assets/icons/italic.svg +1 -0
- package/src/components/editor-main/src/assets/icons/laser-pointer.svg +1 -0
- package/src/components/editor-main/src/assets/icons/layout-page.svg +1 -0
- package/src/components/editor-main/src/assets/icons/layout-web.svg +1 -0
- package/src/components/editor-main/src/assets/icons/letter-spacing.svg +1 -0
- package/src/components/editor-main/src/assets/icons/line-height.svg +1 -0
- package/src/components/editor-main/src/assets/icons/line-number.svg +1 -0
- package/src/components/editor-main/src/assets/icons/link.svg +1 -0
- package/src/components/editor-main/src/assets/icons/loading.svg +1 -0
- package/src/components/editor-main/src/assets/icons/locale.svg +1 -0
- package/src/components/editor-main/src/assets/icons/margin.svg +1 -0
- package/src/components/editor-main/src/assets/icons/markdown.svg +1 -0
- package/src/components/editor-main/src/assets/icons/math.svg +1 -0
- package/src/components/editor-main/src/assets/icons/mention.svg +1 -0
- package/src/components/editor-main/src/assets/icons/menu.svg +1 -0
- package/src/components/editor-main/src/assets/icons/mermaid.svg +1 -0
- package/src/components/editor-main/src/assets/icons/mind-map.svg +1 -0
- package/src/components/editor-main/src/assets/icons/minus.svg +1 -0
- package/src/components/editor-main/src/assets/icons/new-window.svg +1 -0
- package/src/components/editor-main/src/assets/icons/node-add.svg +1 -0
- package/src/components/editor-main/src/assets/icons/node-clear-format.svg +1 -0
- package/src/components/editor-main/src/assets/icons/node-copy.svg +1 -0
- package/src/components/editor-main/src/assets/icons/node-cut.svg +2 -0
- package/src/components/editor-main/src/assets/icons/node-delete-2.svg +1 -0
- package/src/components/editor-main/src/assets/icons/node-delete.svg +1 -0
- package/src/components/editor-main/src/assets/icons/node-duplicate.svg +1 -0
- package/src/components/editor-main/src/assets/icons/node-switch.svg +1 -0
- package/src/components/editor-main/src/assets/icons/ordered-list-2.svg +1 -0
- package/src/components/editor-main/src/assets/icons/ordered-list-decimal-leading-zero.svg +1 -0
- package/src/components/editor-main/src/assets/icons/ordered-list-decimal.svg +1 -0
- package/src/components/editor-main/src/assets/icons/ordered-list-lower-latin.svg +1 -0
- package/src/components/editor-main/src/assets/icons/ordered-list-lower-roman.svg +1 -0
- package/src/components/editor-main/src/assets/icons/ordered-list-simp-chinese-formal.svg +12 -0
- package/src/components/editor-main/src/assets/icons/ordered-list-trad-chinese-informal.svg +12 -0
- package/src/components/editor-main/src/assets/icons/ordered-list-upper-latin.svg +1 -0
- package/src/components/editor-main/src/assets/icons/ordered-list-upper-roman.svg +1 -0
- package/src/components/editor-main/src/assets/icons/ordered-list.svg +1 -0
- package/src/components/editor-main/src/assets/icons/outdent.svg +1 -0
- package/src/components/editor-main/src/assets/icons/page-background.svg +1 -0
- package/src/components/editor-main/src/assets/icons/page-break.svg +1 -0
- package/src/components/editor-main/src/assets/icons/page-footer.svg +1 -0
- package/src/components/editor-main/src/assets/icons/page-header.svg +1 -0
- package/src/components/editor-main/src/assets/icons/page-margin.svg +1 -0
- package/src/components/editor-main/src/assets/icons/page-orientation.svg +1 -0
- package/src/components/editor-main/src/assets/icons/page-size.svg +1 -0
- package/src/components/editor-main/src/assets/icons/page.svg +1 -0
- package/src/components/editor-main/src/assets/icons/palette-color.svg +1 -0
- package/src/components/editor-main/src/assets/icons/paragraph.svg +1 -0
- package/src/components/editor-main/src/assets/icons/pdf.svg +1 -0
- package/src/components/editor-main/src/assets/icons/plus.svg +1 -0
- package/src/components/editor-main/src/assets/icons/preview.svg +1 -0
- package/src/components/editor-main/src/assets/icons/print.svg +1 -0
- package/src/components/editor-main/src/assets/icons/qrcode.svg +1 -0
- package/src/components/editor-main/src/assets/icons/quote.svg +1 -0
- package/src/components/editor-main/src/assets/icons/redo.svg +1 -0
- package/src/components/editor-main/src/assets/icons/register.js +47 -0
- package/src/components/editor-main/src/assets/icons/reload.svg +1 -0
- package/src/components/editor-main/src/assets/icons/remove.svg +1 -0
- package/src/components/editor-main/src/assets/icons/reply.svg +1 -0
- package/src/components/editor-main/src/assets/icons/search-replace.svg +1 -0
- package/src/components/editor-main/src/assets/icons/select-all.svg +1 -0
- package/src/components/editor-main/src/assets/icons/selected.svg +1 -0
- package/src/components/editor-main/src/assets/icons/setting.svg +1 -0
- package/src/components/editor-main/src/assets/icons/share.svg +1 -0
- package/src/components/editor-main/src/assets/icons/shortcut.svg +1 -0
- package/src/components/editor-main/src/assets/icons/signature.svg +1 -0
- package/src/components/editor-main/src/assets/icons/skin.svg +1 -0
- package/src/components/editor-main/src/assets/icons/spellcheck.svg +1 -0
- package/src/components/editor-main/src/assets/icons/strike.svg +1 -0
- package/src/components/editor-main/src/assets/icons/subscript.svg +1 -0
- package/src/components/editor-main/src/assets/icons/superscript.svg +1 -0
- package/src/components/editor-main/src/assets/icons/symbol.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-add-column-after.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-add-column-before.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-add-row-after.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-add-row-before.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-cells-align.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-cells-background.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-delete-column.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-delete-row.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-delete.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-fix.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-header-cell.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-header-column.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-header-row.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-merge-cell.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-next-cell.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-previous-cell.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table-split-cell.svg +1 -0
- package/src/components/editor-main/src/assets/icons/table.svg +1 -0
- package/src/components/editor-main/src/assets/icons/tag.svg +1 -0
- package/src/components/editor-main/src/assets/icons/task-list-2.svg +1 -0
- package/src/components/editor-main/src/assets/icons/task-list.svg +1 -0
- package/src/components/editor-main/src/assets/icons/template.svg +1 -0
- package/src/components/editor-main/src/assets/icons/text-box.svg +1 -0
- package/src/components/editor-main/src/assets/icons/text.svg +1 -0
- package/src/components/editor-main/src/assets/icons/theme.svg +1 -0
- package/src/components/editor-main/src/assets/icons/time.svg +1 -0
- package/src/components/editor-main/src/assets/icons/toc.svg +1 -0
- package/src/components/editor-main/src/assets/icons/toolbar-classic.svg +1 -0
- package/src/components/editor-main/src/assets/icons/toolbar-ribbon.svg +1 -0
- package/src/components/editor-main/src/assets/icons/toolbar-source.svg +1 -0
- package/src/components/editor-main/src/assets/icons/underline.svg +1 -0
- package/src/components/editor-main/src/assets/icons/undo.svg +1 -0
- package/src/components/editor-main/src/assets/icons/unlink.svg +1 -0
- package/src/components/editor-main/src/assets/icons/video.svg +1 -0
- package/src/components/editor-main/src/assets/icons/view.svg +1 -0
- package/src/components/editor-main/src/assets/icons/watermark.svg +1 -0
- package/src/components/editor-main/src/assets/icons/web-page.svg +1 -0
- package/src/components/editor-main/src/assets/icons/word-wrap.svg +1 -0
- package/src/components/editor-main/src/assets/icons/word.svg +1 -0
- package/src/components/editor-main/src/assets/icons/writing-mode.svg +1 -0
- package/src/components/editor-main/src/assets/icons/zoom-1.svg +1 -0
- package/src/components/editor-main/src/assets/icons/zoom-auto.svg +1 -0
- package/src/components/editor-main/src/assets/icons/zoom.svg +1 -0
- package/src/components/editor-main/src/assets/images/avatar.svg +1 -0
- package/src/components/editor-main/src/assets/images/format-painter.svg +1 -0
- package/src/components/editor-main/src/assets/images/laser-pointer.svg +1 -0
- package/src/components/editor-main/src/assets/images/logo.svg +1 -0
- package/src/components/editor-main/src/assets/images/watermark-compact.png +0 -0
- package/src/components/editor-main/src/assets/images/watermark-spacious.png +0 -0
- package/src/components/editor-main/src/assets/styles/_mixins.less +150 -0
- package/src/components/editor-main/src/assets/styles/_variables.less +97 -0
- package/src/components/editor-main/src/assets/styles/drager.less +123 -0
- package/src/components/editor-main/src/assets/styles/editor.less +917 -0
- package/src/components/editor-main/src/assets/styles/index.less +19 -0
- package/src/components/editor-main/src/assets/styles/plyr.less +26 -0
- package/src/components/editor-main/src/assets/styles/tdesign.less +341 -0
- package/src/components/editor-main/src/components/container/page.vue +392 -0
- package/src/components/editor-main/src/components/container/print.vue +191 -0
- package/src/components/editor-main/src/components/container/search-replace.vue +264 -0
- package/src/components/editor-main/src/components/container/toc.vue +260 -0
- package/src/components/editor-main/src/components/editor/index.vue +213 -0
- package/src/components/editor-main/src/components/icon.vue +43 -0
- package/src/components/editor-main/src/components/index.js +22 -0
- package/src/components/editor-main/src/components/index.vue +1396 -0
- package/src/components/editor-main/src/components/menus/block/common.vue +127 -0
- package/src/components/editor-main/src/components/menus/block/index.vue +217 -0
- package/src/components/editor-main/src/components/menus/block/node.vue +183 -0
- package/src/components/editor-main/src/components/menus/bubble/callout/background.vue +39 -0
- package/src/components/editor-main/src/components/menus/bubble/callout/builtin.vue +90 -0
- package/src/components/editor-main/src/components/menus/bubble/callout/emoji-remove.vue +28 -0
- package/src/components/editor-main/src/components/menus/bubble/file/download.vue +30 -0
- package/src/components/editor-main/src/components/menus/bubble/file/width.vue +22 -0
- package/src/components/editor-main/src/components/menus/bubble/image/convert.vue +63 -0
- package/src/components/editor-main/src/components/menus/bubble/image/edit.vue +32 -0
- package/src/components/editor-main/src/components/menus/bubble/image/open.vue +27 -0
- package/src/components/editor-main/src/components/menus/bubble/image/preview.vue +24 -0
- package/src/components/editor-main/src/components/menus/bubble/image/proportion.vue +34 -0
- package/src/components/editor-main/src/components/menus/bubble/index.vue +55 -0
- package/src/components/editor-main/src/components/menus/bubble/link/copy.vue +29 -0
- package/src/components/editor-main/src/components/menus/bubble/link/open.vue +27 -0
- package/src/components/editor-main/src/components/menus/bubble/link/unlink.vue +19 -0
- package/src/components/editor-main/src/components/menus/bubble/math.vue +36 -0
- package/src/components/editor-main/src/components/menus/bubble/menus.vue +209 -0
- package/src/components/editor-main/src/components/menus/bubble/node/delete.vue +15 -0
- package/src/components/editor-main/src/components/menus/bubble/node/duplicate.vue +40 -0
- package/src/components/editor-main/src/components/menus/bubble/node/tofile.vue +31 -0
- package/src/components/editor-main/src/components/menus/bubble/tag/background.vue +36 -0
- package/src/components/editor-main/src/components/menus/bubble/tag/builtin.vue +88 -0
- package/src/components/editor-main/src/components/menus/bubble/tag/color.vue +36 -0
- package/src/components/editor-main/src/components/menus/bubble/tag/delete.vue +14 -0
- package/src/components/editor-main/src/components/menus/bubble/tag/input.vue +63 -0
- package/src/components/editor-main/src/components/menus/bubble/text-box/background.vue +37 -0
- package/src/components/editor-main/src/components/menus/bubble/text-box/border.vue +186 -0
- package/src/components/editor-main/src/components/menus/bubble/text-box/writing-mode.vue +42 -0
- package/src/components/editor-main/src/components/menus/bubble/webpage/clickable.vue +31 -0
- package/src/components/editor-main/src/components/menus/bubble/webpage/open.vue +29 -0
- package/src/components/editor-main/src/components/menus/button.vue +630 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/align-center.vue +33 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/align-distributed.vue +18 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/align-dropdown.vue +56 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/align-justify.vue +18 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/align-left.vue +32 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/align-right.vue +33 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/background-color.vue +72 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/bold.vue +18 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/bullet-list.vue +110 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/clear-format.vue +15 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/code.vue +18 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/color.vue +75 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/font-family.vue +528 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/font-size.vue +163 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/format-painter.vue +27 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/heading.vue +322 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/highlight.vue +127 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/indent.vue +17 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/italic.vue +18 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/letter-spacing.vue +113 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/line-height.vue +40 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/margin.vue +118 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/markdown.vue +50 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/ordered-list.vue +184 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/outdent.vue +17 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/print.vue +19 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/quote.vue +18 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/redo.vue +20 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/search-replace.vue +16 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/select-all.vue +16 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/strike.vue +18 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/subscript.vue +18 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/superscript.vue +18 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/task-list.vue +47 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/underline.vue +18 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/undo.vue +18 -0
- package/src/components/editor-main/src/components/menus/toolbar/base/word-wrap.vue +47 -0
- package/src/components/editor-main/src/components/menus/toolbar/export/embed.vue +67 -0
- package/src/components/editor-main/src/components/menus/toolbar/export/html.vue +27 -0
- package/src/components/editor-main/src/components/menus/toolbar/export/image.vue +66 -0
- package/src/components/editor-main/src/components/menus/toolbar/export/pdf.vue +8 -0
- package/src/components/editor-main/src/components/menus/toolbar/export/share.vue +63 -0
- package/src/components/editor-main/src/components/menus/toolbar/export/text.vue +32 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/audio.vue +23 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/bookmark.vue +206 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/callout.vue +15 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/chinese-date.vue +112 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/code-block.vue +16 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/columns.vue +97 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/details.vue +34 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/emoji.vue +103 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/file.vue +23 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/footnote.vue +15 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/hard-break.vue +16 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/hr.vue +141 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/image.vue +84 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/link.vue +121 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/mention.vue +15 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/option-box.vue +324 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/symbol.vue +88 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/tag.vue +15 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/template.vue +76 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/text-box.vue +15 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/toc.vue +15 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/video.vue +23 -0
- package/src/components/editor-main/src/components/menus/toolbar/insert/web-page.vue +173 -0
- package/src/components/editor-main/src/components/menus/toolbar/page/background.vue +138 -0
- package/src/components/editor-main/src/components/menus/toolbar/page/break-marks.vue +26 -0
- package/src/components/editor-main/src/components/menus/toolbar/page/break.vue +20 -0
- package/src/components/editor-main/src/components/menus/toolbar/page/footer.vue +15 -0
- package/src/components/editor-main/src/components/menus/toolbar/page/header.vue +15 -0
- package/src/components/editor-main/src/components/menus/toolbar/page/line-number.vue +16 -0
- package/src/components/editor-main/src/components/menus/toolbar/page/margin.vue +17 -0
- package/src/components/editor-main/src/components/menus/toolbar/page/orientation.vue +63 -0
- package/src/components/editor-main/src/components/menus/toolbar/page/size.vue +67 -0
- package/src/components/editor-main/src/components/menus/toolbar/page/watermark.vue +200 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/add-column-after.vue +20 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/add-column-before.vue +20 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/add-row-after.vue +20 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/add-row-before.vue +20 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/border-color.vue +35 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/cells-align.vue +41 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/cells-background.vue +32 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/delete-column.vue +44 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/delete-row.vue +44 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/delete.vue +40 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/fix.vue +17 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/insert.vue +137 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/merge-cells.vue +20 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/next-cell.vue +21 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/previous-cell.vue +21 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/split-cell.vue +20 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/toggle-header-cell.vue +20 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/toggle-header-column.vue +20 -0
- package/src/components/editor-main/src/components/menus/toolbar/table/toggle-header-row.vue +20 -0
- package/src/components/editor-main/src/components/menus/toolbar/tools/barcode.vue +441 -0
- package/src/components/editor-main/src/components/menus/toolbar/tools/chinese-case.vue +135 -0
- package/src/components/editor-main/src/components/menus/toolbar/tools/diagrams.vue +141 -0
- package/src/components/editor-main/src/components/menus/toolbar/tools/echarts.vue +718 -0
- package/src/components/editor-main/src/components/menus/toolbar/tools/math.vue +339 -0
- package/src/components/editor-main/src/components/menus/toolbar/tools/mermaid.vue +293 -0
- package/src/components/editor-main/src/components/menus/toolbar/tools/mind-map.vue +7 -0
- package/src/components/editor-main/src/components/menus/toolbar/tools/qrcode.vue +293 -0
- package/src/components/editor-main/src/components/menus/toolbar/tools/signature.vue +208 -0
- package/src/components/editor-main/src/components/menus/toolbar/view/fullscreen.vue +17 -0
- package/src/components/editor-main/src/components/menus/toolbar/view/locale.vue +40 -0
- package/src/components/editor-main/src/components/menus/toolbar/view/page.vue +16 -0
- package/src/components/editor-main/src/components/menus/toolbar/view/preview.vue +16 -0
- package/src/components/editor-main/src/components/menus/toolbar/view/skin.vue +43 -0
- package/src/components/editor-main/src/components/menus/toolbar/view/theme.vue +41 -0
- package/src/components/editor-main/src/components/menus/toolbar/view/toc.vue +15 -0
- package/src/components/editor-main/src/components/menus/toolbar/view/web.vue +16 -0
- package/src/components/editor-main/src/components/menus/toolbar/view/zoom-auto.vue +27 -0
- package/src/components/editor-main/src/components/menus/toolbar/view/zoom-original.vue +18 -0
- package/src/components/editor-main/src/components/menus/toolbar/view/zoom.vue +35 -0
- package/src/components/editor-main/src/components/modal.vue +22 -0
- package/src/components/editor-main/src/components/page-options.vue +392 -0
- package/src/components/editor-main/src/components/picker/color.vue +208 -0
- package/src/components/editor-main/src/components/statusbar/about.vue +37 -0
- package/src/components/editor-main/src/components/statusbar/countdown.vue +273 -0
- package/src/components/editor-main/src/components/statusbar/index.vue +753 -0
- package/src/components/editor-main/src/components/statusbar/shortcuts.vue +313 -0
- package/src/components/editor-main/src/components/toolbar/classic.vue +325 -0
- package/src/components/editor-main/src/components/toolbar/index.vue +369 -0
- package/src/components/editor-main/src/components/toolbar/ribbon.vue +398 -0
- package/src/components/editor-main/src/components/toolbar/scrollable.vue +205 -0
- package/src/components/editor-main/src/components/tooltip.vue +23 -0
- package/src/components/editor-main/src/composables/copy.js +24 -0
- package/src/components/editor-main/src/composables/dialog.js +25 -0
- package/src/components/editor-main/src/composables/hotkeys.js +14 -0
- package/src/components/editor-main/src/composables/i18n.js +19 -0
- package/src/components/editor-main/src/composables/popup.js +11 -0
- package/src/components/editor-main/src/composables/select.js +13 -0
- package/src/components/editor-main/src/composables/state.js +30 -0
- package/src/components/editor-main/src/composables/toolbarSelection.js +68 -0
- package/src/components/editor-main/src/extensions/audio/index.js +59 -0
- package/src/components/editor-main/src/extensions/audio/node-view.vue +141 -0
- package/src/components/editor-main/src/extensions/bookmark.js +110 -0
- package/src/components/editor-main/src/extensions/break-marks.js +19 -0
- package/src/components/editor-main/src/extensions/bullet-list.js +21 -0
- package/src/components/editor-main/src/extensions/callout/index.js +128 -0
- package/src/components/editor-main/src/extensions/callout/node-view.vue +130 -0
- package/src/components/editor-main/src/extensions/code-block/index.js +32 -0
- package/src/components/editor-main/src/extensions/code-block/node-view.vue +399 -0
- package/src/components/editor-main/src/extensions/columns/dom.js +142 -0
- package/src/components/editor-main/src/extensions/columns/index.js +77 -0
- package/src/components/editor-main/src/extensions/columns/keymap.js +62 -0
- package/src/components/editor-main/src/extensions/columns/resize.js +60 -0
- package/src/components/editor-main/src/extensions/columns/schema.js +47 -0
- package/src/components/editor-main/src/extensions/columns/state.js +26 -0
- package/src/components/editor-main/src/extensions/columns/utils.js +55 -0
- package/src/components/editor-main/src/extensions/datetime/index.js +55 -0
- package/src/components/editor-main/src/extensions/datetime/node-view.vue +116 -0
- package/src/components/editor-main/src/extensions/echarts/cal-service.js +142 -0
- package/src/components/editor-main/src/extensions/echarts/index.js +115 -0
- package/src/components/editor-main/src/extensions/echarts/node-view.vue +220 -0
- package/src/components/editor-main/src/extensions/file/index.js +254 -0
- package/src/components/editor-main/src/extensions/file/node-view.vue +333 -0
- package/src/components/editor-main/src/extensions/file-handler.js +93 -0
- package/src/components/editor-main/src/extensions/foonotes/footnote.js +152 -0
- package/src/components/editor-main/src/extensions/foonotes/footnotes.js +41 -0
- package/src/components/editor-main/src/extensions/foonotes/index.js +7 -0
- package/src/components/editor-main/src/extensions/foonotes/reference.js +211 -0
- package/src/components/editor-main/src/extensions/foonotes/rules.js +103 -0
- package/src/components/editor-main/src/extensions/foonotes/utils.js +171 -0
- package/src/components/editor-main/src/extensions/format-painter.js +104 -0
- package/src/components/editor-main/src/extensions/horizontal-rule.js +93 -0
- package/src/components/editor-main/src/extensions/iframe/index.js +54 -0
- package/src/components/editor-main/src/extensions/iframe/node-view.vue +106 -0
- package/src/components/editor-main/src/extensions/image/image-resizer.vue +349 -0
- package/src/components/editor-main/src/extensions/image/index.js +216 -0
- package/src/components/editor-main/src/extensions/image/node-view.vue +592 -0
- package/src/components/editor-main/src/extensions/indent.js +226 -0
- package/src/components/editor-main/src/extensions/index.js +341 -0
- package/src/components/editor-main/src/extensions/letter-spacing.js +66 -0
- package/src/components/editor-main/src/extensions/line-height.js +147 -0
- package/src/components/editor-main/src/extensions/margin.js +266 -0
- package/src/components/editor-main/src/extensions/mention/index.js +33 -0
- package/src/components/editor-main/src/extensions/mention/mentions.vue +180 -0
- package/src/components/editor-main/src/extensions/mention/suggestion.js +90 -0
- package/src/components/editor-main/src/extensions/node-align.js +164 -0
- package/src/components/editor-main/src/extensions/node-select.js +51 -0
- package/src/components/editor-main/src/extensions/office-paste/index.js +70 -0
- package/src/components/editor-main/src/extensions/office-paste/transform/bookmark.js +17 -0
- package/src/components/editor-main/src/extensions/office-paste/transform/excel.js +85 -0
- package/src/components/editor-main/src/extensions/office-paste/transform/html-classes.js +9 -0
- package/src/components/editor-main/src/extensions/office-paste/transform/line-number.js +10 -0
- package/src/components/editor-main/src/extensions/office-paste/transform/list.js +148 -0
- package/src/components/editor-main/src/extensions/office-paste/transform/style.js +24 -0
- package/src/components/editor-main/src/extensions/office-paste/utils.js +120 -0
- package/src/components/editor-main/src/extensions/option-box/index.js +77 -0
- package/src/components/editor-main/src/extensions/option-box/node-view.vue +194 -0
- package/src/components/editor-main/src/extensions/ordered-list.js +36 -0
- package/src/components/editor-main/src/extensions/page-break.js +42 -0
- package/src/components/editor-main/src/extensions/search-replace.js +304 -0
- package/src/components/editor-main/src/extensions/selection.js +38 -0
- package/src/components/editor-main/src/extensions/table.js +65 -0
- package/src/components/editor-main/src/extensions/tag/index.js +47 -0
- package/src/components/editor-main/src/extensions/tag/node-view.vue +51 -0
- package/src/components/editor-main/src/extensions/text-align.js +44 -0
- package/src/components/editor-main/src/extensions/text-box/index.js +78 -0
- package/src/components/editor-main/src/extensions/text-box/node-view.vue +141 -0
- package/src/components/editor-main/src/extensions/toc/index.js +48 -0
- package/src/components/editor-main/src/extensions/toc/node-view.vue +159 -0
- package/src/components/editor-main/src/extensions/type-writer.js +256 -0
- package/src/components/editor-main/src/extensions/video/index.js +65 -0
- package/src/components/editor-main/src/extensions/video/node-view.vue +211 -0
- package/src/components/editor-main/src/extensions/word-wrap.js +94 -0
- package/src/components/editor-main/src/i18n.js +15 -0
- package/src/components/editor-main/src/locales/bo.json +707 -0
- package/src/components/editor-main/src/locales/en-US.json +802 -0
- package/src/components/editor-main/src/locales/it-IT.json +721 -0
- package/src/components/editor-main/src/locales/ru-RU.json +779 -0
- package/src/components/editor-main/src/locales/zh-CN.json +804 -0
- package/src/components/editor-main/src/options/config/dicts.js +369 -0
- package/src/components/editor-main/src/options/config/index.js +203 -0
- package/src/components/editor-main/src/options/index.js +7 -0
- package/src/components/editor-main/src/options/schema.js +732 -0
- package/src/components/editor-main/src/utils/content-transform.js +12 -0
- package/src/components/editor-main/src/utils/copyright.js +4 -0
- package/src/components/editor-main/src/utils/diagram-editor.js +153 -0
- package/src/components/editor-main/src/utils/editor-scroll.js +75 -0
- package/src/components/editor-main/src/utils/file.js +177 -0
- package/src/components/editor-main/src/utils/history-record.js +135 -0
- package/src/components/editor-main/src/utils/load-resource.js +45 -0
- package/src/components/editor-main/src/utils/options.js +25 -0
- package/src/components/editor-main/src/utils/player.js +91 -0
- package/src/components/editor-main/src/utils/selection.js +39 -0
- package/src/components/editor-main/src/utils/short-id.js +4 -0
- package/src/components/editor-main/src/utils/shortcut.js +17 -0
- package/src/components/editor-main/src/utils/time-ago.js +8 -0
- package/src/components/editor-main/umo-build-entry.js +570 -0
- package/src/css/elementUI/col.scss +10 -2
- package/src/css/elementUI/mixins/_col.scss +10 -2
- package/vite/highlightJsLibVirtual.ts +98 -0
- package/vite/projectRoot.ts +17 -0
- package/vite/tiptapUmoResolve.ts +140 -0
- package/vite/tiptapVueRendererFix.ts +171 -0
- package/vite/umoCjsVirtual.ts +192 -0
- package/vite/umoIntegration.js +611 -0
- package/vite/umoIntegration.ts +56 -0
- package/vite/yjsPeerResolve.ts +100 -0
- package/vite.config.ts +8 -0
- package/vite.config.umo.ts +82 -0
- package/src/components/RichTextEditor/UmoRichTextEditor.vue +0 -257
- package/src/types/umoteam-editor.d.ts +0 -8
|
@@ -0,0 +1,802 @@
|
|
|
1
|
+
{
|
|
2
|
+
"welcome": "%cRich Text Editor%cVersion: v{version}",
|
|
3
|
+
"toolbar": {
|
|
4
|
+
"ribbon": "Professional",
|
|
5
|
+
"classic": "Classic",
|
|
6
|
+
"toggle": "Toolbar",
|
|
7
|
+
"show": "Show Toolbar",
|
|
8
|
+
"hide": "Hide Toolbar",
|
|
9
|
+
"base": "Home",
|
|
10
|
+
"insert": "Insert",
|
|
11
|
+
"table": "Table",
|
|
12
|
+
"tools": "Tools",
|
|
13
|
+
"page": "Page",
|
|
14
|
+
"view": "View",
|
|
15
|
+
"export": "Export"
|
|
16
|
+
},
|
|
17
|
+
"base": {
|
|
18
|
+
"align": {
|
|
19
|
+
"title": "Alignment",
|
|
20
|
+
"left": "Left",
|
|
21
|
+
"center": "Center",
|
|
22
|
+
"right": "Right",
|
|
23
|
+
"justify": "Justify",
|
|
24
|
+
"distributed": "Distributed"
|
|
25
|
+
},
|
|
26
|
+
"bgColor": "Background Color of Text",
|
|
27
|
+
"bold": "Bold",
|
|
28
|
+
"letterSpacing": {
|
|
29
|
+
"text": "Letter Spacing",
|
|
30
|
+
"tip": "Current Spacing: {value} Character",
|
|
31
|
+
"reset": "Reset Letter Spacing"
|
|
32
|
+
},
|
|
33
|
+
"clearFormat": "Clear Text Formatting",
|
|
34
|
+
"code": "Code",
|
|
35
|
+
"color": "Font Color",
|
|
36
|
+
"fontFamily": {
|
|
37
|
+
"text": "Select Font",
|
|
38
|
+
"all": "Common Fonts",
|
|
39
|
+
"recent": "Recently Used",
|
|
40
|
+
"used": "Used Fonts",
|
|
41
|
+
"unsupport": "This font may not display properly, possibly due to it not being installed on this device",
|
|
42
|
+
"download": "Download",
|
|
43
|
+
"downloading": "Downloading",
|
|
44
|
+
"downloadActionTip": "Download and enable this font in current browser",
|
|
45
|
+
"downloadStart": "{font} is downloading and will be enabled automatically when finished",
|
|
46
|
+
"autoDownloadStart": "Downloading required fonts for this document",
|
|
47
|
+
"autoDownloadDone": "Required document fonts downloaded",
|
|
48
|
+
"downloadSuccess": "{font} downloaded and enabled",
|
|
49
|
+
"downloadFailed": "Failed to download {font}, please try again later",
|
|
50
|
+
"noDownloadUrl": "No download URL configured for this font"
|
|
51
|
+
},
|
|
52
|
+
"fontSize": {
|
|
53
|
+
"text": "Font Size",
|
|
54
|
+
"increase": "Increase Font Size",
|
|
55
|
+
"decrease": "Decrease Font Size",
|
|
56
|
+
"default": "Default",
|
|
57
|
+
"42pt": "First",
|
|
58
|
+
"36pt": "Sub-first",
|
|
59
|
+
"26pt": "First Level",
|
|
60
|
+
"24pt": "Sub-first Level",
|
|
61
|
+
"22pt": "Second Level",
|
|
62
|
+
"18pt": "Sub-second Level",
|
|
63
|
+
"16pt": "Third Level",
|
|
64
|
+
"15pt": "Sub-third Level",
|
|
65
|
+
"14pt": "Fourth Level",
|
|
66
|
+
"12pt": "Sub-fourth Level",
|
|
67
|
+
"10_5pt": "Fifth Level",
|
|
68
|
+
"9pt": "Sub-fifth Level",
|
|
69
|
+
"7_5pt": "Sub-sixth Level",
|
|
70
|
+
"6_5pt": "Default"
|
|
71
|
+
},
|
|
72
|
+
"formatPainter": {
|
|
73
|
+
"text": "Format Painter",
|
|
74
|
+
"tip": "Format Painter: Double click to reuse, press ESC to exit"
|
|
75
|
+
},
|
|
76
|
+
"wordWrap": {
|
|
77
|
+
"text": "Word Wrap",
|
|
78
|
+
"normal": "Normal",
|
|
79
|
+
"breakWord": "Break Word",
|
|
80
|
+
"breakAll": "Break All"
|
|
81
|
+
},
|
|
82
|
+
"heading": {
|
|
83
|
+
"text": "Title {level}",
|
|
84
|
+
"paragraph": "Normal",
|
|
85
|
+
"tip": "Set heading, can generate document map based on headings"
|
|
86
|
+
},
|
|
87
|
+
"highlight": {
|
|
88
|
+
"text": "Highlight",
|
|
89
|
+
"clear": "Clear Highlight",
|
|
90
|
+
"yellowBg": "Yellow Background",
|
|
91
|
+
"purpleBg": "Purple Background",
|
|
92
|
+
"greenBg": "Green Background",
|
|
93
|
+
"blueBg": "Blue Background",
|
|
94
|
+
"red": "Red Text",
|
|
95
|
+
"green": "Green Text"
|
|
96
|
+
},
|
|
97
|
+
"indent": "Increase Indent",
|
|
98
|
+
"italic": "Italic",
|
|
99
|
+
"lineHeight": {
|
|
100
|
+
"text": "Line Height",
|
|
101
|
+
"default": " (Default)"
|
|
102
|
+
},
|
|
103
|
+
"outdent": "Decrease Indent",
|
|
104
|
+
"margin": {
|
|
105
|
+
"text": "Vertical Spacing",
|
|
106
|
+
"top": "Top",
|
|
107
|
+
"bottom": "Bottom",
|
|
108
|
+
"default": "Default",
|
|
109
|
+
"reset": "Auto Spacing"
|
|
110
|
+
},
|
|
111
|
+
"markdown": {
|
|
112
|
+
"text": "Markdown",
|
|
113
|
+
"enable": "Enable Markdown",
|
|
114
|
+
"disable": "Disable Markdown",
|
|
115
|
+
"message": "This action will reset the editor, and after switching, current history will be lost, unable to undo, etc. Confirm now?",
|
|
116
|
+
"toggle": "Switch Now"
|
|
117
|
+
},
|
|
118
|
+
"quote": "Quote",
|
|
119
|
+
"redo": "Redo",
|
|
120
|
+
"selectAll": "Select All",
|
|
121
|
+
"strike": "Strikethrough",
|
|
122
|
+
"subscript": "Subscript",
|
|
123
|
+
"superscript": "Superscript",
|
|
124
|
+
"underline": "Underline",
|
|
125
|
+
"undo": "Undo"
|
|
126
|
+
},
|
|
127
|
+
"insert": {
|
|
128
|
+
"audio": "Audio",
|
|
129
|
+
"codeBlock": "Code Block",
|
|
130
|
+
"date": "Chinese Date",
|
|
131
|
+
"emoji": "Emoji",
|
|
132
|
+
"file": "File",
|
|
133
|
+
"hardBreak": "Line Break",
|
|
134
|
+
"hr": {
|
|
135
|
+
"text": "Divider",
|
|
136
|
+
"title": "Divider Style",
|
|
137
|
+
"color": "Divider Color",
|
|
138
|
+
"signle": "Single Line",
|
|
139
|
+
"double": "Double Thin Lines",
|
|
140
|
+
"dotted": "Dotted Line",
|
|
141
|
+
"dashed": "Dashed Line",
|
|
142
|
+
"dashedDouble": "Double Dashed Line",
|
|
143
|
+
"signleBold": "Thick Line",
|
|
144
|
+
"doubleBoldTop": "Thick & Thin Lines (Top)",
|
|
145
|
+
"doubleBoldBottom": "Thin & Thick Lines (Bottom)",
|
|
146
|
+
"wavy": "Wavy Line"
|
|
147
|
+
},
|
|
148
|
+
"option": {
|
|
149
|
+
"text": "Option",
|
|
150
|
+
"radio": "Radio Button",
|
|
151
|
+
"checkbox": "Checkbox",
|
|
152
|
+
"tip": "Option Type",
|
|
153
|
+
"content": "Option Content",
|
|
154
|
+
"add": "Add Option",
|
|
155
|
+
"checkall": "Show Select All",
|
|
156
|
+
"check": "Select All",
|
|
157
|
+
"confirm": "Confirm",
|
|
158
|
+
"cancel": "Cancel",
|
|
159
|
+
"text1": "Option 1",
|
|
160
|
+
"text2": "Option 2"
|
|
161
|
+
},
|
|
162
|
+
"image": {
|
|
163
|
+
"text": "Image",
|
|
164
|
+
"block": "Image",
|
|
165
|
+
"blockdesc": "Insert new image node",
|
|
166
|
+
"inline": "Inline Image",
|
|
167
|
+
"inlinedesc": "Insert inline image in the current line"
|
|
168
|
+
},
|
|
169
|
+
"link": {
|
|
170
|
+
"text": "Link",
|
|
171
|
+
"confirm": "Confirm",
|
|
172
|
+
"remove": "Remove Link",
|
|
173
|
+
"hrefText": "Link Text:",
|
|
174
|
+
"hrefTextTip": "Enter or select link text",
|
|
175
|
+
"href": "Link URL:",
|
|
176
|
+
"hrefTip": "Usually starting with http:// or https://",
|
|
177
|
+
"copy": "Copy Link",
|
|
178
|
+
"copySuccess": "Copy successful",
|
|
179
|
+
"open": "Open Link",
|
|
180
|
+
"edit": "Edit Link"
|
|
181
|
+
},
|
|
182
|
+
"details": "Details",
|
|
183
|
+
"columns": {
|
|
184
|
+
"text": "Columns",
|
|
185
|
+
"number": "Number of Columns"
|
|
186
|
+
},
|
|
187
|
+
"tag": "Tag",
|
|
188
|
+
"callout": "Callout",
|
|
189
|
+
"mention": "Mention",
|
|
190
|
+
"bookmark": {
|
|
191
|
+
"text": "Bookmark",
|
|
192
|
+
"set": "Set bookmarks",
|
|
193
|
+
"ok": "Confirmed",
|
|
194
|
+
"textName": "Bookmark name",
|
|
195
|
+
"placeholder": " Please enter the bookmark name...",
|
|
196
|
+
"show": "Show bookmarks",
|
|
197
|
+
"actions": "Actions",
|
|
198
|
+
"delete": "Delete bookmark",
|
|
199
|
+
"emptyError": "Please enter the bookmark name or select the bookmark!"
|
|
200
|
+
},
|
|
201
|
+
"symbol": "Symbol",
|
|
202
|
+
"template": "Template",
|
|
203
|
+
"textBox": "Text Box",
|
|
204
|
+
"toc": "Document Map",
|
|
205
|
+
"video": "Video",
|
|
206
|
+
"web": {
|
|
207
|
+
"text": "Web Page",
|
|
208
|
+
"insert": "Insert",
|
|
209
|
+
"title": "Insert Web Page",
|
|
210
|
+
"tip": "Some web pages may not support embedding.",
|
|
211
|
+
"type": "Link Type:",
|
|
212
|
+
"url": "Page URL:",
|
|
213
|
+
"placeholder": "Enter a web address, starting with http:// or https://"
|
|
214
|
+
},
|
|
215
|
+
"footnote": "Footnote"
|
|
216
|
+
},
|
|
217
|
+
"table": {
|
|
218
|
+
"addColumnAfter": "Insert Column After",
|
|
219
|
+
"addColumnBefore": "Insert Column Before",
|
|
220
|
+
"addRowAfter": "Insert Row Below",
|
|
221
|
+
"addRowBefore": "Insert Row Above",
|
|
222
|
+
"borderColor": "Border Color",
|
|
223
|
+
"cellAlign": {
|
|
224
|
+
"text": "Alignment",
|
|
225
|
+
"tip": "Cell Alignment",
|
|
226
|
+
"lt": "Top Left",
|
|
227
|
+
"ct": "Top Center",
|
|
228
|
+
"rt": "Top Right",
|
|
229
|
+
"jt": "Top Justify",
|
|
230
|
+
"lm": "Middle Left",
|
|
231
|
+
"cm": "Middle Center",
|
|
232
|
+
"rm": "Middle Right",
|
|
233
|
+
"jm": "Middle Justify",
|
|
234
|
+
"lb": "Bottom Left",
|
|
235
|
+
"cb": "Bottom Center",
|
|
236
|
+
"rb": "Bottom Right",
|
|
237
|
+
"jb": "Bottom Justify"
|
|
238
|
+
},
|
|
239
|
+
"cellBgColor": {
|
|
240
|
+
"text": "Background",
|
|
241
|
+
"tip": "Cell Background Color"
|
|
242
|
+
},
|
|
243
|
+
"deleteColumn": {
|
|
244
|
+
"text": "Delete Column",
|
|
245
|
+
"title": "Delete Table Column",
|
|
246
|
+
"message": "This operation will delete the selected table column. Continue?",
|
|
247
|
+
"delete": "Delete Now",
|
|
248
|
+
"success": "Deleted Successfully"
|
|
249
|
+
},
|
|
250
|
+
"deleteRow": {
|
|
251
|
+
"text": "Delete Row",
|
|
252
|
+
"title": "Delete Table Row",
|
|
253
|
+
"message": "This operation will delete the selected table row. Continue?",
|
|
254
|
+
"delete": "Delete Now",
|
|
255
|
+
"success": "Deleted Successfully"
|
|
256
|
+
},
|
|
257
|
+
"delete": {
|
|
258
|
+
"text": "Delete Table",
|
|
259
|
+
"title": "Delete Current Table",
|
|
260
|
+
"message": "This operation will delete the selected table. Continue?",
|
|
261
|
+
"delete": "Delete Now",
|
|
262
|
+
"success": "Deleted Successfully"
|
|
263
|
+
},
|
|
264
|
+
"fix": {
|
|
265
|
+
"text": "Fix Table",
|
|
266
|
+
"tip": "Click to automatically fix table when it's disordered"
|
|
267
|
+
},
|
|
268
|
+
"insert": {
|
|
269
|
+
"text": "Insert Table",
|
|
270
|
+
"tip": "Insert New Table",
|
|
271
|
+
"property": "Table Properties",
|
|
272
|
+
"withHeader": "Include Header",
|
|
273
|
+
"rows": "Number of Rows:",
|
|
274
|
+
"cols": "Number of Columns:",
|
|
275
|
+
"create": "Create Table"
|
|
276
|
+
},
|
|
277
|
+
"mergeCells": "Merge Cells",
|
|
278
|
+
"nextCell": "Next Cell",
|
|
279
|
+
"prevCell": "Previous Cell",
|
|
280
|
+
"splitCell": "Split Cell",
|
|
281
|
+
"toggleHeaderCell": "Header Cell",
|
|
282
|
+
"toggleHeaderRow": "Header Row",
|
|
283
|
+
"toggleHeaderColumn": "Header Column"
|
|
284
|
+
},
|
|
285
|
+
"tools": {
|
|
286
|
+
"barcode": {
|
|
287
|
+
"text": "Barcode",
|
|
288
|
+
"edit": "Edit Barcode",
|
|
289
|
+
"title": "Barcode",
|
|
290
|
+
"format": "Format",
|
|
291
|
+
"font": "Font Style",
|
|
292
|
+
"lineColor": "Barcode & Text Color",
|
|
293
|
+
"bgColor": "Barcode Background Color",
|
|
294
|
+
"more": "More",
|
|
295
|
+
"width": "Width:",
|
|
296
|
+
"height": "Height:",
|
|
297
|
+
"margin": "Margin:",
|
|
298
|
+
"displayValue": "Display Text",
|
|
299
|
+
"displayValueText": "Show Text",
|
|
300
|
+
"textContent": "Text Content:",
|
|
301
|
+
"textContentTip": "Overrides barcode content text",
|
|
302
|
+
"textPosition": "Text Position:",
|
|
303
|
+
"top": "Top",
|
|
304
|
+
"bottom": "Bottom",
|
|
305
|
+
"textMargin": "Vertical Distance:",
|
|
306
|
+
"fontSize": "Font Size:",
|
|
307
|
+
"placeholder": "Enter content to convert into barcode",
|
|
308
|
+
"error": "Your input may not comply with the current barcode standard constraints, please check.",
|
|
309
|
+
"preview": "Preview",
|
|
310
|
+
"renderError": "No preview available",
|
|
311
|
+
"notEmpty": "Barcode content cannot be empty"
|
|
312
|
+
},
|
|
313
|
+
"chineseCase": {
|
|
314
|
+
"text": "Chinese Case",
|
|
315
|
+
"tip": "Chinese Case Conversion"
|
|
316
|
+
},
|
|
317
|
+
"math": {
|
|
318
|
+
"text": "Mathematics",
|
|
319
|
+
"insert": "Insert LaTeX Math",
|
|
320
|
+
"edit": "Edit LaTeX Math",
|
|
321
|
+
"update": "Update Math",
|
|
322
|
+
"inline": "Inline Math",
|
|
323
|
+
"block": "Block Math",
|
|
324
|
+
"placeholder": "Enter LaTeX or select from the right",
|
|
325
|
+
"preview": "Math Preview Area",
|
|
326
|
+
"template": "Math templates",
|
|
327
|
+
"cancel": "Cancel",
|
|
328
|
+
"confirm": "Insert Math"
|
|
329
|
+
},
|
|
330
|
+
"diagrams": {
|
|
331
|
+
"text": "Diagram",
|
|
332
|
+
"edit": "Edit Diagram",
|
|
333
|
+
"loading": "Loading..."
|
|
334
|
+
},
|
|
335
|
+
"mermaid": {
|
|
336
|
+
"text": "Mermaid",
|
|
337
|
+
"edit": "Edit Mermaid",
|
|
338
|
+
"theme": "Select Theme",
|
|
339
|
+
"themes": {
|
|
340
|
+
"default": "Default Theme",
|
|
341
|
+
"base": "Simple Theme",
|
|
342
|
+
"dark": "Dark Theme",
|
|
343
|
+
"forest": "Forest Theme",
|
|
344
|
+
"neutral": "Neutral Theme"
|
|
345
|
+
},
|
|
346
|
+
"copy": "Copy Code",
|
|
347
|
+
"clear": "Clear Code",
|
|
348
|
+
"copied": "Code Copied to Clipboard",
|
|
349
|
+
"placeholder": "Enter or paste Mermaid code",
|
|
350
|
+
"preview": "Preview",
|
|
351
|
+
"notEmpty": "Mermaid content cannot be empty",
|
|
352
|
+
"codeEmpty": "Mermaid code cannot be empty",
|
|
353
|
+
"notLoaded": "Mermaid is still loading",
|
|
354
|
+
"keepSize": "Keep Original Size",
|
|
355
|
+
"renderError": "Syntax error in graph"
|
|
356
|
+
},
|
|
357
|
+
"echarts": {
|
|
358
|
+
"text": "Chart",
|
|
359
|
+
"add": "Create a new chart",
|
|
360
|
+
"edit": "Change Chart",
|
|
361
|
+
"source": "Advanced Mode",
|
|
362
|
+
"visualization": "Basic Mode",
|
|
363
|
+
"placeholder": "Please enter or paste data in echarts format",
|
|
364
|
+
"sourceerror": "Echarts structure is incorrect, please confirm!",
|
|
365
|
+
"sourceerror2": "Echarts structure incorrect or undefined!",
|
|
366
|
+
"dataGrid": "Data Grid",
|
|
367
|
+
"setting": "Settings",
|
|
368
|
+
"settingError": "Please confirm if the preview view is displayed correctly!",
|
|
369
|
+
"set": {
|
|
370
|
+
"bar": "Bar",
|
|
371
|
+
"line": "Line",
|
|
372
|
+
"pie": "Pie",
|
|
373
|
+
"top": "Top",
|
|
374
|
+
"bottom": "Bottom",
|
|
375
|
+
"left": "Left",
|
|
376
|
+
"center": "Center",
|
|
377
|
+
"right": "Right",
|
|
378
|
+
"horizontal": "Horizontal",
|
|
379
|
+
"vertical": "Vertical",
|
|
380
|
+
"smooth": "Smooth",
|
|
381
|
+
"seriesType": "Chart type",
|
|
382
|
+
"legend": "Show Legend",
|
|
383
|
+
"legendorient": "Legend layout",
|
|
384
|
+
"legendlocation": "Legend vertical",
|
|
385
|
+
"legendleft": "Legend horizontal",
|
|
386
|
+
"titleText": "Chart title",
|
|
387
|
+
"titleTextPlaceholder": "Please enter a title name...",
|
|
388
|
+
"titleleft": "Title Position"
|
|
389
|
+
}
|
|
390
|
+
},
|
|
391
|
+
"mindMap": "Mind Map",
|
|
392
|
+
"qrcode": {
|
|
393
|
+
"text": "QR Code",
|
|
394
|
+
"edit": "Edit QR Code",
|
|
395
|
+
"level": "QR Code Error Correction Level",
|
|
396
|
+
"levelL": "Low",
|
|
397
|
+
"levelM": "Medium",
|
|
398
|
+
"levelQ": "Quartile",
|
|
399
|
+
"levelH": "High",
|
|
400
|
+
"padding": "padding:",
|
|
401
|
+
"paddingTip": "white space padding",
|
|
402
|
+
"width": "Size:",
|
|
403
|
+
"widthTip": "QR Code size in pixels",
|
|
404
|
+
"color": "QR Code Color",
|
|
405
|
+
"bgColor": "Color of background",
|
|
406
|
+
"placeholder": "Enter or paste content to convert into QR Code",
|
|
407
|
+
"preview": "Preview",
|
|
408
|
+
"renderError": "QR Code generation failed",
|
|
409
|
+
"notEmpty": "QR Code content cannot be empty"
|
|
410
|
+
},
|
|
411
|
+
"signature": {
|
|
412
|
+
"text": "E-Signature",
|
|
413
|
+
"title": "Insert Electronic Signature",
|
|
414
|
+
"clear": "Clear",
|
|
415
|
+
"lineWidth": "Pen Thickness",
|
|
416
|
+
"lineColor": "Pen Color",
|
|
417
|
+
"smooth": "Show Brush Strokes",
|
|
418
|
+
"reset": "Reset Options",
|
|
419
|
+
"tip": "Please sign in the this area",
|
|
420
|
+
"notEmpty": "No signature detected"
|
|
421
|
+
}
|
|
422
|
+
},
|
|
423
|
+
"page": {
|
|
424
|
+
"bg": {
|
|
425
|
+
"text": "Background",
|
|
426
|
+
"custom": "Custom Page Background",
|
|
427
|
+
"default": "Default",
|
|
428
|
+
"color1": "Eye-friendly\nGreen",
|
|
429
|
+
"color2": "Elegant\nYellow",
|
|
430
|
+
"color3": "Cloudy\nBlue",
|
|
431
|
+
"color4": "Sky Blue",
|
|
432
|
+
"color5": "Dark Night\nBlack"
|
|
433
|
+
},
|
|
434
|
+
"breakMarks": "Line Breaks",
|
|
435
|
+
"break": "Page Break",
|
|
436
|
+
"lineNumber": "Line Numbers",
|
|
437
|
+
"margin": "Margins",
|
|
438
|
+
"orientation": {
|
|
439
|
+
"text": "Orientation",
|
|
440
|
+
"landscape": "Landscape",
|
|
441
|
+
"portrait": "Portrait"
|
|
442
|
+
},
|
|
443
|
+
"preview": "Presentation",
|
|
444
|
+
"size": {
|
|
445
|
+
"text": "Size",
|
|
446
|
+
"cm": "CM",
|
|
447
|
+
"custom": "Custom Settings"
|
|
448
|
+
},
|
|
449
|
+
"watermark": {
|
|
450
|
+
"text": "Watermark",
|
|
451
|
+
"fontFamily": "Watermark Font",
|
|
452
|
+
"fontSize": "Watermark Size",
|
|
453
|
+
"fontColor": "Watermark Color",
|
|
454
|
+
"content": "Watermark Text",
|
|
455
|
+
"type": "Watermark Style",
|
|
456
|
+
"compact": "Compact",
|
|
457
|
+
"spacious": "Spacious",
|
|
458
|
+
"clear": "Remove Watermark"
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
"view": {
|
|
462
|
+
"zoom": "Zoom",
|
|
463
|
+
"zoomOriginal": "Original Size",
|
|
464
|
+
"zoomAuto": "Best Fit",
|
|
465
|
+
"theme": "Theme",
|
|
466
|
+
"themeLight": "Light mode",
|
|
467
|
+
"themeDark": "Dark mode",
|
|
468
|
+
"skin": "Appearance",
|
|
469
|
+
"skinDefault": "Default",
|
|
470
|
+
"skinModern": "Modern",
|
|
471
|
+
"locale": "Language"
|
|
472
|
+
},
|
|
473
|
+
"export": {
|
|
474
|
+
"embed": {
|
|
475
|
+
"text": "Embed",
|
|
476
|
+
"title": "Embed Code",
|
|
477
|
+
"tip": "After copying, manually adjust the iframe width and height for optimal viewing.",
|
|
478
|
+
"copy": "Copy",
|
|
479
|
+
"copied": "Code copied to clipboard"
|
|
480
|
+
},
|
|
481
|
+
"image": {
|
|
482
|
+
"text": "Image",
|
|
483
|
+
"jpg": "JPG",
|
|
484
|
+
"png": "PNG",
|
|
485
|
+
"error": {
|
|
486
|
+
"title": "Error Message",
|
|
487
|
+
"message": "Failed to export image, please try again or refresh the page."
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"share": {
|
|
491
|
+
"text": "Share",
|
|
492
|
+
"tip": "Copy the link and send it to those you want to share with.",
|
|
493
|
+
"copy": "Copy Link",
|
|
494
|
+
"copied": "Link copied to clipboard"
|
|
495
|
+
},
|
|
496
|
+
"pdf": {
|
|
497
|
+
"text": "PDF Document",
|
|
498
|
+
"title": "Export PDF Document",
|
|
499
|
+
"message": "Before exporting the PDF document, please ensure that all images on the pages have finished loading. Then, in the pop-up print dialog, select 'Printer - Save as PDF', and click the 'Save' button. To ensure that all content is displayed correctly, please check the 'Background graphics' option in the print dialog box and set the 'Margins' to 'None.'",
|
|
500
|
+
"confirm": "I Understand"
|
|
501
|
+
},
|
|
502
|
+
"text": "Text"
|
|
503
|
+
},
|
|
504
|
+
"list": {
|
|
505
|
+
"bullet": {
|
|
506
|
+
"text": "Bulleted List",
|
|
507
|
+
"disc": "Filled Circle",
|
|
508
|
+
"circle": "Open Circle",
|
|
509
|
+
"square": "Filled Square"
|
|
510
|
+
},
|
|
511
|
+
"ordered": {
|
|
512
|
+
"text": "Numbered List",
|
|
513
|
+
"property": "List Properties",
|
|
514
|
+
"startAt": "Starting Number:",
|
|
515
|
+
"decimal": "Numbers",
|
|
516
|
+
"decimalLeadingZero": "Numbers with Leading Zero",
|
|
517
|
+
"lowerRoman": "Lowercase Roman Numerals",
|
|
518
|
+
"upperRoman": "Uppercase Roman Numerals",
|
|
519
|
+
"lowerLatin": "Lowercase Alphabet",
|
|
520
|
+
"upperLatin": "Uppercase Alphabet",
|
|
521
|
+
"tradChineseInformal": "Traditional Chinese Counting",
|
|
522
|
+
"simpChineseFormal": "Formal Uppercase Chinese Counting"
|
|
523
|
+
},
|
|
524
|
+
"task": {
|
|
525
|
+
"text": "To-Do List",
|
|
526
|
+
"split": "Add Task",
|
|
527
|
+
"sink": "Convert to Sub-task",
|
|
528
|
+
"lift": "Remove as Task"
|
|
529
|
+
}
|
|
530
|
+
},
|
|
531
|
+
"colorPicker": {
|
|
532
|
+
"default": "Default Color",
|
|
533
|
+
"standard": "Standard Colors",
|
|
534
|
+
"recent": "Recently Used",
|
|
535
|
+
"more": "More Colors"
|
|
536
|
+
},
|
|
537
|
+
"blockMenu": {
|
|
538
|
+
"insert": "Insert Content",
|
|
539
|
+
"template": "Insert Template",
|
|
540
|
+
"common": "Common actions",
|
|
541
|
+
"clearFormat": "Clear formatting",
|
|
542
|
+
"duplicate": "Duplicate",
|
|
543
|
+
"copy": "Copy",
|
|
544
|
+
"cut": "Cut",
|
|
545
|
+
"delete": "Delete"
|
|
546
|
+
},
|
|
547
|
+
"bubbleMenu": {
|
|
548
|
+
"code": {
|
|
549
|
+
"copy": {
|
|
550
|
+
"text": "Copy Code",
|
|
551
|
+
"success": "Code copied to clipboard"
|
|
552
|
+
},
|
|
553
|
+
"languages": "Languages",
|
|
554
|
+
"lineNumbers": "Show Line Numbers",
|
|
555
|
+
"themes": {
|
|
556
|
+
"text": "Theme",
|
|
557
|
+
"light": "Light Theme",
|
|
558
|
+
"dark": "Dark Theme"
|
|
559
|
+
},
|
|
560
|
+
"wordWrap": "Word Wrap"
|
|
561
|
+
},
|
|
562
|
+
"file": {
|
|
563
|
+
"autoWidth": "Fit Width",
|
|
564
|
+
"download": "Download File"
|
|
565
|
+
},
|
|
566
|
+
"image": {
|
|
567
|
+
"open": "Open in a new window",
|
|
568
|
+
"draggable": "Image Floating",
|
|
569
|
+
"flipX": "Flip Horizontally",
|
|
570
|
+
"flipY": "Flip Vertically",
|
|
571
|
+
"preview": "Preview Image",
|
|
572
|
+
"proportion": "Lock Image Aspect Ratio",
|
|
573
|
+
"reset": "Reset Image Position",
|
|
574
|
+
"rotateCC": "Rotate Counter-Clockwise 90°",
|
|
575
|
+
"rotateC": "Rotate Clockwise 90°",
|
|
576
|
+
"convertToNode": "Convert to Block Image",
|
|
577
|
+
"convertToInline": "Convert to Inline Image"
|
|
578
|
+
},
|
|
579
|
+
"textBox": {
|
|
580
|
+
"background": "Background Color",
|
|
581
|
+
"border": "Border Settings",
|
|
582
|
+
"borderColor": "Border Color",
|
|
583
|
+
"borderStyle": "Border Style",
|
|
584
|
+
"noBorder": "No Border",
|
|
585
|
+
"writingMode": "Writing Mode",
|
|
586
|
+
"horizontalTb": "Horizontal Text",
|
|
587
|
+
"verticalLr": "Vertical Text (Left to Right)",
|
|
588
|
+
"verticalRl": "Vertical Text (Right to Left)"
|
|
589
|
+
},
|
|
590
|
+
"callout": {
|
|
591
|
+
"removeEmoji": "Remove Emoji",
|
|
592
|
+
"background": "Background Color"
|
|
593
|
+
},
|
|
594
|
+
"tag": {
|
|
595
|
+
"placeholder": "Tag Name",
|
|
596
|
+
"content": "Tag Name",
|
|
597
|
+
"background": "Background Color",
|
|
598
|
+
"color": "Text Color",
|
|
599
|
+
"delete": "Delete Tag"
|
|
600
|
+
},
|
|
601
|
+
"webpage": {
|
|
602
|
+
"clickable": "Toggle Clickable",
|
|
603
|
+
"open": "Open in a new window"
|
|
604
|
+
},
|
|
605
|
+
"toFile": "Convert to File",
|
|
606
|
+
"delete": "Delete"
|
|
607
|
+
},
|
|
608
|
+
"pageOptions": {
|
|
609
|
+
"title": "Page Settings",
|
|
610
|
+
"size": {
|
|
611
|
+
"text": "Page Size",
|
|
612
|
+
"width": "Width:",
|
|
613
|
+
"height": "Height:",
|
|
614
|
+
"custom": "Custom"
|
|
615
|
+
},
|
|
616
|
+
"margin": {
|
|
617
|
+
"text": "Page Margins",
|
|
618
|
+
"default": "Default",
|
|
619
|
+
"narrow": "Narrow",
|
|
620
|
+
"moderate": "Moderate",
|
|
621
|
+
"wide": "Wide",
|
|
622
|
+
"top": "Top:",
|
|
623
|
+
"right": "Right:",
|
|
624
|
+
"bottom": "Bottom:",
|
|
625
|
+
"left": "Left:"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
"document": {
|
|
629
|
+
"untitled": "Untitled Document",
|
|
630
|
+
"headingPlaceholder": "Enter Title"
|
|
631
|
+
},
|
|
632
|
+
"search": {
|
|
633
|
+
"text": "Search",
|
|
634
|
+
"title": "Search and Replace",
|
|
635
|
+
"searchText": "Search...",
|
|
636
|
+
"replaceText": "Replace...",
|
|
637
|
+
"caseSensitive": "Case Sensitive",
|
|
638
|
+
"search": "Search",
|
|
639
|
+
"replace": "Replace",
|
|
640
|
+
"replaceAll": "Replace All"
|
|
641
|
+
},
|
|
642
|
+
"toc": {
|
|
643
|
+
"title": "Document Map",
|
|
644
|
+
"show": "Document Map",
|
|
645
|
+
"hide": "Hide Document Map",
|
|
646
|
+
"empty": "No Document Map Available"
|
|
647
|
+
},
|
|
648
|
+
"spellcheck": {
|
|
649
|
+
"enable": "Enable Spell Check",
|
|
650
|
+
"disable": "Disable Spell Check"
|
|
651
|
+
},
|
|
652
|
+
"shortcut": {
|
|
653
|
+
"title": "Keyboard Shortcuts",
|
|
654
|
+
"text": "Text",
|
|
655
|
+
"commonlyUsed": "Common",
|
|
656
|
+
"copy": "Copy",
|
|
657
|
+
"paste": "Paste",
|
|
658
|
+
"pasteAsText": "Paste as Plain Text",
|
|
659
|
+
"paragraph": "Insert New Paragraph",
|
|
660
|
+
"hardBreak": "Line Break",
|
|
661
|
+
"format": "Text",
|
|
662
|
+
"page": "Page",
|
|
663
|
+
"pageZoomIn": "Zoom In",
|
|
664
|
+
"pageZoomOut": "Zoom Out",
|
|
665
|
+
"pageZoomReset": "Reset Zoom to Default",
|
|
666
|
+
"pageAutoWidth": "Fit to Best Width",
|
|
667
|
+
"markdown": "Markdown"
|
|
668
|
+
},
|
|
669
|
+
"changeLocale": {
|
|
670
|
+
"title": "Switch Language",
|
|
671
|
+
"message": "After changing the language, the page will refresh. Please save your document content first. Are you sure you want to switch now?",
|
|
672
|
+
"confirm": "Switch"
|
|
673
|
+
},
|
|
674
|
+
"resetAll": {
|
|
675
|
+
"title": "Reset Settings",
|
|
676
|
+
"message": "This action will clear all editor settings and current content, and refresh the page. It's recommended to save your content before resetting. Are you sure you want to reset now?",
|
|
677
|
+
"reset": "Reset"
|
|
678
|
+
},
|
|
679
|
+
"about": {
|
|
680
|
+
"title": "About Editor",
|
|
681
|
+
"version": "Version"
|
|
682
|
+
},
|
|
683
|
+
"layout": {
|
|
684
|
+
"web": "Web View",
|
|
685
|
+
"page": "Page View"
|
|
686
|
+
},
|
|
687
|
+
"wordCount": {
|
|
688
|
+
"characters": "Characters",
|
|
689
|
+
"title": "Document Statistics",
|
|
690
|
+
"input": "Characters Typed",
|
|
691
|
+
"selection": "Selected Characters",
|
|
692
|
+
"limit": "Character Limit"
|
|
693
|
+
},
|
|
694
|
+
"preview": {
|
|
695
|
+
"title": "Presentation",
|
|
696
|
+
"disable": "Exit Presentation",
|
|
697
|
+
"countdown": {
|
|
698
|
+
"title": "Set Countdown",
|
|
699
|
+
"select": "Select",
|
|
700
|
+
"selectTip": "Select the countdown duration",
|
|
701
|
+
"custom": "Custom",
|
|
702
|
+
"hours": "Hours",
|
|
703
|
+
"minutes": "Minutes",
|
|
704
|
+
"seconds": "Seconds",
|
|
705
|
+
"whenEnd": "When End",
|
|
706
|
+
"showEndMessage": "Show end message",
|
|
707
|
+
"exitPreview": "Exit presentation mode",
|
|
708
|
+
"start": "Start",
|
|
709
|
+
"cancel": "Cancel",
|
|
710
|
+
"1hour": "1 Hour",
|
|
711
|
+
"45minutes": "45 Minutes",
|
|
712
|
+
"30minutes": "30 Minutes",
|
|
713
|
+
"15minutes": "15 Minutes",
|
|
714
|
+
"10minutes": "10 Minutes",
|
|
715
|
+
"5minutes": "5 Minutes",
|
|
716
|
+
"error": "Please set a valid countdown time",
|
|
717
|
+
"endCountdown": "Countdown has ended",
|
|
718
|
+
"remaining": "Remaining time"
|
|
719
|
+
},
|
|
720
|
+
"laserPointer": "Laser Pointer"
|
|
721
|
+
},
|
|
722
|
+
"fullscreen": {
|
|
723
|
+
"title": "Fullscreen",
|
|
724
|
+
"disable": "Exit Fullscreen"
|
|
725
|
+
},
|
|
726
|
+
"zoom": {
|
|
727
|
+
"zoomIn": "Zoom In",
|
|
728
|
+
"zoomOut": "Zoom Out",
|
|
729
|
+
"level": "Zoom Level: ",
|
|
730
|
+
"autoWidth": "Best Fit Width",
|
|
731
|
+
"autoWidthError": "Error calculating automatic page width",
|
|
732
|
+
"reset": "Back to 100%"
|
|
733
|
+
},
|
|
734
|
+
"node": {
|
|
735
|
+
"codeBlock": {
|
|
736
|
+
"menu": "Menu"
|
|
737
|
+
},
|
|
738
|
+
"image": {
|
|
739
|
+
"loading": "Loading image...",
|
|
740
|
+
"error": "Image load failed"
|
|
741
|
+
},
|
|
742
|
+
"textBox": {
|
|
743
|
+
"tip": "Double-click to edit"
|
|
744
|
+
}
|
|
745
|
+
},
|
|
746
|
+
"file": {
|
|
747
|
+
"uploading": "Uploading file...",
|
|
748
|
+
"download": "Download File",
|
|
749
|
+
"limit": "File \"{filename}\" exceeds the limit of {size}MB",
|
|
750
|
+
"notAllow": {
|
|
751
|
+
"title": "Error Message",
|
|
752
|
+
"message": "Insertion of this file type is not allowed in the current document."
|
|
753
|
+
}
|
|
754
|
+
},
|
|
755
|
+
"callout": {
|
|
756
|
+
"placeholder": "Please enter content"
|
|
757
|
+
},
|
|
758
|
+
"mention": {
|
|
759
|
+
"noResult": "No result"
|
|
760
|
+
},
|
|
761
|
+
"save": {
|
|
762
|
+
"text": "Save",
|
|
763
|
+
"saved": "Saved",
|
|
764
|
+
"unsaved": "Unsaved",
|
|
765
|
+
"network": "Network Status:",
|
|
766
|
+
"online": "Online",
|
|
767
|
+
"offline": "Offline",
|
|
768
|
+
"saving": "Saving document...",
|
|
769
|
+
"savedAt": "Saved at:",
|
|
770
|
+
"savedAtText": "Saved at {time}",
|
|
771
|
+
"failed": "Failed to save document",
|
|
772
|
+
"success": "Document saved successfully",
|
|
773
|
+
"error": "Error saving document",
|
|
774
|
+
"cache": {
|
|
775
|
+
"text": "Restore from Cache",
|
|
776
|
+
"error": {
|
|
777
|
+
"title": "Error Message",
|
|
778
|
+
"message": "There is no content in the cache!"
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
"print": {
|
|
783
|
+
"text": "Print",
|
|
784
|
+
"title": "Print Document",
|
|
785
|
+
"message": "Before printing the document, please ensure that all images on the pages have finished loading. To ensure that all content is displayed correctly, please check the 'Background graphics' option in the print dialog box and set the 'Margins' to 'None.'",
|
|
786
|
+
"confirm": "Print Now"
|
|
787
|
+
},
|
|
788
|
+
"dialog": {
|
|
789
|
+
"cancel": "Cancel"
|
|
790
|
+
},
|
|
791
|
+
"copy": {
|
|
792
|
+
"notSupported": "Browser does not support copy function",
|
|
793
|
+
"copyFailed": "Copy failed"
|
|
794
|
+
},
|
|
795
|
+
"officePaste": {
|
|
796
|
+
"imagePlaceholder": "[Image]",
|
|
797
|
+
"dialog": {
|
|
798
|
+
"title": "Notice",
|
|
799
|
+
"body": "The clipboard content has been pasted, but included images were not processed correctly. Please manually copy and replace the unprocessed images in the document."
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
}
|