adtec-core-package 2.9.9 → 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.
Files changed (507) hide show
  1. package/auto-imports.d.ts +299 -0
  2. package/package.json +99 -5
  3. package/prebuilt/umo-editor/favicon.ico +0 -0
  4. package/prebuilt/umo-editor/umo-editor.css +1 -0
  5. package/prebuilt/umo-editor/umo-editor.js +85998 -0
  6. package/prebuilt/umo-editor/umo-editor.js.map +1 -0
  7. package/scripts/build-umo.mjs +47 -0
  8. package/scripts/generate-umo-entry.mjs +81 -0
  9. package/scripts/inject-umo-composable-imports.mjs +66 -0
  10. package/scripts/patch-es-drager-vue35.mjs +68 -0
  11. package/scripts/patch-tiptap-vue3.mjs +117 -0
  12. package/scripts/prepare-umo-source.mjs +122 -0
  13. package/src/components/RichTextEditor/RichTextEditor.vue +566 -398
  14. package/src/components/RichTextEditor/installUmoEditorApp.ts +31 -0
  15. package/src/components/RichTextEditor/richTextHtmlUtils.ts +151 -17
  16. package/src/components/RichTextEditor/umo-editor.d.ts +9 -0
  17. package/src/components/editor-main/src/assets/icons/align-center.svg +1 -0
  18. package/src/components/editor-main/src/assets/icons/align-distributed.svg +1 -0
  19. package/src/components/editor-main/src/assets/icons/align-justify.svg +1 -0
  20. package/src/components/editor-main/src/assets/icons/align-left.svg +1 -0
  21. package/src/components/editor-main/src/assets/icons/align-right.svg +1 -0
  22. package/src/components/editor-main/src/assets/icons/arrow-down.svg +1 -0
  23. package/src/components/editor-main/src/assets/icons/audio.svg +1 -0
  24. package/src/components/editor-main/src/assets/icons/auto-width.svg +1 -0
  25. package/src/components/editor-main/src/assets/icons/background-color.svg +1 -0
  26. package/src/components/editor-main/src/assets/icons/barcode.svg +1 -0
  27. package/src/components/editor-main/src/assets/icons/block-add.svg +1 -0
  28. package/src/components/editor-main/src/assets/icons/block-menu.svg +1 -0
  29. package/src/components/editor-main/src/assets/icons/bold.svg +1 -0
  30. package/src/components/editor-main/src/assets/icons/bookmark.svg +10 -0
  31. package/src/components/editor-main/src/assets/icons/border-none.svg +1 -0
  32. package/src/components/editor-main/src/assets/icons/border.svg +1 -0
  33. package/src/components/editor-main/src/assets/icons/break-marks.svg +1 -0
  34. package/src/components/editor-main/src/assets/icons/bullet-list-2.svg +1 -0
  35. package/src/components/editor-main/src/assets/icons/bullet-list-circle.svg +1 -0
  36. package/src/components/editor-main/src/assets/icons/bullet-list-disc.svg +1 -0
  37. package/src/components/editor-main/src/assets/icons/bullet-list-square.svg +1 -0
  38. package/src/components/editor-main/src/assets/icons/bullet-list.svg +1 -0
  39. package/src/components/editor-main/src/assets/icons/callout.svg +1 -0
  40. package/src/components/editor-main/src/assets/icons/check.svg +1 -0
  41. package/src/components/editor-main/src/assets/icons/checkbox.svg +1 -0
  42. package/src/components/editor-main/src/assets/icons/chinese-case.svg +1 -0
  43. package/src/components/editor-main/src/assets/icons/clear-cache.svg +1 -0
  44. package/src/components/editor-main/src/assets/icons/clear-format.svg +1 -0
  45. package/src/components/editor-main/src/assets/icons/clickable.svg +1 -0
  46. package/src/components/editor-main/src/assets/icons/close.svg +1 -0
  47. package/src/components/editor-main/src/assets/icons/code-block.svg +1 -0
  48. package/src/components/editor-main/src/assets/icons/code-line-number.svg +1 -0
  49. package/src/components/editor-main/src/assets/icons/code-word-wrap.svg +1 -0
  50. package/src/components/editor-main/src/assets/icons/code.svg +1 -0
  51. package/src/components/editor-main/src/assets/icons/color.svg +1 -0
  52. package/src/components/editor-main/src/assets/icons/columns.svg +1 -0
  53. package/src/components/editor-main/src/assets/icons/copy.svg +1 -0
  54. package/src/components/editor-main/src/assets/icons/copyright.svg +1 -0
  55. package/src/components/editor-main/src/assets/icons/date.svg +1 -0
  56. package/src/components/editor-main/src/assets/icons/details.svg +1 -0
  57. package/src/components/editor-main/src/assets/icons/diagrams.svg +1 -0
  58. package/src/components/editor-main/src/assets/icons/download.svg +1 -0
  59. package/src/components/editor-main/src/assets/icons/echarts.svg +1 -0
  60. package/src/components/editor-main/src/assets/icons/edit.svg +1 -0
  61. package/src/components/editor-main/src/assets/icons/embed.svg +1 -0
  62. package/src/components/editor-main/src/assets/icons/emoji.svg +1 -0
  63. package/src/components/editor-main/src/assets/icons/equal-proportion.svg +1 -0
  64. package/src/components/editor-main/src/assets/icons/exit.svg +1 -0
  65. package/src/components/editor-main/src/assets/icons/expand-down.svg +1 -0
  66. package/src/components/editor-main/src/assets/icons/file-view.svg +1 -0
  67. package/src/components/editor-main/src/assets/icons/file.svg +1 -0
  68. package/src/components/editor-main/src/assets/icons/font-size-decrease.svg +1 -0
  69. package/src/components/editor-main/src/assets/icons/font-size-increase.svg +1 -0
  70. package/src/components/editor-main/src/assets/icons/footnote.svg +1 -0
  71. package/src/components/editor-main/src/assets/icons/format-painter.svg +1 -0
  72. package/src/components/editor-main/src/assets/icons/format.svg +1 -0
  73. package/src/components/editor-main/src/assets/icons/full-screen-exit.svg +1 -0
  74. package/src/components/editor-main/src/assets/icons/full-screen.svg +1 -0
  75. package/src/components/editor-main/src/assets/icons/hand-drawn.svg +1 -0
  76. package/src/components/editor-main/src/assets/icons/hard-break.svg +1 -0
  77. package/src/components/editor-main/src/assets/icons/heading.svg +1 -0
  78. package/src/components/editor-main/src/assets/icons/help.svg +1 -0
  79. package/src/components/editor-main/src/assets/icons/hide-toolbar.svg +1 -0
  80. package/src/components/editor-main/src/assets/icons/highlight.svg +1 -0
  81. package/src/components/editor-main/src/assets/icons/hr.svg +1 -0
  82. package/src/components/editor-main/src/assets/icons/html5.svg +1 -0
  83. package/src/components/editor-main/src/assets/icons/image-draggable.svg +1 -0
  84. package/src/components/editor-main/src/assets/icons/image-failed.svg +1 -0
  85. package/src/components/editor-main/src/assets/icons/image-flip.svg +1 -0
  86. package/src/components/editor-main/src/assets/icons/image-inline.svg +1 -0
  87. package/src/components/editor-main/src/assets/icons/image-preview.svg +1 -0
  88. package/src/components/editor-main/src/assets/icons/image-remove-background.svg +1 -0
  89. package/src/components/editor-main/src/assets/icons/image-reset.svg +1 -0
  90. package/src/components/editor-main/src/assets/icons/image-rotate.svg +1 -0
  91. package/src/components/editor-main/src/assets/icons/image.svg +1 -0
  92. package/src/components/editor-main/src/assets/icons/indent.svg +1 -0
  93. package/src/components/editor-main/src/assets/icons/italic.svg +1 -0
  94. package/src/components/editor-main/src/assets/icons/laser-pointer.svg +1 -0
  95. package/src/components/editor-main/src/assets/icons/layout-page.svg +1 -0
  96. package/src/components/editor-main/src/assets/icons/layout-web.svg +1 -0
  97. package/src/components/editor-main/src/assets/icons/letter-spacing.svg +1 -0
  98. package/src/components/editor-main/src/assets/icons/line-height.svg +1 -0
  99. package/src/components/editor-main/src/assets/icons/line-number.svg +1 -0
  100. package/src/components/editor-main/src/assets/icons/link.svg +1 -0
  101. package/src/components/editor-main/src/assets/icons/loading.svg +1 -0
  102. package/src/components/editor-main/src/assets/icons/locale.svg +1 -0
  103. package/src/components/editor-main/src/assets/icons/margin.svg +1 -0
  104. package/src/components/editor-main/src/assets/icons/markdown.svg +1 -0
  105. package/src/components/editor-main/src/assets/icons/math.svg +1 -0
  106. package/src/components/editor-main/src/assets/icons/mention.svg +1 -0
  107. package/src/components/editor-main/src/assets/icons/menu.svg +1 -0
  108. package/src/components/editor-main/src/assets/icons/mermaid.svg +1 -0
  109. package/src/components/editor-main/src/assets/icons/mind-map.svg +1 -0
  110. package/src/components/editor-main/src/assets/icons/minus.svg +1 -0
  111. package/src/components/editor-main/src/assets/icons/new-window.svg +1 -0
  112. package/src/components/editor-main/src/assets/icons/node-add.svg +1 -0
  113. package/src/components/editor-main/src/assets/icons/node-clear-format.svg +1 -0
  114. package/src/components/editor-main/src/assets/icons/node-copy.svg +1 -0
  115. package/src/components/editor-main/src/assets/icons/node-cut.svg +2 -0
  116. package/src/components/editor-main/src/assets/icons/node-delete-2.svg +1 -0
  117. package/src/components/editor-main/src/assets/icons/node-delete.svg +1 -0
  118. package/src/components/editor-main/src/assets/icons/node-duplicate.svg +1 -0
  119. package/src/components/editor-main/src/assets/icons/node-switch.svg +1 -0
  120. package/src/components/editor-main/src/assets/icons/ordered-list-2.svg +1 -0
  121. package/src/components/editor-main/src/assets/icons/ordered-list-decimal-leading-zero.svg +1 -0
  122. package/src/components/editor-main/src/assets/icons/ordered-list-decimal.svg +1 -0
  123. package/src/components/editor-main/src/assets/icons/ordered-list-lower-latin.svg +1 -0
  124. package/src/components/editor-main/src/assets/icons/ordered-list-lower-roman.svg +1 -0
  125. package/src/components/editor-main/src/assets/icons/ordered-list-simp-chinese-formal.svg +12 -0
  126. package/src/components/editor-main/src/assets/icons/ordered-list-trad-chinese-informal.svg +12 -0
  127. package/src/components/editor-main/src/assets/icons/ordered-list-upper-latin.svg +1 -0
  128. package/src/components/editor-main/src/assets/icons/ordered-list-upper-roman.svg +1 -0
  129. package/src/components/editor-main/src/assets/icons/ordered-list.svg +1 -0
  130. package/src/components/editor-main/src/assets/icons/outdent.svg +1 -0
  131. package/src/components/editor-main/src/assets/icons/page-background.svg +1 -0
  132. package/src/components/editor-main/src/assets/icons/page-break.svg +1 -0
  133. package/src/components/editor-main/src/assets/icons/page-footer.svg +1 -0
  134. package/src/components/editor-main/src/assets/icons/page-header.svg +1 -0
  135. package/src/components/editor-main/src/assets/icons/page-margin.svg +1 -0
  136. package/src/components/editor-main/src/assets/icons/page-orientation.svg +1 -0
  137. package/src/components/editor-main/src/assets/icons/page-size.svg +1 -0
  138. package/src/components/editor-main/src/assets/icons/page.svg +1 -0
  139. package/src/components/editor-main/src/assets/icons/palette-color.svg +1 -0
  140. package/src/components/editor-main/src/assets/icons/paragraph.svg +1 -0
  141. package/src/components/editor-main/src/assets/icons/pdf.svg +1 -0
  142. package/src/components/editor-main/src/assets/icons/plus.svg +1 -0
  143. package/src/components/editor-main/src/assets/icons/preview.svg +1 -0
  144. package/src/components/editor-main/src/assets/icons/print.svg +1 -0
  145. package/src/components/editor-main/src/assets/icons/qrcode.svg +1 -0
  146. package/src/components/editor-main/src/assets/icons/quote.svg +1 -0
  147. package/src/components/editor-main/src/assets/icons/redo.svg +1 -0
  148. package/src/components/editor-main/src/assets/icons/register.js +47 -0
  149. package/src/components/editor-main/src/assets/icons/reload.svg +1 -0
  150. package/src/components/editor-main/src/assets/icons/remove.svg +1 -0
  151. package/src/components/editor-main/src/assets/icons/reply.svg +1 -0
  152. package/src/components/editor-main/src/assets/icons/search-replace.svg +1 -0
  153. package/src/components/editor-main/src/assets/icons/select-all.svg +1 -0
  154. package/src/components/editor-main/src/assets/icons/selected.svg +1 -0
  155. package/src/components/editor-main/src/assets/icons/setting.svg +1 -0
  156. package/src/components/editor-main/src/assets/icons/share.svg +1 -0
  157. package/src/components/editor-main/src/assets/icons/shortcut.svg +1 -0
  158. package/src/components/editor-main/src/assets/icons/signature.svg +1 -0
  159. package/src/components/editor-main/src/assets/icons/skin.svg +1 -0
  160. package/src/components/editor-main/src/assets/icons/spellcheck.svg +1 -0
  161. package/src/components/editor-main/src/assets/icons/strike.svg +1 -0
  162. package/src/components/editor-main/src/assets/icons/subscript.svg +1 -0
  163. package/src/components/editor-main/src/assets/icons/superscript.svg +1 -0
  164. package/src/components/editor-main/src/assets/icons/symbol.svg +1 -0
  165. package/src/components/editor-main/src/assets/icons/table-add-column-after.svg +1 -0
  166. package/src/components/editor-main/src/assets/icons/table-add-column-before.svg +1 -0
  167. package/src/components/editor-main/src/assets/icons/table-add-row-after.svg +1 -0
  168. package/src/components/editor-main/src/assets/icons/table-add-row-before.svg +1 -0
  169. package/src/components/editor-main/src/assets/icons/table-cells-align.svg +1 -0
  170. package/src/components/editor-main/src/assets/icons/table-cells-background.svg +1 -0
  171. package/src/components/editor-main/src/assets/icons/table-delete-column.svg +1 -0
  172. package/src/components/editor-main/src/assets/icons/table-delete-row.svg +1 -0
  173. package/src/components/editor-main/src/assets/icons/table-delete.svg +1 -0
  174. package/src/components/editor-main/src/assets/icons/table-fix.svg +1 -0
  175. package/src/components/editor-main/src/assets/icons/table-header-cell.svg +1 -0
  176. package/src/components/editor-main/src/assets/icons/table-header-column.svg +1 -0
  177. package/src/components/editor-main/src/assets/icons/table-header-row.svg +1 -0
  178. package/src/components/editor-main/src/assets/icons/table-merge-cell.svg +1 -0
  179. package/src/components/editor-main/src/assets/icons/table-next-cell.svg +1 -0
  180. package/src/components/editor-main/src/assets/icons/table-previous-cell.svg +1 -0
  181. package/src/components/editor-main/src/assets/icons/table-split-cell.svg +1 -0
  182. package/src/components/editor-main/src/assets/icons/table.svg +1 -0
  183. package/src/components/editor-main/src/assets/icons/tag.svg +1 -0
  184. package/src/components/editor-main/src/assets/icons/task-list-2.svg +1 -0
  185. package/src/components/editor-main/src/assets/icons/task-list.svg +1 -0
  186. package/src/components/editor-main/src/assets/icons/template.svg +1 -0
  187. package/src/components/editor-main/src/assets/icons/text-box.svg +1 -0
  188. package/src/components/editor-main/src/assets/icons/text.svg +1 -0
  189. package/src/components/editor-main/src/assets/icons/theme.svg +1 -0
  190. package/src/components/editor-main/src/assets/icons/time.svg +1 -0
  191. package/src/components/editor-main/src/assets/icons/toc.svg +1 -0
  192. package/src/components/editor-main/src/assets/icons/toolbar-classic.svg +1 -0
  193. package/src/components/editor-main/src/assets/icons/toolbar-ribbon.svg +1 -0
  194. package/src/components/editor-main/src/assets/icons/toolbar-source.svg +1 -0
  195. package/src/components/editor-main/src/assets/icons/underline.svg +1 -0
  196. package/src/components/editor-main/src/assets/icons/undo.svg +1 -0
  197. package/src/components/editor-main/src/assets/icons/unlink.svg +1 -0
  198. package/src/components/editor-main/src/assets/icons/video.svg +1 -0
  199. package/src/components/editor-main/src/assets/icons/view.svg +1 -0
  200. package/src/components/editor-main/src/assets/icons/watermark.svg +1 -0
  201. package/src/components/editor-main/src/assets/icons/web-page.svg +1 -0
  202. package/src/components/editor-main/src/assets/icons/word-wrap.svg +1 -0
  203. package/src/components/editor-main/src/assets/icons/word.svg +1 -0
  204. package/src/components/editor-main/src/assets/icons/writing-mode.svg +1 -0
  205. package/src/components/editor-main/src/assets/icons/zoom-1.svg +1 -0
  206. package/src/components/editor-main/src/assets/icons/zoom-auto.svg +1 -0
  207. package/src/components/editor-main/src/assets/icons/zoom.svg +1 -0
  208. package/src/components/editor-main/src/assets/images/avatar.svg +1 -0
  209. package/src/components/editor-main/src/assets/images/format-painter.svg +1 -0
  210. package/src/components/editor-main/src/assets/images/laser-pointer.svg +1 -0
  211. package/src/components/editor-main/src/assets/images/logo.svg +1 -0
  212. package/src/components/editor-main/src/assets/images/watermark-compact.png +0 -0
  213. package/src/components/editor-main/src/assets/images/watermark-spacious.png +0 -0
  214. package/src/components/editor-main/src/assets/styles/_mixins.less +150 -0
  215. package/src/components/editor-main/src/assets/styles/_variables.less +97 -0
  216. package/src/components/editor-main/src/assets/styles/drager.less +123 -0
  217. package/src/components/editor-main/src/assets/styles/editor.less +917 -0
  218. package/src/components/editor-main/src/assets/styles/index.less +19 -0
  219. package/src/components/editor-main/src/assets/styles/plyr.less +26 -0
  220. package/src/components/editor-main/src/assets/styles/tdesign.less +341 -0
  221. package/src/components/editor-main/src/components/container/page.vue +392 -0
  222. package/src/components/editor-main/src/components/container/print.vue +191 -0
  223. package/src/components/editor-main/src/components/container/search-replace.vue +264 -0
  224. package/src/components/editor-main/src/components/container/toc.vue +260 -0
  225. package/src/components/editor-main/src/components/editor/index.vue +213 -0
  226. package/src/components/editor-main/src/components/icon.vue +43 -0
  227. package/src/components/editor-main/src/components/index.js +22 -0
  228. package/src/components/editor-main/src/components/index.vue +1396 -0
  229. package/src/components/editor-main/src/components/menus/block/common.vue +127 -0
  230. package/src/components/editor-main/src/components/menus/block/index.vue +217 -0
  231. package/src/components/editor-main/src/components/menus/block/node.vue +183 -0
  232. package/src/components/editor-main/src/components/menus/bubble/callout/background.vue +39 -0
  233. package/src/components/editor-main/src/components/menus/bubble/callout/builtin.vue +90 -0
  234. package/src/components/editor-main/src/components/menus/bubble/callout/emoji-remove.vue +28 -0
  235. package/src/components/editor-main/src/components/menus/bubble/file/download.vue +30 -0
  236. package/src/components/editor-main/src/components/menus/bubble/file/width.vue +22 -0
  237. package/src/components/editor-main/src/components/menus/bubble/image/convert.vue +63 -0
  238. package/src/components/editor-main/src/components/menus/bubble/image/edit.vue +32 -0
  239. package/src/components/editor-main/src/components/menus/bubble/image/open.vue +27 -0
  240. package/src/components/editor-main/src/components/menus/bubble/image/preview.vue +24 -0
  241. package/src/components/editor-main/src/components/menus/bubble/image/proportion.vue +34 -0
  242. package/src/components/editor-main/src/components/menus/bubble/index.vue +55 -0
  243. package/src/components/editor-main/src/components/menus/bubble/link/copy.vue +29 -0
  244. package/src/components/editor-main/src/components/menus/bubble/link/open.vue +27 -0
  245. package/src/components/editor-main/src/components/menus/bubble/link/unlink.vue +19 -0
  246. package/src/components/editor-main/src/components/menus/bubble/math.vue +36 -0
  247. package/src/components/editor-main/src/components/menus/bubble/menus.vue +209 -0
  248. package/src/components/editor-main/src/components/menus/bubble/node/delete.vue +15 -0
  249. package/src/components/editor-main/src/components/menus/bubble/node/duplicate.vue +40 -0
  250. package/src/components/editor-main/src/components/menus/bubble/node/tofile.vue +31 -0
  251. package/src/components/editor-main/src/components/menus/bubble/tag/background.vue +36 -0
  252. package/src/components/editor-main/src/components/menus/bubble/tag/builtin.vue +88 -0
  253. package/src/components/editor-main/src/components/menus/bubble/tag/color.vue +36 -0
  254. package/src/components/editor-main/src/components/menus/bubble/tag/delete.vue +14 -0
  255. package/src/components/editor-main/src/components/menus/bubble/tag/input.vue +63 -0
  256. package/src/components/editor-main/src/components/menus/bubble/text-box/background.vue +37 -0
  257. package/src/components/editor-main/src/components/menus/bubble/text-box/border.vue +186 -0
  258. package/src/components/editor-main/src/components/menus/bubble/text-box/writing-mode.vue +42 -0
  259. package/src/components/editor-main/src/components/menus/bubble/webpage/clickable.vue +31 -0
  260. package/src/components/editor-main/src/components/menus/bubble/webpage/open.vue +29 -0
  261. package/src/components/editor-main/src/components/menus/button.vue +630 -0
  262. package/src/components/editor-main/src/components/menus/toolbar/base/align-center.vue +33 -0
  263. package/src/components/editor-main/src/components/menus/toolbar/base/align-distributed.vue +18 -0
  264. package/src/components/editor-main/src/components/menus/toolbar/base/align-dropdown.vue +56 -0
  265. package/src/components/editor-main/src/components/menus/toolbar/base/align-justify.vue +18 -0
  266. package/src/components/editor-main/src/components/menus/toolbar/base/align-left.vue +32 -0
  267. package/src/components/editor-main/src/components/menus/toolbar/base/align-right.vue +33 -0
  268. package/src/components/editor-main/src/components/menus/toolbar/base/background-color.vue +72 -0
  269. package/src/components/editor-main/src/components/menus/toolbar/base/bold.vue +18 -0
  270. package/src/components/editor-main/src/components/menus/toolbar/base/bullet-list.vue +110 -0
  271. package/src/components/editor-main/src/components/menus/toolbar/base/clear-format.vue +15 -0
  272. package/src/components/editor-main/src/components/menus/toolbar/base/code.vue +18 -0
  273. package/src/components/editor-main/src/components/menus/toolbar/base/color.vue +75 -0
  274. package/src/components/editor-main/src/components/menus/toolbar/base/font-family.vue +528 -0
  275. package/src/components/editor-main/src/components/menus/toolbar/base/font-size.vue +163 -0
  276. package/src/components/editor-main/src/components/menus/toolbar/base/format-painter.vue +27 -0
  277. package/src/components/editor-main/src/components/menus/toolbar/base/heading.vue +322 -0
  278. package/src/components/editor-main/src/components/menus/toolbar/base/highlight.vue +127 -0
  279. package/src/components/editor-main/src/components/menus/toolbar/base/indent.vue +17 -0
  280. package/src/components/editor-main/src/components/menus/toolbar/base/italic.vue +18 -0
  281. package/src/components/editor-main/src/components/menus/toolbar/base/letter-spacing.vue +113 -0
  282. package/src/components/editor-main/src/components/menus/toolbar/base/line-height.vue +40 -0
  283. package/src/components/editor-main/src/components/menus/toolbar/base/margin.vue +118 -0
  284. package/src/components/editor-main/src/components/menus/toolbar/base/markdown.vue +50 -0
  285. package/src/components/editor-main/src/components/menus/toolbar/base/ordered-list.vue +184 -0
  286. package/src/components/editor-main/src/components/menus/toolbar/base/outdent.vue +17 -0
  287. package/src/components/editor-main/src/components/menus/toolbar/base/print.vue +19 -0
  288. package/src/components/editor-main/src/components/menus/toolbar/base/quote.vue +18 -0
  289. package/src/components/editor-main/src/components/menus/toolbar/base/redo.vue +20 -0
  290. package/src/components/editor-main/src/components/menus/toolbar/base/search-replace.vue +16 -0
  291. package/src/components/editor-main/src/components/menus/toolbar/base/select-all.vue +16 -0
  292. package/src/components/editor-main/src/components/menus/toolbar/base/strike.vue +18 -0
  293. package/src/components/editor-main/src/components/menus/toolbar/base/subscript.vue +18 -0
  294. package/src/components/editor-main/src/components/menus/toolbar/base/superscript.vue +18 -0
  295. package/src/components/editor-main/src/components/menus/toolbar/base/task-list.vue +47 -0
  296. package/src/components/editor-main/src/components/menus/toolbar/base/underline.vue +18 -0
  297. package/src/components/editor-main/src/components/menus/toolbar/base/undo.vue +18 -0
  298. package/src/components/editor-main/src/components/menus/toolbar/base/word-wrap.vue +47 -0
  299. package/src/components/editor-main/src/components/menus/toolbar/export/embed.vue +67 -0
  300. package/src/components/editor-main/src/components/menus/toolbar/export/html.vue +27 -0
  301. package/src/components/editor-main/src/components/menus/toolbar/export/image.vue +66 -0
  302. package/src/components/editor-main/src/components/menus/toolbar/export/pdf.vue +8 -0
  303. package/src/components/editor-main/src/components/menus/toolbar/export/share.vue +63 -0
  304. package/src/components/editor-main/src/components/menus/toolbar/export/text.vue +32 -0
  305. package/src/components/editor-main/src/components/menus/toolbar/insert/audio.vue +23 -0
  306. package/src/components/editor-main/src/components/menus/toolbar/insert/bookmark.vue +206 -0
  307. package/src/components/editor-main/src/components/menus/toolbar/insert/callout.vue +15 -0
  308. package/src/components/editor-main/src/components/menus/toolbar/insert/chinese-date.vue +112 -0
  309. package/src/components/editor-main/src/components/menus/toolbar/insert/code-block.vue +16 -0
  310. package/src/components/editor-main/src/components/menus/toolbar/insert/columns.vue +97 -0
  311. package/src/components/editor-main/src/components/menus/toolbar/insert/details.vue +34 -0
  312. package/src/components/editor-main/src/components/menus/toolbar/insert/emoji.vue +103 -0
  313. package/src/components/editor-main/src/components/menus/toolbar/insert/file.vue +23 -0
  314. package/src/components/editor-main/src/components/menus/toolbar/insert/footnote.vue +15 -0
  315. package/src/components/editor-main/src/components/menus/toolbar/insert/hard-break.vue +16 -0
  316. package/src/components/editor-main/src/components/menus/toolbar/insert/hr.vue +141 -0
  317. package/src/components/editor-main/src/components/menus/toolbar/insert/image.vue +84 -0
  318. package/src/components/editor-main/src/components/menus/toolbar/insert/link.vue +121 -0
  319. package/src/components/editor-main/src/components/menus/toolbar/insert/mention.vue +15 -0
  320. package/src/components/editor-main/src/components/menus/toolbar/insert/option-box.vue +324 -0
  321. package/src/components/editor-main/src/components/menus/toolbar/insert/symbol.vue +88 -0
  322. package/src/components/editor-main/src/components/menus/toolbar/insert/tag.vue +15 -0
  323. package/src/components/editor-main/src/components/menus/toolbar/insert/template.vue +76 -0
  324. package/src/components/editor-main/src/components/menus/toolbar/insert/text-box.vue +15 -0
  325. package/src/components/editor-main/src/components/menus/toolbar/insert/toc.vue +15 -0
  326. package/src/components/editor-main/src/components/menus/toolbar/insert/video.vue +23 -0
  327. package/src/components/editor-main/src/components/menus/toolbar/insert/web-page.vue +173 -0
  328. package/src/components/editor-main/src/components/menus/toolbar/page/background.vue +138 -0
  329. package/src/components/editor-main/src/components/menus/toolbar/page/break-marks.vue +26 -0
  330. package/src/components/editor-main/src/components/menus/toolbar/page/break.vue +20 -0
  331. package/src/components/editor-main/src/components/menus/toolbar/page/footer.vue +15 -0
  332. package/src/components/editor-main/src/components/menus/toolbar/page/header.vue +15 -0
  333. package/src/components/editor-main/src/components/menus/toolbar/page/line-number.vue +16 -0
  334. package/src/components/editor-main/src/components/menus/toolbar/page/margin.vue +17 -0
  335. package/src/components/editor-main/src/components/menus/toolbar/page/orientation.vue +63 -0
  336. package/src/components/editor-main/src/components/menus/toolbar/page/size.vue +67 -0
  337. package/src/components/editor-main/src/components/menus/toolbar/page/watermark.vue +200 -0
  338. package/src/components/editor-main/src/components/menus/toolbar/table/add-column-after.vue +20 -0
  339. package/src/components/editor-main/src/components/menus/toolbar/table/add-column-before.vue +20 -0
  340. package/src/components/editor-main/src/components/menus/toolbar/table/add-row-after.vue +20 -0
  341. package/src/components/editor-main/src/components/menus/toolbar/table/add-row-before.vue +20 -0
  342. package/src/components/editor-main/src/components/menus/toolbar/table/border-color.vue +35 -0
  343. package/src/components/editor-main/src/components/menus/toolbar/table/cells-align.vue +41 -0
  344. package/src/components/editor-main/src/components/menus/toolbar/table/cells-background.vue +32 -0
  345. package/src/components/editor-main/src/components/menus/toolbar/table/delete-column.vue +44 -0
  346. package/src/components/editor-main/src/components/menus/toolbar/table/delete-row.vue +44 -0
  347. package/src/components/editor-main/src/components/menus/toolbar/table/delete.vue +40 -0
  348. package/src/components/editor-main/src/components/menus/toolbar/table/fix.vue +17 -0
  349. package/src/components/editor-main/src/components/menus/toolbar/table/insert.vue +137 -0
  350. package/src/components/editor-main/src/components/menus/toolbar/table/merge-cells.vue +20 -0
  351. package/src/components/editor-main/src/components/menus/toolbar/table/next-cell.vue +21 -0
  352. package/src/components/editor-main/src/components/menus/toolbar/table/previous-cell.vue +21 -0
  353. package/src/components/editor-main/src/components/menus/toolbar/table/split-cell.vue +20 -0
  354. package/src/components/editor-main/src/components/menus/toolbar/table/toggle-header-cell.vue +20 -0
  355. package/src/components/editor-main/src/components/menus/toolbar/table/toggle-header-column.vue +20 -0
  356. package/src/components/editor-main/src/components/menus/toolbar/table/toggle-header-row.vue +20 -0
  357. package/src/components/editor-main/src/components/menus/toolbar/tools/barcode.vue +441 -0
  358. package/src/components/editor-main/src/components/menus/toolbar/tools/chinese-case.vue +135 -0
  359. package/src/components/editor-main/src/components/menus/toolbar/tools/diagrams.vue +141 -0
  360. package/src/components/editor-main/src/components/menus/toolbar/tools/echarts.vue +718 -0
  361. package/src/components/editor-main/src/components/menus/toolbar/tools/math.vue +339 -0
  362. package/src/components/editor-main/src/components/menus/toolbar/tools/mermaid.vue +293 -0
  363. package/src/components/editor-main/src/components/menus/toolbar/tools/mind-map.vue +7 -0
  364. package/src/components/editor-main/src/components/menus/toolbar/tools/qrcode.vue +293 -0
  365. package/src/components/editor-main/src/components/menus/toolbar/tools/signature.vue +208 -0
  366. package/src/components/editor-main/src/components/menus/toolbar/view/fullscreen.vue +17 -0
  367. package/src/components/editor-main/src/components/menus/toolbar/view/locale.vue +40 -0
  368. package/src/components/editor-main/src/components/menus/toolbar/view/page.vue +16 -0
  369. package/src/components/editor-main/src/components/menus/toolbar/view/preview.vue +16 -0
  370. package/src/components/editor-main/src/components/menus/toolbar/view/skin.vue +43 -0
  371. package/src/components/editor-main/src/components/menus/toolbar/view/theme.vue +41 -0
  372. package/src/components/editor-main/src/components/menus/toolbar/view/toc.vue +15 -0
  373. package/src/components/editor-main/src/components/menus/toolbar/view/web.vue +16 -0
  374. package/src/components/editor-main/src/components/menus/toolbar/view/zoom-auto.vue +27 -0
  375. package/src/components/editor-main/src/components/menus/toolbar/view/zoom-original.vue +18 -0
  376. package/src/components/editor-main/src/components/menus/toolbar/view/zoom.vue +35 -0
  377. package/src/components/editor-main/src/components/modal.vue +22 -0
  378. package/src/components/editor-main/src/components/page-options.vue +392 -0
  379. package/src/components/editor-main/src/components/picker/color.vue +208 -0
  380. package/src/components/editor-main/src/components/statusbar/about.vue +37 -0
  381. package/src/components/editor-main/src/components/statusbar/countdown.vue +273 -0
  382. package/src/components/editor-main/src/components/statusbar/index.vue +753 -0
  383. package/src/components/editor-main/src/components/statusbar/shortcuts.vue +313 -0
  384. package/src/components/editor-main/src/components/toolbar/classic.vue +325 -0
  385. package/src/components/editor-main/src/components/toolbar/index.vue +369 -0
  386. package/src/components/editor-main/src/components/toolbar/ribbon.vue +398 -0
  387. package/src/components/editor-main/src/components/toolbar/scrollable.vue +205 -0
  388. package/src/components/editor-main/src/components/tooltip.vue +23 -0
  389. package/src/components/editor-main/src/composables/copy.js +24 -0
  390. package/src/components/editor-main/src/composables/dialog.js +25 -0
  391. package/src/components/editor-main/src/composables/hotkeys.js +14 -0
  392. package/src/components/editor-main/src/composables/i18n.js +19 -0
  393. package/src/components/editor-main/src/composables/popup.js +11 -0
  394. package/src/components/editor-main/src/composables/select.js +13 -0
  395. package/src/components/editor-main/src/composables/state.js +30 -0
  396. package/src/components/editor-main/src/composables/toolbarSelection.js +68 -0
  397. package/src/components/editor-main/src/extensions/audio/index.js +59 -0
  398. package/src/components/editor-main/src/extensions/audio/node-view.vue +141 -0
  399. package/src/components/editor-main/src/extensions/bookmark.js +110 -0
  400. package/src/components/editor-main/src/extensions/break-marks.js +19 -0
  401. package/src/components/editor-main/src/extensions/bullet-list.js +21 -0
  402. package/src/components/editor-main/src/extensions/callout/index.js +128 -0
  403. package/src/components/editor-main/src/extensions/callout/node-view.vue +130 -0
  404. package/src/components/editor-main/src/extensions/code-block/index.js +32 -0
  405. package/src/components/editor-main/src/extensions/code-block/node-view.vue +399 -0
  406. package/src/components/editor-main/src/extensions/columns/dom.js +142 -0
  407. package/src/components/editor-main/src/extensions/columns/index.js +77 -0
  408. package/src/components/editor-main/src/extensions/columns/keymap.js +62 -0
  409. package/src/components/editor-main/src/extensions/columns/resize.js +60 -0
  410. package/src/components/editor-main/src/extensions/columns/schema.js +47 -0
  411. package/src/components/editor-main/src/extensions/columns/state.js +26 -0
  412. package/src/components/editor-main/src/extensions/columns/utils.js +55 -0
  413. package/src/components/editor-main/src/extensions/datetime/index.js +55 -0
  414. package/src/components/editor-main/src/extensions/datetime/node-view.vue +116 -0
  415. package/src/components/editor-main/src/extensions/echarts/cal-service.js +142 -0
  416. package/src/components/editor-main/src/extensions/echarts/index.js +115 -0
  417. package/src/components/editor-main/src/extensions/echarts/node-view.vue +220 -0
  418. package/src/components/editor-main/src/extensions/file/index.js +254 -0
  419. package/src/components/editor-main/src/extensions/file/node-view.vue +333 -0
  420. package/src/components/editor-main/src/extensions/file-handler.js +93 -0
  421. package/src/components/editor-main/src/extensions/foonotes/footnote.js +152 -0
  422. package/src/components/editor-main/src/extensions/foonotes/footnotes.js +41 -0
  423. package/src/components/editor-main/src/extensions/foonotes/index.js +7 -0
  424. package/src/components/editor-main/src/extensions/foonotes/reference.js +211 -0
  425. package/src/components/editor-main/src/extensions/foonotes/rules.js +103 -0
  426. package/src/components/editor-main/src/extensions/foonotes/utils.js +171 -0
  427. package/src/components/editor-main/src/extensions/format-painter.js +104 -0
  428. package/src/components/editor-main/src/extensions/horizontal-rule.js +93 -0
  429. package/src/components/editor-main/src/extensions/iframe/index.js +54 -0
  430. package/src/components/editor-main/src/extensions/iframe/node-view.vue +106 -0
  431. package/src/components/editor-main/src/extensions/image/image-resizer.vue +349 -0
  432. package/src/components/editor-main/src/extensions/image/index.js +216 -0
  433. package/src/components/editor-main/src/extensions/image/node-view.vue +592 -0
  434. package/src/components/editor-main/src/extensions/indent.js +226 -0
  435. package/src/components/editor-main/src/extensions/index.js +341 -0
  436. package/src/components/editor-main/src/extensions/letter-spacing.js +66 -0
  437. package/src/components/editor-main/src/extensions/line-height.js +147 -0
  438. package/src/components/editor-main/src/extensions/margin.js +266 -0
  439. package/src/components/editor-main/src/extensions/mention/index.js +33 -0
  440. package/src/components/editor-main/src/extensions/mention/mentions.vue +180 -0
  441. package/src/components/editor-main/src/extensions/mention/suggestion.js +90 -0
  442. package/src/components/editor-main/src/extensions/node-align.js +164 -0
  443. package/src/components/editor-main/src/extensions/node-select.js +51 -0
  444. package/src/components/editor-main/src/extensions/office-paste/index.js +70 -0
  445. package/src/components/editor-main/src/extensions/office-paste/transform/bookmark.js +17 -0
  446. package/src/components/editor-main/src/extensions/office-paste/transform/excel.js +85 -0
  447. package/src/components/editor-main/src/extensions/office-paste/transform/html-classes.js +9 -0
  448. package/src/components/editor-main/src/extensions/office-paste/transform/line-number.js +10 -0
  449. package/src/components/editor-main/src/extensions/office-paste/transform/list.js +148 -0
  450. package/src/components/editor-main/src/extensions/office-paste/transform/style.js +24 -0
  451. package/src/components/editor-main/src/extensions/office-paste/utils.js +120 -0
  452. package/src/components/editor-main/src/extensions/option-box/index.js +77 -0
  453. package/src/components/editor-main/src/extensions/option-box/node-view.vue +194 -0
  454. package/src/components/editor-main/src/extensions/ordered-list.js +36 -0
  455. package/src/components/editor-main/src/extensions/page-break.js +42 -0
  456. package/src/components/editor-main/src/extensions/search-replace.js +304 -0
  457. package/src/components/editor-main/src/extensions/selection.js +38 -0
  458. package/src/components/editor-main/src/extensions/table.js +65 -0
  459. package/src/components/editor-main/src/extensions/tag/index.js +47 -0
  460. package/src/components/editor-main/src/extensions/tag/node-view.vue +51 -0
  461. package/src/components/editor-main/src/extensions/text-align.js +44 -0
  462. package/src/components/editor-main/src/extensions/text-box/index.js +78 -0
  463. package/src/components/editor-main/src/extensions/text-box/node-view.vue +141 -0
  464. package/src/components/editor-main/src/extensions/toc/index.js +48 -0
  465. package/src/components/editor-main/src/extensions/toc/node-view.vue +159 -0
  466. package/src/components/editor-main/src/extensions/type-writer.js +256 -0
  467. package/src/components/editor-main/src/extensions/video/index.js +65 -0
  468. package/src/components/editor-main/src/extensions/video/node-view.vue +211 -0
  469. package/src/components/editor-main/src/extensions/word-wrap.js +94 -0
  470. package/src/components/editor-main/src/i18n.js +15 -0
  471. package/src/components/editor-main/src/locales/bo.json +707 -0
  472. package/src/components/editor-main/src/locales/en-US.json +802 -0
  473. package/src/components/editor-main/src/locales/it-IT.json +721 -0
  474. package/src/components/editor-main/src/locales/ru-RU.json +779 -0
  475. package/src/components/editor-main/src/locales/zh-CN.json +804 -0
  476. package/src/components/editor-main/src/options/config/dicts.js +369 -0
  477. package/src/components/editor-main/src/options/config/index.js +203 -0
  478. package/src/components/editor-main/src/options/index.js +7 -0
  479. package/src/components/editor-main/src/options/schema.js +732 -0
  480. package/src/components/editor-main/src/utils/content-transform.js +12 -0
  481. package/src/components/editor-main/src/utils/copyright.js +4 -0
  482. package/src/components/editor-main/src/utils/diagram-editor.js +153 -0
  483. package/src/components/editor-main/src/utils/editor-scroll.js +75 -0
  484. package/src/components/editor-main/src/utils/file.js +177 -0
  485. package/src/components/editor-main/src/utils/history-record.js +135 -0
  486. package/src/components/editor-main/src/utils/load-resource.js +45 -0
  487. package/src/components/editor-main/src/utils/options.js +25 -0
  488. package/src/components/editor-main/src/utils/player.js +91 -0
  489. package/src/components/editor-main/src/utils/selection.js +39 -0
  490. package/src/components/editor-main/src/utils/short-id.js +4 -0
  491. package/src/components/editor-main/src/utils/shortcut.js +17 -0
  492. package/src/components/editor-main/src/utils/time-ago.js +8 -0
  493. package/src/components/editor-main/umo-build-entry.js +570 -0
  494. package/src/css/elementUI/col.scss +10 -2
  495. package/src/css/elementUI/mixins/_col.scss +10 -2
  496. package/vite/highlightJsLibVirtual.ts +98 -0
  497. package/vite/projectRoot.ts +17 -0
  498. package/vite/tiptapUmoResolve.ts +140 -0
  499. package/vite/tiptapVueRendererFix.ts +171 -0
  500. package/vite/umoCjsVirtual.ts +192 -0
  501. package/vite/umoIntegration.js +611 -0
  502. package/vite/umoIntegration.ts +56 -0
  503. package/vite/yjsPeerResolve.ts +100 -0
  504. package/vite.config.ts +8 -0
  505. package/vite.config.umo.ts +82 -0
  506. package/src/components/RichTextEditor/UmoRichTextEditor.vue +0 -257
  507. package/src/types/umoteam-editor.d.ts +0 -8
@@ -0,0 +1,707 @@
1
+ {
2
+ "welcome": "%cཡིག་ཆ་བཟོ་བཅོས་ཆས%cད་ལྟའི་པར་གཞི། v{version}",
3
+ "toolbar": {
4
+ "ribbon": "ཆེད་ལས་ལག་ཆའི་སྡེ།",
5
+ "classic": "སྲོལ་རྒྱུན་ལག་ཆའི་སྡེ།",
6
+ "toggle": "ལག་ཆའི་སྡེ་བརྗེ་བ།",
7
+ "show": "ལག་ཆའི་སྡེ་མངོན་པ།",
8
+ "hide": "ལག་ཆའི་སྡེ་སྦས་པ།",
9
+ "base": "འགོ་འཛུགས།",
10
+ "insert": "བཅུག་པ།",
11
+ "table": "རེའུ་མིག",
12
+ "tools": "ལག་ཆ།",
13
+ "page": "ཤོག་ངོས།",
14
+ "export": "ཕྱིར་འདྲེན།"
15
+ },
16
+ "base": {
17
+ "align": {
18
+ "title": "སྒྲིག་སྟངས།",
19
+ "left": "གཡོན་སྒྲིག",
20
+ "center": "དཀྱིལ་སྒྲིག",
21
+ "right": "གཡས་སྒྲིག",
22
+ "justify": "ཕྱོགས་གཉིས་སྒྲིག",
23
+ "distributed": "ཁྱབ་སྒྲིག"
24
+ },
25
+ "bgColor": "ཡིག་གཟུགས་རྒྱབ་ལྗོངས་ཁ་དོག",
26
+ "bold": "སྦོམ་པོ།",
27
+ "clearFormat": "རྣམ་གཞག་གཙང་སེལ།",
28
+ "code": "ཚབ་ཨང་།",
29
+ "color": "ཡིག་གཟུགས་ཁ་དོག",
30
+ "fontFamily": {
31
+ "text": "ཡིག་གཟུགས་འདེམས་པ།",
32
+ "all": "རྒྱུན་སྤྱོད་ཡིག་གཟུགས།",
33
+ "recent": "ཉེ་ལམ་སྤྱད་པ།",
34
+ "used": "བེད་སྤྱོད་བྱས་ཟིན་པའི་ཡིག་གཟུགས།",
35
+ "unsupport": "ཡིག་གཟུགས་འདི་རྒྱུན་ལྡན་འཆར་མི་ཐུབ་པ་ཡིན་སྲིད། རྒྱུ་མཚན་ནི་འཕྲུལ་ཆས་ནང་དུ་ཡིག་གཟུགས་འདི་སྒྲིག་འཇུག་བྱས་མེད་པ་ཡིན་སྲིད།"
36
+ },
37
+ "fontSize": {
38
+ "text": "ཡིག་གཟུགས་ཆེ་ཆུང་།",
39
+ "increase": "ཡིག་གཟུགས་ཆེ་རུ་གཏོང་བ།",
40
+ "decrease": "ཡིག་གཟུགས་ཆུང་དུ་གཏོང་བ།",
41
+ "default": "སྔོན་སྒྲིག",
42
+ "42pt": "ཐོག་མའི་ཨང་།",
43
+ "36pt": "ཆུང་བའི་ཐོག་མ།",
44
+ "26pt": "ཨང་དང་པོ།",
45
+ "24pt": "ཆུང་བའི་དང་པོ།",
46
+ "22pt": "ཨང་གཉིས་པ།",
47
+ "18pt": "ཆུང་བའི་གཉིས་པ།",
48
+ "16pt": "ཨང་གསུམ་པ།",
49
+ "15pt": "ཆུང་བའི་གསུམ་པ།",
50
+ "14pt": "ཨང་བཞི་པ།",
51
+ "12pt": "ཆུང་བའི་བཞི་པ།",
52
+ "10_5pt": "ཨང་ལྔ་པ།",
53
+ "9pt": "ཆུང་བའི་ལྔ་པ།",
54
+ "7_5pt": "ཆུང་བའི་དྲུག་པ།",
55
+ "6_5pt": "སྔོན་སྒྲིག"
56
+ },
57
+ "formatPainter": {
58
+ "text": "རྣམ་གཞག་འབྱུག་པ།",
59
+ "tip": "རྣམ་གཞག་འབྱུག་པ། ཉིས་རྡེབ་བྱས་ན་བསྐྱར་སྤྱོད་བྱེད་ཆོག ESC མནན་ནས་ཕྱིར་འཐེན།"
60
+ },
61
+ "heading": {
62
+ "text": "འགོ་བརྗོད་ {level}",
63
+ "paragraph": "དཀྱུས་ཡིག",
64
+ "tip": "འགོ་བརྗོད་སྒྲིག་འགོད། འགོ་བརྗོད་ལ་གཞིགས་ནས་སྤྱི་བཀོལ་བཟོ་ཐུབ།"
65
+ },
66
+ "highlight": {
67
+ "text": "མཐོ་བསྟན།",
68
+ "clear": "མཐོ་བསྟན་གཙང་སེལ།",
69
+ "yellowBg": "སེར་པོའི་རྒྱབ་ལྗོངས།",
70
+ "purpleBg": "སྨུག་པོའི་རྒྱབ་ལྗོངས།",
71
+ "greenBg": "ལྗང་ཁུའི་རྒྱབ་ལྗོངས།",
72
+ "blueBg": "སྔོན་པོའི་རྒྱབ་ལྗོངས།",
73
+ "red": "དམར་པོའི་ཡིག་གཟུགས།",
74
+ "green": "ལྗང་ཁུའི་ཡིག་གཟུགས།"
75
+ },
76
+ "italic": "གསེག་མ།",
77
+ "strikethrough": "ཐིག་འགོས།",
78
+ "subscript": "འོག་གི་ཡི་གེ",
79
+ "superscript": "སྟེང་གི་ཡི་གེ",
80
+ "underline": "འོག་ཐིག",
81
+ "quote": "ལུང་འདྲེན།",
82
+ "textIndent": {
83
+ "text": "ཡིག་ཕྲེང་ནང་འཇུག",
84
+ "increase": "ནང་འཇུག་ཆེ་རུ་གཏོང་བ།",
85
+ "decrease": "ནང་འཇུག་ཆུང་དུ་གཏོང་བ།"
86
+ }
87
+ },
88
+ "insert": {
89
+ "audio": "སྒྲ་ཟློས།",
90
+ "codeBlock": "ཚབ་ཨང་སྡེ་ཚན།",
91
+ "date": "དུས་ཚོད།",
92
+ "emoji": "འཛུམ་རིས།",
93
+ "file": "ཡིག་ཆ།",
94
+ "hardBreak": "འཕྲེད་སྒྲིག་རྟགས།",
95
+ "hr": {
96
+ "text": "དབྱེ་མཚམས་ཐིག",
97
+ "title": "དབྱེ་མཚམས་ཐིག་གི་རིགས།",
98
+ "color": "དབྱེ་མཚམས་ཐིག་གི་ཁ་དོག",
99
+ "signle": "ཕྲ་ཐིག",
100
+ "double": "ཉིས་ཐིག་ཕྲ་མོ།",
101
+ "dotted": "ཐིག་ཐིག",
102
+ "dashed": "ཆད་ཐིག",
103
+ "dashedDouble": "ཉིས་ཐིག་ཆད་མ།",
104
+ "signleBold": "སྦོམ་ཐིག",
105
+ "doubleBoldTop": "སྦོམ་ཕྲའི་ཐིག",
106
+ "doubleBoldBottom": "ཕྲ་སྦོམ་ཐིག",
107
+ "wavy": "རླབས་ཐིག"
108
+ },
109
+ "option": {
110
+ "text": "སྐྱོང་སྟངས།",
111
+ "radio": "དང་དོན་གཅིག་དང་ལྡན་ལེགས་སྐྱོང་།",
112
+ "checkbox": "མི་འདྲ་དོན་སྟངས་ཀྱི་ལེགས་སྐྱོང་།",
113
+ "tip": "སྐྱོང་སྟངས་ཀྱི་སྣ་འདྲ",
114
+ "content": "སྐྱོང་སྟངས་ཀྱི་ནང་དོན",
115
+ "add": "སྐྱོང་སྟངས་དེང་སྐྱོད",
116
+ "checkall": "ཐོག་མ་དང་ལྡན་སྟངས་སྲིད་ཐུབ་",
117
+ "check": "ཐོག་མ་དང་ལྡན་",
118
+ "confirm": "རྟག་ཏུ་རྡོ་རྗེ",
119
+ "cancel": "སྐྱོང་འདེམས",
120
+ "text1": "སྐྱོང་སྟངས་ 1",
121
+ "text2": "སྐྱོང་སྟངས་ 2"
122
+ },
123
+ "image": {
124
+ "text": "པར་རིས།",
125
+ "block": "པར་རིས།",
126
+ "blockdesc": "སྡེ་སྟངས་སྲིད་སྟངས་ལ་པར་རིས་སྒྲིག་འདུག",
127
+ "inline": "ལམ་སྟངས་ཀྱི་པར་རིས།",
128
+ "inlinedesc": "དེབ་སྟངས་སྲིད་སྟངས་ལ་པར་རིས་སྒྲིག་འདུག"
129
+ },
130
+ "link": "འབྲེལ་མཐུད།",
131
+ "math": "རྩིས་རིག",
132
+ "table": "རེའུ་མིག",
133
+ "time": "དུས་ཚོད།",
134
+ "video": "བརྙན་ཟློས།"
135
+ },
136
+ "table": {
137
+ "addColumnAfter": "གཡས་སུ་ཐིག་ཤར་སྣོན་པ།",
138
+ "addColumnBefore": "གཡོན་དུ་ཐིག་ཤར་སྣོན་པ།",
139
+ "addRowAfter": "འོག་ཏུ་ཐིག་ཕྲེང་སྣོན་པ།",
140
+ "addRowBefore": "སྟེང་དུ་ཐིག་ཕྲེང་སྣོན་པ།",
141
+ "borderColor": "མཐའ་སྒྲོམ་གྱི་ཁ་དོག",
142
+ "cellAlign": {
143
+ "text": "སྒྲིག་སྟངས།",
144
+ "tip": "ཕྲེང་ཐིག་གི་སྒྲིག་སྟངས།",
145
+ "lt": "གོང་གཡོན་སྒྲིག",
146
+ "ct": "གོང་དཀྱིལ་སྒྲིག",
147
+ "rt": "གོང་གཡས་སྒྲིག",
148
+ "jt": "གོང་ཕྱོགས་གཉིས་སྒྲིག",
149
+ "lm": "དཀྱིལ་གཡོན་སྒྲིག",
150
+ "cm": "དཀྱིལ་དཀྱིལ་སྒྲིག",
151
+ "rm": "དཀྱིལ་གཡས་སྒྲིག",
152
+ "jm": "དཀྱིལ་ཕྱོགས་གཉིས་སྒྲིག",
153
+ "lb": "འོག་གཡོན་སྒྲིག",
154
+ "cb": "འོག་དཀྱིལ་སྒྲིག",
155
+ "rb": "འོག་གཡས་སྒྲིག",
156
+ "jb": "འོག་ཕྱོགས་གཉིས་སྒྲིག"
157
+ },
158
+ "cellBgColor": {
159
+ "text": "རྒྱབ་ལྗོངས་ཁ་དོག",
160
+ "tip": "ཕྲེང་ཐིག་གི་རྒྱབ་ལྗོངས་ཁ་དོག"
161
+ },
162
+ "deleteColumn": {
163
+ "text": "ཐིག་ཤར་སུབ་པ།",
164
+ "title": "རེའུ་མིག་གི་ཐིག་ཤར་སུབ་པ།",
165
+ "message": "བྱ་བ་འདིས་ད་ལྟ་འདེམས་ཟིན་པའི་རེའུ་མིག་གི་ཐིག་ཤར་སུབ་ངེས། མུ་མཐུད་དམ།",
166
+ "delete": "ལམ་སེང་སུབ་པ།",
167
+ "success": "སུབ་ཟིན།"
168
+ },
169
+ "deleteRow": {
170
+ "text": "ཐིག་ཕྲེང་སུབ་པ།",
171
+ "title": "རེའུ་མིག་གི་ཐིག་ཕྲེང་སུབ་པ།",
172
+ "message": "བྱ་བ་འདིས་ད་ལྟ་འདེམས་ཟིན་པའི་རེའུ་མིག་གི་ཐིག་ཕྲེང་སུབ་ངེས། མུ་མཐུད་དམ།",
173
+ "delete": "ལམ་སེང་སུབ་པ།",
174
+ "success": "སུབ་ཟིན།"
175
+ },
176
+ "delete": {
177
+ "text": "རེའུ་མིག་སུབ་པ།",
178
+ "title": "ད་ལྟའི་རེའུ་མིག་སུབ་པ།",
179
+ "message": "བྱ་བ་འདིས་ད་ལྟའི་རེའུ་མིག་ཡོངས་རྫོགས་སུབ་ངེས། མུ་མཐུད་དམ།",
180
+ "delete": "ལམ་སེང་སུབ་པ།",
181
+ "success": "སུབ་ཟིན།"
182
+ },
183
+ "fix": {
184
+ "text": "བཅོས་པ།",
185
+ "tip": "རེའུ་མིག་འཁྲུགས་སྐབས། གནོན་ཐེབས་འདི་མནན་ན་རེའུ་མིག་རང་འགུལ་ངང་བཅོས་ཐུབ།"
186
+ },
187
+ "insert": {
188
+ "text": "རེའུ་མིག་བཅུག་པ།",
189
+ "tip": "རེའུ་མིག་གསར་པ་བཅུག་པ།",
190
+ "property": "རེའུ་མིག་གི་ཁྱད་ཆོས།",
191
+ "withHeader": "མགོ་བྱང་ཚུད་པ།",
192
+ "rows": "ཐིག་ཕྲེང་གྲངས།",
193
+ "cols": "ཐིག་ཤར་གྲངས།",
194
+ "create": "རེའུ་མིག་གསར་བཟོ།"
195
+ },
196
+ "mergeCells": "ཕྲེང་ཐིག་སྡེབ་སྒྲིག",
197
+ "nextCell": "རྗེས་མའི་ཕྲེང་ཐིག",
198
+ "prevCell": "སྔོན་མའི་ཕྲེང་ཐིག",
199
+ "splitCell": "ཕྲེང་ཐིག་དབྱེ་བ།",
200
+ "toggleHeaderCell": "མགོ་བྱང་ཕྲེང་ཐིག་བརྗེ་བ།",
201
+ "toggleHeaderRow": "མགོ་བྱང་ཐིག་ཕྲེང་བརྗེ་བ།",
202
+ "toggleHeaderColumn": "མགོ་བྱང་ཐིག་ཤར་བརྗེ་བ།",
203
+ "cellBorderColor": {
204
+ "text": "ཕྲེང་ཐིག་མཐའ་སྒྲོམ་གྱི་ཁ་དོག",
205
+ "tip": "ཕྲེང་ཐིག་མཐའ་སྒྲོམ་གྱི་ཁ་དོག་སྒྲིག་འགོད།"
206
+ }
207
+ },
208
+ "tools": {
209
+ "barcode": {
210
+ "text": "བར་ཐིག་ཨང་རྟགས།",
211
+ "edit": "བར་ཐིག་ཨང་རྟགས་རྩོམ་སྒྲིག",
212
+ "title": "བར་ཐིག་ཨང་རྟགས་བཟོ་བ།",
213
+ "format": "བར་ཐིག་ཨང་རྟགས་ཚད་གཞི།",
214
+ "font": "ཡིག་གཟུགས།",
215
+ "lineColor": "བར་ཐིག་དང་ཡི་གེའི་ཁ་དོག",
216
+ "bgColor": "བར་ཐིག་ཨང་རྟགས་ཀྱི་རྒྱབ་ལྗོངས་ཁ་དོག",
217
+ "more": "དེ་ལས་མང་བ།",
218
+ "width": "བར་ཐིག་རེ་རེའི་ཞེང་ཚད།",
219
+ "height": "བར་ཐིག་ཨང་རྟགས་ཀྱི་མཐོ་ཚད།",
220
+ "margin": "བར་ཐིག་ཨང་རྟགས་ཀྱི་མཐའ་མཚམས་སྟོང་ཆ།",
221
+ "displayValue": "ཡི་གེ་མངོན་པ།",
222
+ "displayValueText": "ཡི་གེ་མངོན་པ།",
223
+ "textContent": "ཡི་གེའི་ནང་དོན།",
224
+ "textContentTip": "བཀང་རྗེས་བར་ཐིག་ཨང་རྟགས་ཀྱི་ནང་དོན་ཡི་གེ་ཐོག་བརྗེ་ངེས།",
225
+ "textPosition": "ཡི་གེའི་གནས་ས།",
226
+ "top": "སྟེང་།",
227
+ "bottom": "འོག",
228
+ "textMargin": "ཡི་གེའི་བར་ཐག",
229
+ "fontSize": "ཡི་གེའི་ཆེ་ཆུང་།",
230
+ "placeholder": "བར་ཐིག་ཨང་རྟགས་སུ་བསྒྱུར་རྒྱུའི་ནང་དོན་འཇུག་རོགས།",
231
+ "error": "ཁྱེད་ཀྱིས་བཅུག་པའི་ནང་དོན་ད་ལྟ་འདེམས་པའི་བར་ཐིག་ཨང་རྟགས་ཀྱི་ཚད་གཞི་དང་མི་མཐུན་སྲིད། ཞིབ་བཤེར་གནང་རོགས།",
232
+ "preview": "སྔོན་ལྟ།",
233
+ "renderError": "ད་ལྟ་སྔོན་ལྟའི་ནང་དོན་མེད།",
234
+ "notEmpty": "བར་ཐིག་ཨང་རྟགས་ཀྱི་ནང་དོན་སྟོང་པ་ཡིན་མི་ཆོག"
235
+ },
236
+ "chineseCase": {
237
+ "text": "རྒྱ་ཡིག་ཆེ་ཆུང་།",
238
+ "tip": "རྒྱ་ཡིག་ཆེ་ཆུང་།"
239
+ },
240
+ "diagrams": {
241
+ "text": "རྒྱུན་འགྲོས་རི་མོ།",
242
+ "edit": "རྒྱུན་འགྲོས་རི་མོ་རྩོམ་སྒྲིག",
243
+ "loading": "འཇུག་བཞིན་པ།"
244
+ },
245
+ "mermaid": {
246
+ "text": "Mermaid",
247
+ "edit": "Mermaid རྩོམ་སྒྲིག",
248
+ "placeholder": "Mermaid ཚབ་ཨང་འཇུག་རོགས།",
249
+ "preview": "སྔོན་ལྟ།",
250
+ "notEmpty": "Mermaid ནང་དོན་སྟོང་པ་ཡིན་མི་ཆོག"
251
+ },
252
+ "mindMap": "བསམ་བློའི་ས་ཁྲ།",
253
+ "qrcode": {
254
+ "text": "གྲུ་བཞི་མའི་ཨང་རྟགས།",
255
+ "edit": "གྲུ་བཞི་མའི་ཨང་རྟགས་རྩོམ་སྒྲིག",
256
+ "level": "གྲུ་བཞི་མའི་ཨང་རྟགས་ཀྱི་ནོར་འཁྲུལ་ཚོད་འཛིན་ནུས་པ།",
257
+ "levelL": "དམའ་བ།",
258
+ "levelM": "འབྲིང་།",
259
+ "levelQ": "མཐོ་བ།",
260
+ "levelH": "མཐོ་ཤོས།",
261
+ "padding": "མཐའ་མཚམས་སྟོང་ཆ།",
262
+ "paddingTip": "གྲུ་བཞི་མའི་ཨང་རྟགས་ཀྱི་མཐའ་བཞིའི་སྟོང་ཆ།",
263
+ "width": "ཞེང་དང་མཐོ་ཚད།",
264
+ "widthTip": "གྲུ་བཞི་མའི་ཨང་རྟགས་ཀྱི་ཞེང་དང་མཐོ་ཚད།",
265
+ "color": "གྲུ་བཞི་མའི་ཨང་རྟགས་ཀྱི་ཁ་དོག",
266
+ "bgColor": "གྲུ་བཞི་མའི་ཨང་རྟགས་ཀྱི་རྒྱབ་ལྗོངས་ཁ་དོག",
267
+ "placeholder": "གྲུ་བཞི་མའི་ཨང་རྟགས་སུ་བསྒྱུར་རྒྱུའི་ནང་དོན་འཇུག་རོགས།",
268
+ "preview": "སྔོན་ལྟ།",
269
+ "renderError": "གྲུ་བཞི་མའི་ཨང་རྟགས་བཟོ་མ་ཐུབ།",
270
+ "notEmpty": "གྲུ་བཞི་མའི་ཨང་རྟགས་ཀྱི་ནང་དོན་སྟོང་པ་ཡིན་མི་ཆོག"
271
+ }
272
+ },
273
+ "page": {
274
+ "bg": {
275
+ "text": "ཤོག་ངོས་རྒྱབ་ལྗོངས།",
276
+ "custom": "རང་སྒྲུབ་ཤོག་ངོས་རྒྱབ་ལྗོངས།",
277
+ "default": "སྔོན་སྒྲིག་རྒྱབ་ལྗོངས།",
278
+ "color1": "མིག་སྲུང་ལྗང་ཁུ།",
279
+ "color2": "སེར་སྐྱ་འཇམ་པོ།",
280
+ "color3": "སྤྲིན་ཆུ་སྔོན་པོ།",
281
+ "color4": "གནམ་སྔོན།",
282
+ "color5": "མཚན་མོའི་ནག་པོ།"
283
+ },
284
+ "breakMarks": "བརྗེ་ཐིག་མངོན་པ།",
285
+ "break": "ཤོག་ངོས་བརྗེ་རྟགས།",
286
+ "lineNumber": "ཐིག་གྲངས་མངོན་པ།",
287
+ "margin": "ཤོག་ཟུར་བར་ཐག",
288
+ "orientation": {
289
+ "text": "ཤོག་ངོས་ཁ་ཕྱོགས།",
290
+ "landscape": "འཕྲེད་དུ།",
291
+ "portrait": "གཞུང་དུ།"
292
+ },
293
+ "preview": "སྔོན་ལྟའི་རྣམ་པ།",
294
+ "size": {
295
+ "text": "ཤོག་ངོས་ཆེ་ཆུང་།",
296
+ "cm": "སེན་ཊི་མི་ཊར།",
297
+ "custom": "རང་སྒྲུབ།"
298
+ },
299
+ "watermark": {
300
+ "text": "ཤོག་ངོས་ཆུ་རྟགས།",
301
+ "fontFamily": "ཆུ་རྟགས་ཡིག་གཟུགས།",
302
+ "fontSize": "ཆུ་རྟགས་ཡིག་གཟུགས་ཆེ་ཆུང་།",
303
+ "fontColor": "ཆུ་རྟགས་ཡིག་གཟུགས་ཁ་དོག",
304
+ "content": "ཆུ་རྟགས་ཡིག་གཟུགས་ནང་དོན།",
305
+ "type": "ཆུ་རྟགས་རིགས།",
306
+ "compact": "གཅུས་པོ།",
307
+ "spacious": "ཁ་གྱེས་པོ།",
308
+ "clear": "ཆུ་རྟགས་གཙང་སེལ།"
309
+ }
310
+ },
311
+ "pageOptions": {
312
+ "title": "ཤོག་ངོས་སྒྲིག་འགོད།",
313
+ "size": {
314
+ "text": "ཤོག་ངོས་ཚད།",
315
+ "width": "ཞེང་ཚད།",
316
+ "height": "མཐོ་ཚད།",
317
+ "custom": "རང་སྒྲུབ།"
318
+ },
319
+ "margin": {
320
+ "text": "ཤོག་ངོས་མཐའ་མཚམས།",
321
+ "default": "སྔོན་སྒྲིག",
322
+ "narrow": "དོག་པོ།",
323
+ "moderate": "འཚམ་པོ།",
324
+ "wide": "ཞེང་ཆེ་བ།",
325
+ "top": "སྟེང་།",
326
+ "right": "གཡས།",
327
+ "bottom": "འོག",
328
+ "left": "གཡོན།"
329
+ }
330
+ },
331
+ "export": {
332
+ "text": "ཕྱིར་འདྲེན།",
333
+ "docx": {
334
+ "text": "Word ཡིག་ཆ།",
335
+ "tip": "Word ཡིག་ཆར་ཕྱིར་འདྲེན།",
336
+ "loading": "Word ཡིག་ཆར་ཕྱིར་འདྲེན་བཞིན་པ།",
337
+ "success": "Word ཡིག་ཆར་ཕྱིར་འདྲེན་ཐུབ་སོང་།",
338
+ "error": "Word ཡིག་ཆར་ཕྱིར་འདྲེན་མ་ཐུབ།"
339
+ },
340
+ "html": {
341
+ "text": "HTML ཡིག་ཆ།",
342
+ "tip": "HTML ཡིག་ཆར་ཕྱིར་འདྲེན།",
343
+ "loading": "HTML ཡིག་ཆར་ཕྱིར་འདྲེན་བཞིན་པ།",
344
+ "success": "HTML ཡིག་ཆར་ཕྱིར་འདྲེན་ཐུབ་སོང་།",
345
+ "error": "HTML ཡིག་ཆར་ཕྱིར་འདྲེན་མ་ཐུབ།"
346
+ },
347
+ "markdown": {
348
+ "text": "Markdown ཡིག་ཆ།",
349
+ "tip": "Markdown ཡིག་ཆར་ཕྱིར་འདྲེན།",
350
+ "loading": "Markdown ཡིག་ཆར་ཕྱིར་འདྲེན་བཞིན་པ།",
351
+ "success": "Markdown ཡིག་ཆར་ཕྱིར་འདྲེན་ཐུབ་སོང་།",
352
+ "error": "Markdown ཡིག་ཆར་ཕྱིར་འདྲེན་མ་ཐུབ།"
353
+ },
354
+ "pdf": {
355
+ "text": "PDF ཡིག་ཆ།",
356
+ "tip": "PDF ཡིག་ཆར་ཕྱིར་འདྲེན།",
357
+ "loading": "PDF ཡིག་ཆར་ཕྱིར་འདྲེན་བཞིན་པ།",
358
+ "success": "PDF ཡིག་ཆར་ཕྱིར་འདྲེན་ཐུབ་སོང་།",
359
+ "error": "PDF ཡིག་ཆར་ཕྱིར་འདྲེན་མ་ཐུབ།"
360
+ },
361
+ "image": {
362
+ "text": "པར་རིས།",
363
+ "tip": "པར་རིས་སུ་ཕྱིར་འདྲེན།",
364
+ "loading": "པར་རིས་སུ་ཕྱིར་འདྲེན་བཞིན་པ།",
365
+ "success": "པར་རིས་སུ་ཕྱིར་འདྲེན་ཐུབ་སོང་།",
366
+ "error": "པར་རིས་སུ་ཕྱིར་འདྲེན་མ་ཐུབ།"
367
+ }
368
+ },
369
+ "list": {
370
+ "bulletList": {
371
+ "text": "མཚོན་རྟགས་ཅན་གྱི་ཐོ།",
372
+ "tip": "མཚོན་རྟགས་ཅན་གྱི་ཐོ་ཞིག་བཟོ་བ།"
373
+ },
374
+ "orderedList": {
375
+ "text": "ཨང་གྲངས་ཅན་གྱི་ཐོ།",
376
+ "tip": "ཨང་གྲངས་ཅན་གྱི་ཐོ་ཞིག་བཟོ་བ།"
377
+ },
378
+ "taskList": {
379
+ "text": "ལས་འགན་ཐོ།",
380
+ "tip": "ལས་འགན་ཐོ་ཞིག་བཟོ་བ།"
381
+ },
382
+ "indent": {
383
+ "increase": "ནང་ཞུགས་ཆེ་རུ་གཏོང་བ།",
384
+ "decrease": "ནང་ཞུགས་ཆུང་དུ་གཏོང་བ།"
385
+ }
386
+ },
387
+ "colorPicker": {
388
+ "text": "ཁ་དོག་འདེམས་བྱེད།",
389
+ "custom": "རང་སྒྲུབ་ཁ་དོག",
390
+ "default": "སྔོན་སྒྲིག་ཁ་དོག",
391
+ "recent": "ཉེ་ལམ་སྤྱད་པའི་ཁ་དོག",
392
+ "more": "ཁ་དོག་དེ་ལས་མང་བ།",
393
+ "gradient": "སྐས་རིམ་ཁ་དོག",
394
+ "gradientDirection": "སྐས་རིམ་ཁ་ཕྱོགས།",
395
+ "gradientStop": "སྐས་རིམ་མཚམས་འཇོག",
396
+ "transparency": "དྭངས་ཚད།",
397
+ "transparencyTip": "དྭངས་ཚད་སྒྲིག་འགོད།"
398
+ },
399
+ "dialog": {
400
+ "ok": "གཏན་འཁེལ།",
401
+ "cancel": "འདོར་བ།",
402
+ "close": "ཁ་རྒྱག",
403
+ "apply": "ལག་བསྟར།",
404
+ "confirm": "ངེས་གཏན།",
405
+ "delete": "སུབ་པ།",
406
+ "save": "ཉར་ཚགས།",
407
+ "reset": "བསྐྱར་སྒྲིག",
408
+ "loading": "སྣོན་འཇུག་བྱེད་བཞིན་པ།",
409
+ "error": "ནོར་འཁྲུལ་བྱུང་སོང་།",
410
+ "success": "ལེགས་གྲུབ་བྱུང་སོང་།",
411
+ "warning": "ཉེན་བརྡ།"
412
+ },
413
+ "tooltip": {
414
+ "shortcut": "མྱུར་མཐེབ་:{0}",
415
+ "moreOptions": "གདམ་ག་དེ་ལས་མང་བ།",
416
+ "noData": "གནས་ཚུལ་མི་འདུག",
417
+ "loading": "སྣོན་འཇུག་བྱེད་བཞིན་པ།"
418
+ },
419
+ "message": {
420
+ "unsavedChanges": "ཁྱེད་ཀྱིས་བཟོས་པའི་འགྱུར་བ་ཉར་ཚགས་བྱས་མི་འདུག ཕྱིར་ཐོན་རྒྱུ་གཏན་འཁེལ་ལམ།",
421
+ "confirmDelete": "གཏན་འཁེལ་སུབ་རྒྱུ་ཡིན་ནམ།",
422
+ "deleteSuccess": "ལེགས་པར་བསུབས་ཟིན།",
423
+ "deleteFailed": "སུབ་མ་ཐུབ།",
424
+ "saveSuccess": "ལེགས་པར་ཉར་ཚགས་བྱས་ཟིན།",
425
+ "saveFailed": "ཉར་ཚགས་བྱེད་མ་ཐུབ།",
426
+ "networkError": "དྲ་རྒྱའི་སྦྲེལ་མཐུད་ནོར་འཁྲུལ་བྱུང་སོང་།",
427
+ "sessionExpired": "གནས་སྐབས་ཚད་བརྒལ་བས། ཡང་བསྐྱར་ནང་འཛུལ་གནང་རོགས།"
428
+ },
429
+ "error": {
430
+ "required": "{field} ངེས་པར་དུ་འབྲི་དགོས།",
431
+ "format": "{field} རྣམ་གཞག་ནོར་འདུག",
432
+ "maxLength": "{field} ཡི་རིང་ཚད་ {max} ལས་བརྒལ་མི་ཆོག",
433
+ "minLength": "{field} ཡི་རིང་ཚད་ {min} ལས་ཉུང་མི་ཆོག",
434
+ "maxValue": "{field} ཡི་ཚད་གཞི་ {max} ལས་བརྒལ་མི་ཆོག",
435
+ "minValue": "{field} ཡི་ཚད་གཞི་ {min} ལས་ཉུང་མི་ཆོག",
436
+ "invalidValue": "{field} ནུས་མེད་ཀྱི་ཚད་གཞི་རེད་འདུག"
437
+ },
438
+ "shortcuts": {
439
+ "title": "མྱུར་མཐེབ་ཀྱི་སྒྲིག་འགོད།",
440
+ "edit": "རྩོམ་སྒྲིག",
441
+ "view": "ལྟ་བ།",
442
+ "insert": "བཅུག་པ།",
443
+ "format": "རྣམ་གཞག",
444
+ "table": "རེའུ་མིག",
445
+ "other": "གཞན་དག",
446
+ "common": {
447
+ "bold": "སྦོམ་པོ།",
448
+ "italic": "གསེག་མ།",
449
+ "underline": "འོག་ཐིག",
450
+ "strike": "ཐིག་འགོས།",
451
+ "undo": "ཕྱིར་འཐེན།",
452
+ "redo": "བསྐྱར་བཟོ།",
453
+ "save": "ཉར་ཚགས།"
454
+ },
455
+ "format": {
456
+ "bold": "Ctrl + B",
457
+ "italic": "Ctrl + I",
458
+ "underline": "Ctrl + U",
459
+ "strike": "Ctrl + Shift + X",
460
+ "superscript": "Ctrl + Shift + =",
461
+ "subscript": "Ctrl + =",
462
+ "removeFormat": "Ctrl + \\",
463
+ "other": "other"
464
+ },
465
+ "insert": {
466
+ "link": "Ctrl + K",
467
+ "image": "Ctrl + Shift + I",
468
+ "table": "Ctrl + Shift + T",
469
+ "hr": "Ctrl + Shift + -"
470
+ }
471
+ },
472
+ "common": {
473
+ "loading": "སྣོན་འཇུག་བྱེད་བཞིན་པ།",
474
+ "processing": "ལས་བཞིན་པ།",
475
+ "saving": "ཉར་ཚགས་བྱེད་བཞིན་པ།",
476
+ "saved": "ཉར་ཚགས་བྱས་ཟིན།",
477
+ "error": "ནོར་འཁྲུལ་བྱུང་སོང་།",
478
+ "retry": "ཡང་བསྐྱར་ཚོད་ལྟ།",
479
+ "cancel": "འདོར་བ།",
480
+ "confirm": "གཏན་འཁེལ།",
481
+ "delete": "སུབ་པ།",
482
+ "edit": "རྩོམ་སྒྲིག",
483
+ "preview": "སྔོན་ལྟ།",
484
+ "more": "དེ་ལས་མང་བ།",
485
+ "close": "ཁ་རྒྱག",
486
+ "back": "ཕྱིར་ལོག",
487
+ "next": "རྗེས་མ།",
488
+ "previous": "སྔོན་མ།",
489
+ "search": "འཚོལ་བཤེར།",
490
+ "noData": "གནས་ཚུལ་མི་འདུག",
491
+ "total": "ཁྱོན་བསྡོམས་ {total} ཡོད།",
492
+ "selected": "འདེམས་ཟིན་པ་ {count} ཡོད།",
493
+ "unit": {
494
+ "px": "པིག་ཟེལ།",
495
+ "em": "em",
496
+ "percent": "%"
497
+ }
498
+ },
499
+ "menu": {
500
+ "file": {
501
+ "text": "ཡིག་ཆ།",
502
+ "new": "གསར་བཟོ།",
503
+ "open": "ཁ་ཕྱེ།",
504
+ "save": "ཉར་ཚགས།",
505
+ "saveAs": "གཞན་ཉར།",
506
+ "print": "པར་འདེབས།",
507
+ "close": "ཁ་རྒྱག"
508
+ },
509
+ "edit": {
510
+ "text": "རྩོམ་སྒྲིག",
511
+ "undo": "ཕྱིར་འཐེན།",
512
+ "redo": "བསྐྱར་བཟོ།",
513
+ "cut": "དྲས་པ།",
514
+ "copy": "པར་སློག",
515
+ "paste": "སྦྱར་བ།",
516
+ "delete": "སུབ་པ།",
517
+ "selectAll": "ཚང་མ་འདེམས་པ།"
518
+ },
519
+ "view": {
520
+ "text": "ལྟ་བ།",
521
+ "zoomIn": "ཆེ་རུ་གཏོང་བ།",
522
+ "zoomOut": "ཆུང་དུ་གཏོང་བ།",
523
+ "resetZoom": "ཆེ་ཆུང་སྔོན་སྒྲིག་ཏུ་བསྐྱར་སྒྲིག",
524
+ "fullScreen": "ཡོལ་གང་།"
525
+ },
526
+ "help": {
527
+ "text": "རོགས་རམ།",
528
+ "shortcuts": "མྱུར་མཐེབ།",
529
+ "documentation": "ཡིག་ཆ་ཁག",
530
+ "feedback": "དགོངས་འཆར།",
531
+ "about": "འབྲེལ་ཡོད།"
532
+ }
533
+ },
534
+ "contextMenu": {
535
+ "cut": "དྲས་པ།",
536
+ "copy": "པར་སློག",
537
+ "paste": "སྦྱར་བ།",
538
+ "delete": "སུབ་པ།",
539
+ "selectAll": "ཚང་མ་འདེམས་པ།",
540
+ "copyLink": "འབྲེལ་མཐུད་པར་སློག",
541
+ "editLink": "འབྲེལ་མཐུད་རྩོམ་སྒྲིག",
542
+ "removeLink": "འབྲེལ་མཐུད་སུབ་པ།",
543
+ "insertRowBefore": "སྟེང་དུ་ཐིག་ཕྲེང་སྣོན་པ།",
544
+ "insertRowAfter": "འོག་ཏུ་ཐིག་ཕྲེང་སྣོན་པ།",
545
+ "deleteRow": "ཐིག་ཕྲེང་སུབ་པ།",
546
+ "insertColumnBefore": "གཡོན་དུ་ཐིག་ཤར་སྣོན་པ།",
547
+ "insertColumnAfter": "གཡས་སུ་ཐིག་ཤར་སྣོན་པ།",
548
+ "deleteColumn": "ཐིག་ཤར་སུབ་པ།",
549
+ "deleteTable": "རེའུ་མིག་སུབ་པ།",
550
+ "mergeCells": "ཕྲེང་ཐིག་སྡེབ་སྒྲིག",
551
+ "splitCell": "ཕྲེང་ཐིག་དབྱེ་བ།"
552
+ },
553
+ "link": {
554
+ "text": "འབྲེལ་མཐུད།",
555
+ "edit": "འབྲེལ་མཐུད་རྩོམ་སྒྲིག",
556
+ "url": "དྲ་གནས།",
557
+ "title": "འབྲེལ་མཐུད་ཁ་བྱང་།",
558
+ "openInNewTab": "སྒེའུ་ཁུང་གསར་པའི་ནང་ཁ་ཕྱེ།",
559
+ "insert": "འབྲེལ་མཐུད་བཅུག་པ།",
560
+ "remove": "འབྲེལ་མཐུད་སུབ་པ།",
561
+ "invalidUrl": "ནུས་མེད་ཀྱི་དྲ་གནས།"
562
+ },
563
+ "image": {
564
+ "text": "པར་རིས།",
565
+ "upload": "པར་རིས་ཡར་འཇུག",
566
+ "url": "པར་རིས་དྲ་གནས།",
567
+ "title": "པར་རིས་ཁ་བྱང་།",
568
+ "alt": "པར་རིས་འགྲེལ་བཤད།",
569
+ "size": "པར་རིས་ཆེ་ཆུང་།",
570
+ "width": "ཞེང་ཚད།",
571
+ "height": "མཐོ་ཚད།",
572
+ "resetSize": "ཆེ་ཆུང་བསྐྱར་སྒྲིག",
573
+ "uploading": "ཡར་འཇུག་བྱེད་བཞིན་པ།",
574
+ "uploadFailed": "ཡར་འཇུག་མ་ཐུབ།",
575
+ "invalidUrl": "ནུས་མེད་ཀྱི་པར་རིས་དྲ་གནས།",
576
+ "placeholder": "པར་རིས་ཡར་འཇུག་གམ་དྲ་གནས་འཇུག་རོགས།",
577
+ "edit": "པར་རིས་རྩོམ་སྒྲིག",
578
+ "remove": "པར་རིས་སུབ་པ།",
579
+ "align": {
580
+ "text": "སྒྲིག་སྟངས།",
581
+ "left": "གཡོན་སྒྲིག",
582
+ "center": "དཀྱིལ་སྒྲིག",
583
+ "right": "གཡས་སྒྲིག"
584
+ }
585
+ },
586
+ "audio": {
587
+ "text": "སྒྲ་ཟློས།",
588
+ "upload": "སྒྲ་ཟློས་ཡར་འཇུག",
589
+ "url": "སྒྲ་ཟློས་དྲ་གནས།",
590
+ "title": "སྒྲ་ཟློས་ཁ་བྱང་།",
591
+ "uploading": "ཡར་འཇུག་བྱེད་བཞིན་པ།",
592
+ "uploadFailed": "ཡར་འཇུག་མ་ཐུབ།",
593
+ "invalidUrl": "ནུས་མེད་ཀྱི་སྒྲ་ཟློས་དྲ་གནས།",
594
+ "placeholder": "སྒྲ་ཟློས་ཡར་འཇུག་གམ་དྲ་གནས་འཇུག་རོགས།",
595
+ "edit": "སྒྲ་ཟློས་རྩོམ་སྒྲིག",
596
+ "remove": "སྒྲ་ཟློས་སུབ་པ།"
597
+ },
598
+ "video": {
599
+ "text": "བརྙན་ཟློས།",
600
+ "upload": "བརྙན་ཟློས་ཡར་འཇུག",
601
+ "url": "བརྙན་ཟློས་དྲ་གནས།",
602
+ "title": "བརྙན་ཟློས་ཁ་བྱང་།",
603
+ "uploading": "ཡར་འཇུག་བྱེད་བཞིན་པ།",
604
+ "uploadFailed": "ཡར་འཇུག་མ་ཐུབ།",
605
+ "invalidUrl": "ནུས་མེད་ཀྱི་བརྙན་ཟློས་དྲ་གནས།",
606
+ "placeholder": "བརྙན་ཟློས་ཡར་འཇུག་གམ་དྲ་གནས་འཇུག་རོགས།",
607
+ "edit": "བརྙན་ཟློས་རྩོམ་སྒྲིག",
608
+ "remove": "བརྙན་ཟློས་སུབ་པ།"
609
+ },
610
+ "file": {
611
+ "text": "ཡིག་ཆ།",
612
+ "upload": "ཡིག་ཆ་ཡར་འཇུག",
613
+ "url": "ཡིག་ཆའི་དྲ་གནས།",
614
+ "title": "ཡིག་ཆའི་ཁ་བྱང་།",
615
+ "uploading": "ཡར་འཇུག་བྱེད་བཞིན་པ།",
616
+ "uploadFailed": "ཡར་འཇུག་མ་ཐུབ།",
617
+ "invalidUrl": "ནུས་མེད་ཀྱི་ཡིག་ཆའི་དྲ་གནས།",
618
+ "placeholder": "ཡིག་ཆ་ཡར་འཇུག་གམ་དྲ་གནས་འཇུག་རོགས།",
619
+ "edit": "ཡིག་ཆ་རྩོམ་སྒྲིག",
620
+ "remove": "ཡིག་ཆ་སུབ་པ།"
621
+ },
622
+ "find": {
623
+ "text": "འཚོལ་བ།",
624
+ "replace": "བརྗེ་བ།",
625
+ "replaceAll": "ཚང་མ་བརྗེ་བ།",
626
+ "matchCase": "ཡིག་གཟུགས་ཆེ་ཆུང་མཚུངས་པ།",
627
+ "wholeWord": "ཚིག་ཧྲིལ་པོ་མཚུངས་པ།",
628
+ "noResults": "འཚོལ་འབྲས་མ་རྙེད།",
629
+ "replaceSuccess": "{count} ས་ཚིགས་བརྗེས་ཟིན།"
630
+ },
631
+ "status": {
632
+ "words": "ཚིག་གྲངས་:{count}",
633
+ "characters": "ཡིག་འབྲུ་གྲངས་:{count}",
634
+ "lines": "ཐིག་གྲངས་:{count}"
635
+ },
636
+ "help": {
637
+ "text": "རོགས་རམ།",
638
+ "shortcuts": {
639
+ "text": "མྱུར་མཐེབ།",
640
+ "common": "རྒྱུན་སྤྱོད།",
641
+ "format": "རྣམ་གཞག",
642
+ "insert": "བཅུག་པ།",
643
+ "other": "གཞན་དག"
644
+ },
645
+ "feedback": "དགོངས་འཆར་འབུལ་བ།",
646
+ "about": "འབྲེལ་ཡོད་ཆ་འཕྲིན།",
647
+ "version": "པར་གཞི་:{version}"
648
+ },
649
+ "print": {
650
+ "text": "པར་འདེབས།",
651
+ "preview": "པར་འདེབས་སྔོན་ལྟ།",
652
+ "settings": "པར་འདེབས་སྒྲིག་འགོད།",
653
+ "copies": "པར་གཞི་གྲངས།",
654
+ "pageRange": "ཤོག་ངོས་ཁྱབ་ཁོངས།",
655
+ "all": "ཚང་མ།",
656
+ "current": "མིག་སྔའི་ཤོག་ངོས།",
657
+ "selection": "འདེམས་སྒྲུག",
658
+ "pages": "ཤོག་ངོས་ཨང་གྲངས།",
659
+ "portrait": "གཞུང་དུ།",
660
+ "landscape": "འཕྲེད་དུ།"
661
+ },
662
+ "history": {
663
+ "text": "ལོ་རྒྱུས།",
664
+ "undo": "ཕྱིར་འཐེན།",
665
+ "redo": "བསྐྱར་བཟོ།",
666
+ "clear": "གཙང་སེལ།"
667
+ },
668
+ "settings": {
669
+ "text": "སྒྲིག་འགོད།",
670
+ "general": "སྤྱི་བཏང་།",
671
+ "language": "སྐད་རིགས།",
672
+ "theme": "བརྗོད་གཞི།",
673
+ "fontSize": "ཡིག་གཟུགས་ཆེ་ཆུང་།",
674
+ "fontFamily": "ཡིག་གཟུགས།",
675
+ "customFonts": "རང་སྒྲུབ་ཡིག་གཟུགས།",
676
+ "shortcuts": "མྱུར་མཐེབ།",
677
+ "autosave": "རང་འགུལ་ཉར་ཚགས།",
678
+ "interval": "བར་ཐག",
679
+ "wordCount": "ཚིག་གྲངས་རྩིས་པ།",
680
+ "lineNumber": "ཐིག་གྲངས་མངོན་པ།",
681
+ "spellCheck": "ཡིག་ནོར་ཞིབ་བཤེར།",
682
+ "reset": "སྔོན་སྒྲིག་ཏུ་བསྐྱར་སྒྲིག"
683
+ },
684
+ "upload": {
685
+ "text": "ཡར་འཇུག",
686
+ "dragHere": "ཡིག་ཆ་འདིར་འཐེན་ནས་ཡར་འཇུག་བྱེད་པ།",
687
+ "selectFile": "ཡིག་ཆ་འདེམས་པ།",
688
+ "maxSize": "ཡིག་ཆའི་ཆེ་ཆུང་ཆེ་ཤོས་ {size}",
689
+ "uploading": "ཡར་འཇུག་བྱེད་བཞིན་པ།",
690
+ "success": "ཡར་འཇུག་ལེགས་གྲུབ།",
691
+ "failed": "ཡར་འཇུག་མ་ཐུབ།",
692
+ "remove": "སུབ་པ།",
693
+ "error": {
694
+ "size": "ཡིག་ཆའི་ཆེ་ཆུང་ཚད་བརྒལ་འདུག",
695
+ "type": "རྒྱབ་སྐྱོར་མེད་པའི་ཡིག་ཆའི་རྣམ་གཞག",
696
+ "network": "དྲ་རྒྱའི་ནོར་འཁྲུལ།"
697
+ }
698
+ },
699
+ "math": {
700
+ "text": "རྩིས་རིག",
701
+ "edit": "རྩིས་རིག་རྩོམ་སྒྲིག",
702
+ "preview": "སྔོན་ལྟ།",
703
+ "latex": "LaTeX ཚབ་ཨང་།",
704
+ "tip": "LaTeX རྩིས་རིག་ཚབ་ཨང་འཇུག་རོགས།",
705
+ "error": "LaTeX ཚབ་ཨང་ནོར་འདུག"
706
+ }
707
+ }