@licium/editor 3.2.3
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/README.md +176 -0
- package/dist/esm/i18n/__test__/integration/ui/layout.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/integration/ui/toolbar.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/integration/vdom/render.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/integration/widget/widgetNode.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/convertor.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/dom.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/editor.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/eventEmitter.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/helper/common.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/helper/image.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/linkXss.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/keymap.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/mdCommand.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/mdEditor.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/mdPreview.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/smartTask.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/syntaxHighlight.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/util.d.ts +7 -0
- package/dist/esm/i18n/__test__/unit/repro_3296.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/sanitizer.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/utils/escape.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/utils/pollution.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/vdom/template.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/viewer.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/customBlock.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/helper/pasteMsoList.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/imageInsertion.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/keymap.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/wwCommand.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/wwEditor.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/wwTableCommand.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/wwToDOMAdaptor.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/xssSanitizer.spec.d.ts +1 -0
- package/dist/esm/i18n/ar.d.ts +1 -0
- package/dist/esm/i18n/ar.js +63 -0
- package/dist/esm/i18n/base.d.ts +60 -0
- package/dist/esm/i18n/commands/commandManager.d.ts +16 -0
- package/dist/esm/i18n/commands/defaultCommands.d.ts +2 -0
- package/dist/esm/i18n/commands/wwCommands.d.ts +2 -0
- package/dist/esm/i18n/convertors/convertor.d.ts +19 -0
- package/dist/esm/i18n/convertors/toMarkdown/toMdConvertorState.d.ts +30 -0
- package/dist/esm/i18n/convertors/toMarkdown/toMdConvertors.d.ts +7 -0
- package/dist/esm/i18n/convertors/toMarkdown/toMdNodeTypeWriters.d.ts +8 -0
- package/dist/esm/i18n/convertors/toWysiwyg/htmlToWwConvertors.d.ts +7 -0
- package/dist/esm/i18n/convertors/toWysiwyg/toWwConvertorState.d.ts +23 -0
- package/dist/esm/i18n/convertors/toWysiwyg/toWwConvertors.d.ts +4 -0
- package/dist/esm/i18n/cs-cz.d.ts +1 -0
- package/dist/esm/i18n/cs-cz.js +63 -0
- package/dist/esm/i18n/de-de.d.ts +1 -0
- package/dist/esm/i18n/de-de.js +63 -0
- package/dist/esm/i18n/editor.d.ts +36 -0
- package/dist/esm/i18n/editorCore.d.ts +330 -0
- package/dist/esm/i18n/en-us.d.ts +1 -0
- package/dist/esm/i18n/en-us.js +63 -0
- package/dist/esm/i18n/es-es.d.ts +1 -0
- package/dist/esm/i18n/es-es.js +63 -0
- package/dist/esm/i18n/esm/index.d.ts +5 -0
- package/dist/esm/i18n/esm/indexViewer.d.ts +2 -0
- package/dist/esm/i18n/event/eventEmitter.d.ts +73 -0
- package/dist/esm/i18n/fi-fi.d.ts +1 -0
- package/dist/esm/i18n/fi-fi.js +63 -0
- package/dist/esm/i18n/fr-fr.d.ts +1 -0
- package/dist/esm/i18n/fr-fr.js +63 -0
- package/dist/esm/i18n/gl-es.d.ts +5 -0
- package/dist/esm/i18n/gl-es.js +63 -0
- package/dist/esm/i18n/helper/image.d.ts +4 -0
- package/dist/esm/i18n/helper/manipulation.d.ts +16 -0
- package/dist/esm/i18n/helper/plugin.d.ts +3 -0
- package/dist/esm/i18n/hr-hr.d.ts +1 -0
- package/dist/esm/i18n/hr-hr.js +63 -0
- package/dist/esm/i18n/i18n.d.ts +20 -0
- package/dist/esm/i18n/i18n.js +217 -0
- package/dist/esm/i18n/index.d.ts +10 -0
- package/dist/esm/i18n/indexEditorOnlyStyle.d.ts +3 -0
- package/dist/esm/i18n/indexViewer.d.ts +3 -0
- package/dist/esm/i18n/it-it.d.ts +1 -0
- package/dist/esm/i18n/it-it.js +63 -0
- package/dist/esm/i18n/ja-jp.d.ts +1 -0
- package/dist/esm/i18n/ja-jp.js +63 -0
- package/dist/esm/i18n/ko-kr.d.ts +1 -0
- package/dist/esm/i18n/ko-kr.js +63 -0
- package/dist/esm/i18n/markdown/helper/list.d.ts +55 -0
- package/dist/esm/i18n/markdown/helper/mdCommand.d.ts +5 -0
- package/dist/esm/i18n/markdown/helper/pos.d.ts +22 -0
- package/dist/esm/i18n/markdown/helper/query.d.ts +3 -0
- package/dist/esm/i18n/markdown/htmlRenderConvertors.d.ts +5 -0
- package/dist/esm/i18n/markdown/marks/blockQuote.d.ts +19 -0
- package/dist/esm/i18n/markdown/marks/code.d.ts +25 -0
- package/dist/esm/i18n/markdown/marks/codeBlock.d.ts +18 -0
- package/dist/esm/i18n/markdown/marks/customBlock.d.ts +10 -0
- package/dist/esm/i18n/markdown/marks/emph.d.ts +17 -0
- package/dist/esm/i18n/markdown/marks/heading.d.ts +23 -0
- package/dist/esm/i18n/markdown/marks/html.d.ts +8 -0
- package/dist/esm/i18n/markdown/marks/link.d.ts +29 -0
- package/dist/esm/i18n/markdown/marks/listItem.d.ts +42 -0
- package/dist/esm/i18n/markdown/marks/simpleMark.d.ts +32 -0
- package/dist/esm/i18n/markdown/marks/strike.d.ts +14 -0
- package/dist/esm/i18n/markdown/marks/strong.d.ts +18 -0
- package/dist/esm/i18n/markdown/marks/table.d.ts +27 -0
- package/dist/esm/i18n/markdown/marks/thematicBreak.d.ts +17 -0
- package/dist/esm/i18n/markdown/mdEditor.d.ts +48 -0
- package/dist/esm/i18n/markdown/mdPreview.d.ts +50 -0
- package/dist/esm/i18n/markdown/nodes/doc.d.ts +7 -0
- package/dist/esm/i18n/markdown/nodes/paragraph.d.ts +46 -0
- package/dist/esm/i18n/markdown/nodes/text.d.ts +7 -0
- package/dist/esm/i18n/markdown/plugins/helper/markInfo.d.ts +19 -0
- package/dist/esm/i18n/markdown/plugins/previewHighlight.d.ts +3 -0
- package/dist/esm/i18n/markdown/plugins/smartTask.d.ts +3 -0
- package/dist/esm/i18n/markdown/plugins/syntaxHighlight.d.ts +3 -0
- package/dist/esm/i18n/markdown/scroll/animation.d.ts +2 -0
- package/dist/esm/i18n/markdown/scroll/dom.d.ts +16 -0
- package/dist/esm/i18n/markdown/scroll/offset.d.ts +9 -0
- package/dist/esm/i18n/markdown/scroll/scrollSync.d.ts +30 -0
- package/dist/esm/i18n/nb-no.d.ts +1 -0
- package/dist/esm/i18n/nb-no.js +63 -0
- package/dist/esm/i18n/nl-nl.d.ts +1 -0
- package/dist/esm/i18n/nl-nl.js +63 -0
- package/dist/esm/i18n/pl-pl.d.ts +1 -0
- package/dist/esm/i18n/pl-pl.js +63 -0
- package/dist/esm/i18n/plugins/dropImage.d.ts +3 -0
- package/dist/esm/i18n/plugins/placeholder.d.ts +7 -0
- package/dist/esm/i18n/plugins/popupWidget.d.ts +3 -0
- package/dist/esm/i18n/pt-br.d.ts +1 -0
- package/dist/esm/i18n/pt-br.js +63 -0
- package/dist/esm/i18n/queries/queryManager.d.ts +2 -0
- package/dist/esm/i18n/ru-ru.d.ts +1 -0
- package/dist/esm/i18n/ru-ru.js +64 -0
- package/dist/esm/i18n/sanitizer/htmlSanitizer.d.ts +3 -0
- package/dist/esm/i18n/spec/mark.d.ts +12 -0
- package/dist/esm/i18n/spec/node.d.ts +12 -0
- package/dist/esm/i18n/spec/specManager.d.ts +16 -0
- package/dist/esm/i18n/sv-se.d.ts +1 -0
- package/dist/esm/i18n/sv-se.js +63 -0
- package/dist/esm/i18n/tr-tr.d.ts +1 -0
- package/dist/esm/i18n/tr-tr.js +63 -0
- package/dist/esm/i18n/ui/components/contextMenu.d.ts +21 -0
- package/dist/esm/i18n/ui/components/layout.d.ts +36 -0
- package/dist/esm/i18n/ui/components/popup.d.ts +21 -0
- package/dist/esm/i18n/ui/components/switch.d.ts +17 -0
- package/dist/esm/i18n/ui/components/tabs.d.ts +12 -0
- package/dist/esm/i18n/ui/components/toolbar/customPopupBody.d.ts +16 -0
- package/dist/esm/i18n/ui/components/toolbar/headingPopupBody.d.ts +12 -0
- package/dist/esm/i18n/ui/components/toolbar/imagePopupBody.d.ts +30 -0
- package/dist/esm/i18n/ui/components/toolbar/linkPopupBody.d.ts +18 -0
- package/dist/esm/i18n/ui/components/toolbar/tablePopupBody.d.ts +29 -0
- package/dist/esm/i18n/ui/components/toolbar/toolbar.d.ts +45 -0
- package/dist/esm/i18n/ui/components/toolbar/toolbarGroup.d.ts +21 -0
- package/dist/esm/i18n/ui/toolbarItemFactory.d.ts +13 -0
- package/dist/esm/i18n/ui/vdom/commit.d.ts +2 -0
- package/dist/esm/i18n/ui/vdom/component.d.ts +10 -0
- package/dist/esm/i18n/ui/vdom/dom.d.ts +6 -0
- package/dist/esm/i18n/ui/vdom/render.d.ts +4 -0
- package/dist/esm/i18n/ui/vdom/renderer.d.ts +4 -0
- package/dist/esm/i18n/ui/vdom/template.d.ts +3 -0
- package/dist/esm/i18n/ui/vdom/vnode.d.ts +30 -0
- package/dist/esm/i18n/uk-ua.d.ts +1 -0
- package/dist/esm/i18n/uk-ua.js +63 -0
- package/dist/esm/i18n/utils/common.d.ts +19 -0
- package/dist/esm/i18n/utils/constants.d.ts +8 -0
- package/dist/esm/i18n/utils/dom.d.ts +25 -0
- package/dist/esm/i18n/utils/map.d.ts +19 -0
- package/dist/esm/i18n/utils/markdown.d.ts +23 -0
- package/dist/esm/i18n/viewer.d.ts +77 -0
- package/dist/esm/i18n/widget/rules.d.ts +28 -0
- package/dist/esm/i18n/widget/widgetNode.d.ts +28 -0
- package/dist/esm/i18n/wysiwyg/adaptor/mdLikeNode.d.ts +5 -0
- package/dist/esm/i18n/wysiwyg/adaptor/wwToDOMAdaptor.d.ts +13 -0
- package/dist/esm/i18n/wysiwyg/clipboard/paste.d.ts +6 -0
- package/dist/esm/i18n/wysiwyg/clipboard/pasteMsoList.d.ts +2 -0
- package/dist/esm/i18n/wysiwyg/clipboard/pasteTextParser.d.ts +2 -0
- package/dist/esm/i18n/wysiwyg/clipboard/pasteToTable.d.ts +3 -0
- package/dist/esm/i18n/wysiwyg/command/list.d.ts +7 -0
- package/dist/esm/i18n/wysiwyg/command/table.d.ts +16 -0
- package/dist/esm/i18n/wysiwyg/helper/node.d.ts +37 -0
- package/dist/esm/i18n/wysiwyg/helper/table.d.ts +25 -0
- package/dist/esm/i18n/wysiwyg/helper/tableOffsetMap.d.ts +88 -0
- package/dist/esm/i18n/wysiwyg/markdownInputRules.d.ts +3 -0
- package/dist/esm/i18n/wysiwyg/marks/code.d.ts +31 -0
- package/dist/esm/i18n/wysiwyg/marks/emph.d.ts +34 -0
- package/dist/esm/i18n/wysiwyg/marks/link.d.ts +59 -0
- package/dist/esm/i18n/wysiwyg/marks/strike.d.ts +31 -0
- package/dist/esm/i18n/wysiwyg/marks/strong.d.ts +34 -0
- package/dist/esm/i18n/wysiwyg/nodes/blockQuote.d.ts +33 -0
- package/dist/esm/i18n/wysiwyg/nodes/bulletList.d.ts +43 -0
- package/dist/esm/i18n/wysiwyg/nodes/codeBlock.d.ts +45 -0
- package/dist/esm/i18n/wysiwyg/nodes/customBlock.d.ts +26 -0
- package/dist/esm/i18n/wysiwyg/nodes/doc.d.ts +7 -0
- package/dist/esm/i18n/wysiwyg/nodes/frontMatter.d.ts +21 -0
- package/dist/esm/i18n/wysiwyg/nodes/hardBreak.d.ts +14 -0
- package/dist/esm/i18n/wysiwyg/nodes/heading.d.ts +38 -0
- package/dist/esm/i18n/wysiwyg/nodes/html.d.ts +11 -0
- package/dist/esm/i18n/wysiwyg/nodes/htmlComment.d.ts +21 -0
- package/dist/esm/i18n/wysiwyg/nodes/image.d.ts +45 -0
- package/dist/esm/i18n/wysiwyg/nodes/listItem.d.ts +36 -0
- package/dist/esm/i18n/wysiwyg/nodes/orderedList.d.ts +39 -0
- package/dist/esm/i18n/wysiwyg/nodes/paragraph.d.ts +21 -0
- package/dist/esm/i18n/wysiwyg/nodes/table.d.ts +80 -0
- package/dist/esm/i18n/wysiwyg/nodes/tableBody.d.ts +26 -0
- package/dist/esm/i18n/wysiwyg/nodes/tableBodyCell.d.ts +36 -0
- package/dist/esm/i18n/wysiwyg/nodes/tableHead.d.ts +26 -0
- package/dist/esm/i18n/wysiwyg/nodes/tableHeadCell.d.ts +39 -0
- package/dist/esm/i18n/wysiwyg/nodes/tableRow.d.ts +26 -0
- package/dist/esm/i18n/wysiwyg/nodes/text.d.ts +14 -0
- package/dist/esm/i18n/wysiwyg/nodes/thematicBreak.d.ts +33 -0
- package/dist/esm/i18n/wysiwyg/nodeview/codeBlockView.d.ts +29 -0
- package/dist/esm/i18n/wysiwyg/nodeview/customBlockView.d.ts +29 -0
- package/dist/esm/i18n/wysiwyg/nodeview/imageView.d.ts +20 -0
- package/dist/esm/i18n/wysiwyg/plugins/selection/cellSelection.d.ts +14 -0
- package/dist/esm/i18n/wysiwyg/plugins/selection/tableSelection.d.ts +2 -0
- package/dist/esm/i18n/wysiwyg/plugins/selection/tableSelectionView.d.ts +19 -0
- package/dist/esm/i18n/wysiwyg/plugins/tableContextMenu.d.ts +3 -0
- package/dist/esm/i18n/wysiwyg/plugins/task.d.ts +2 -0
- package/dist/esm/i18n/wysiwyg/plugins/toolbarState.d.ts +3 -0
- package/dist/esm/i18n/wysiwyg/specCreator.d.ts +3 -0
- package/dist/esm/i18n/wysiwyg/wwEditor.d.ts +57 -0
- package/dist/esm/i18n/zh-cn.d.ts +1 -0
- package/dist/esm/i18n/zh-cn.js +63 -0
- package/dist/esm/i18n/zh-tw.d.ts +1 -0
- package/dist/esm/i18n/zh-tw.js +63 -0
- package/dist/esm/index.js +25133 -0
- package/dist/esm/indexViewer.js +12757 -0
- package/dist/i18n/ar.js +162 -0
- package/dist/i18n/cs-cz.js +162 -0
- package/dist/i18n/de-de.js +162 -0
- package/dist/i18n/es-es.js +162 -0
- package/dist/i18n/fi-fi.js +162 -0
- package/dist/i18n/fr-fr.js +162 -0
- package/dist/i18n/gl-es.js +162 -0
- package/dist/i18n/hr-hr.js +162 -0
- package/dist/i18n/it-it.js +162 -0
- package/dist/i18n/ja-jp.js +162 -0
- package/dist/i18n/ko-kr.js +162 -0
- package/dist/i18n/nb-no.js +162 -0
- package/dist/i18n/nl-nl.js +162 -0
- package/dist/i18n/pl-pl.js +162 -0
- package/dist/i18n/pt-br.js +162 -0
- package/dist/i18n/ru-ru.js +163 -0
- package/dist/i18n/sv-se.js +162 -0
- package/dist/i18n/tr-tr.js +162 -0
- package/dist/i18n/uk-ua.js +162 -0
- package/dist/i18n/zh-cn.js +162 -0
- package/dist/i18n/zh-tw.js +162 -0
- package/dist/theme/toastui-editor-dark.css +474 -0
- package/dist/toastui-editor-only.css +1068 -0
- package/dist/toastui-editor-viewer.css +492 -0
- package/dist/toastui-editor-viewer.js +14079 -0
- package/dist/toastui-editor.css +1606 -0
- package/dist/toastui-editor.js +26464 -0
- package/package.json +95 -0
- package/types/convertor.d.ts +143 -0
- package/types/editor.d.ts +383 -0
- package/types/event.d.ts +56 -0
- package/types/index.d.ts +70 -0
- package/types/map.d.ts +8 -0
- package/types/markdown.d.ts +60 -0
- package/types/plugin.d.ts +59 -0
- package/types/prosemirror-commands.d.ts +15 -0
- package/types/prosemirror-model.d.ts +15 -0
- package/types/prosemirror-transform.d.ts +35 -0
- package/types/spec.d.ts +42 -0
- package/types/toastmark.d.ts +357 -0
- package/types/toastui-editor-viewer.d.ts +39 -0
- package/types/ui.d.ts +165 -0
- package/types/wysiwyg.d.ts +36 -0
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* TOAST UI Editor : i18n
|
|
3
|
+
* @version 3.2.3
|
|
4
|
+
* @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
(function webpackUniversalModuleDefinition(root, factory) {
|
|
8
|
+
if(typeof exports === 'object' && typeof module === 'object')
|
|
9
|
+
module.exports = factory(require("@licium/editor"));
|
|
10
|
+
else if(typeof define === 'function' && define.amd)
|
|
11
|
+
define(["@licium/editor"], factory);
|
|
12
|
+
else {
|
|
13
|
+
var a = typeof exports === 'object' ? factory(require("@licium/editor")) : factory(root["toastui"]["Editor"]);
|
|
14
|
+
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
|
15
|
+
}
|
|
16
|
+
})(self, function(__WEBPACK_EXTERNAL_MODULE__495__) {
|
|
17
|
+
return /******/ (function() { // webpackBootstrap
|
|
18
|
+
/******/ "use strict";
|
|
19
|
+
/******/ var __webpack_modules__ = ({
|
|
20
|
+
|
|
21
|
+
/***/ 495:
|
|
22
|
+
/***/ (function(module) {
|
|
23
|
+
|
|
24
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__495__;
|
|
25
|
+
|
|
26
|
+
/***/ })
|
|
27
|
+
|
|
28
|
+
/******/ });
|
|
29
|
+
/************************************************************************/
|
|
30
|
+
/******/ // The module cache
|
|
31
|
+
/******/ var __webpack_module_cache__ = {};
|
|
32
|
+
/******/
|
|
33
|
+
/******/ // The require function
|
|
34
|
+
/******/ function __webpack_require__(moduleId) {
|
|
35
|
+
/******/ // Check if module is in cache
|
|
36
|
+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
37
|
+
/******/ if (cachedModule !== undefined) {
|
|
38
|
+
/******/ return cachedModule.exports;
|
|
39
|
+
/******/ }
|
|
40
|
+
/******/ // Create a new module (and put it into the cache)
|
|
41
|
+
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
42
|
+
/******/ // no module.id needed
|
|
43
|
+
/******/ // no module.loaded needed
|
|
44
|
+
/******/ exports: {}
|
|
45
|
+
/******/ };
|
|
46
|
+
/******/
|
|
47
|
+
/******/ // Execute the module function
|
|
48
|
+
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
49
|
+
/******/
|
|
50
|
+
/******/ // Return the exports of the module
|
|
51
|
+
/******/ return module.exports;
|
|
52
|
+
/******/ }
|
|
53
|
+
/******/
|
|
54
|
+
/************************************************************************/
|
|
55
|
+
/******/ /* webpack/runtime/compat get default export */
|
|
56
|
+
/******/ !function() {
|
|
57
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
58
|
+
/******/ __webpack_require__.n = function(module) {
|
|
59
|
+
/******/ var getter = module && module.__esModule ?
|
|
60
|
+
/******/ function() { return module['default']; } :
|
|
61
|
+
/******/ function() { return module; };
|
|
62
|
+
/******/ __webpack_require__.d(getter, { a: getter });
|
|
63
|
+
/******/ return getter;
|
|
64
|
+
/******/ };
|
|
65
|
+
/******/ }();
|
|
66
|
+
/******/
|
|
67
|
+
/******/ /* webpack/runtime/define property getters */
|
|
68
|
+
/******/ !function() {
|
|
69
|
+
/******/ // define getter functions for harmony exports
|
|
70
|
+
/******/ __webpack_require__.d = function(exports, definition) {
|
|
71
|
+
/******/ for(var key in definition) {
|
|
72
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
73
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
74
|
+
/******/ }
|
|
75
|
+
/******/ }
|
|
76
|
+
/******/ };
|
|
77
|
+
/******/ }();
|
|
78
|
+
/******/
|
|
79
|
+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
80
|
+
/******/ !function() {
|
|
81
|
+
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
82
|
+
/******/ }();
|
|
83
|
+
/******/
|
|
84
|
+
/******/ /* webpack/runtime/make namespace object */
|
|
85
|
+
/******/ !function() {
|
|
86
|
+
/******/ // define __esModule on exports
|
|
87
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
88
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
89
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
90
|
+
/******/ }
|
|
91
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
92
|
+
/******/ };
|
|
93
|
+
/******/ }();
|
|
94
|
+
/******/
|
|
95
|
+
/************************************************************************/
|
|
96
|
+
var __webpack_exports__ = {};
|
|
97
|
+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
|
|
98
|
+
!function() {
|
|
99
|
+
__webpack_require__.r(__webpack_exports__);
|
|
100
|
+
/* harmony import */ var _editorCore__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(495);
|
|
101
|
+
/* harmony import */ var _editorCore__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editorCore__WEBPACK_IMPORTED_MODULE_0__);
|
|
102
|
+
/**
|
|
103
|
+
* @fileoverview I18N for Swedish
|
|
104
|
+
* @author Magnus Aspling <magnus@yug.se>
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
_editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage(['sv', 'sv-SE'], {
|
|
108
|
+
Markdown: 'Markdown',
|
|
109
|
+
WYSIWYG: 'WYSIWYG',
|
|
110
|
+
Write: 'Skriv',
|
|
111
|
+
Preview: 'Förhandsgranska',
|
|
112
|
+
Headings: 'Överskrifter',
|
|
113
|
+
Paragraph: 'Paragraf',
|
|
114
|
+
Bold: 'Fet',
|
|
115
|
+
Italic: 'Kursiv',
|
|
116
|
+
Strike: 'Genomstruken',
|
|
117
|
+
Code: 'Kodrad',
|
|
118
|
+
Line: 'Linje',
|
|
119
|
+
Blockquote: 'Citatblock',
|
|
120
|
+
'Unordered list': 'Punktlista',
|
|
121
|
+
'Ordered list': 'Numrerad lista',
|
|
122
|
+
Task: 'Att göra',
|
|
123
|
+
Indent: 'Öka indrag',
|
|
124
|
+
Outdent: 'Minska indrag',
|
|
125
|
+
'Insert link': 'Infoga länk',
|
|
126
|
+
'Insert CodeBlock': 'Infoga kodblock',
|
|
127
|
+
'Insert table': 'Infoga tabell',
|
|
128
|
+
'Insert image': 'Infoga bild',
|
|
129
|
+
Heading: 'Överskrift',
|
|
130
|
+
'Image URL': 'Bildadress',
|
|
131
|
+
'Select image file': 'Välj en bildfil',
|
|
132
|
+
'Choose a file': 'Välj en fil',
|
|
133
|
+
'No file': 'Ingen fil',
|
|
134
|
+
Description: 'Beskrivning',
|
|
135
|
+
OK: 'OK',
|
|
136
|
+
More: 'Mer',
|
|
137
|
+
Cancel: 'Avbryt',
|
|
138
|
+
File: 'Fil',
|
|
139
|
+
URL: 'Adress',
|
|
140
|
+
'Link text': 'Länktext',
|
|
141
|
+
'Add row to up': 'Lägg till rad till upp',
|
|
142
|
+
'Add row to down': 'Lägg till rad till ner',
|
|
143
|
+
'Add column to left': 'Lägg till kolumn till vänster',
|
|
144
|
+
'Add column to right': 'Lägg till kolumn till höger',
|
|
145
|
+
'Remove row': 'Radera rad',
|
|
146
|
+
'Remove column': 'Radera kolumn',
|
|
147
|
+
'Align column to left': 'Vänsterjustera',
|
|
148
|
+
'Align column to center': 'Centrera',
|
|
149
|
+
'Align column to right': 'Högerjustera',
|
|
150
|
+
'Remove table': 'Radera tabell',
|
|
151
|
+
'Would you like to paste as table?': 'Vill du klistra in som en tabell?',
|
|
152
|
+
'Text color': 'Textfärg',
|
|
153
|
+
'Auto scroll enabled': 'Automatisk scroll aktiverad',
|
|
154
|
+
'Auto scroll disabled': 'Automatisk scroll inaktiverad',
|
|
155
|
+
'Choose language': 'Välj språk',
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
}();
|
|
159
|
+
/******/ return __webpack_exports__;
|
|
160
|
+
/******/ })()
|
|
161
|
+
;
|
|
162
|
+
});
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* TOAST UI Editor : i18n
|
|
3
|
+
* @version 3.2.3
|
|
4
|
+
* @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
(function webpackUniversalModuleDefinition(root, factory) {
|
|
8
|
+
if(typeof exports === 'object' && typeof module === 'object')
|
|
9
|
+
module.exports = factory(require("@licium/editor"));
|
|
10
|
+
else if(typeof define === 'function' && define.amd)
|
|
11
|
+
define(["@licium/editor"], factory);
|
|
12
|
+
else {
|
|
13
|
+
var a = typeof exports === 'object' ? factory(require("@licium/editor")) : factory(root["toastui"]["Editor"]);
|
|
14
|
+
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
|
15
|
+
}
|
|
16
|
+
})(self, function(__WEBPACK_EXTERNAL_MODULE__495__) {
|
|
17
|
+
return /******/ (function() { // webpackBootstrap
|
|
18
|
+
/******/ "use strict";
|
|
19
|
+
/******/ var __webpack_modules__ = ({
|
|
20
|
+
|
|
21
|
+
/***/ 495:
|
|
22
|
+
/***/ (function(module) {
|
|
23
|
+
|
|
24
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__495__;
|
|
25
|
+
|
|
26
|
+
/***/ })
|
|
27
|
+
|
|
28
|
+
/******/ });
|
|
29
|
+
/************************************************************************/
|
|
30
|
+
/******/ // The module cache
|
|
31
|
+
/******/ var __webpack_module_cache__ = {};
|
|
32
|
+
/******/
|
|
33
|
+
/******/ // The require function
|
|
34
|
+
/******/ function __webpack_require__(moduleId) {
|
|
35
|
+
/******/ // Check if module is in cache
|
|
36
|
+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
37
|
+
/******/ if (cachedModule !== undefined) {
|
|
38
|
+
/******/ return cachedModule.exports;
|
|
39
|
+
/******/ }
|
|
40
|
+
/******/ // Create a new module (and put it into the cache)
|
|
41
|
+
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
42
|
+
/******/ // no module.id needed
|
|
43
|
+
/******/ // no module.loaded needed
|
|
44
|
+
/******/ exports: {}
|
|
45
|
+
/******/ };
|
|
46
|
+
/******/
|
|
47
|
+
/******/ // Execute the module function
|
|
48
|
+
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
49
|
+
/******/
|
|
50
|
+
/******/ // Return the exports of the module
|
|
51
|
+
/******/ return module.exports;
|
|
52
|
+
/******/ }
|
|
53
|
+
/******/
|
|
54
|
+
/************************************************************************/
|
|
55
|
+
/******/ /* webpack/runtime/compat get default export */
|
|
56
|
+
/******/ !function() {
|
|
57
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
58
|
+
/******/ __webpack_require__.n = function(module) {
|
|
59
|
+
/******/ var getter = module && module.__esModule ?
|
|
60
|
+
/******/ function() { return module['default']; } :
|
|
61
|
+
/******/ function() { return module; };
|
|
62
|
+
/******/ __webpack_require__.d(getter, { a: getter });
|
|
63
|
+
/******/ return getter;
|
|
64
|
+
/******/ };
|
|
65
|
+
/******/ }();
|
|
66
|
+
/******/
|
|
67
|
+
/******/ /* webpack/runtime/define property getters */
|
|
68
|
+
/******/ !function() {
|
|
69
|
+
/******/ // define getter functions for harmony exports
|
|
70
|
+
/******/ __webpack_require__.d = function(exports, definition) {
|
|
71
|
+
/******/ for(var key in definition) {
|
|
72
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
73
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
74
|
+
/******/ }
|
|
75
|
+
/******/ }
|
|
76
|
+
/******/ };
|
|
77
|
+
/******/ }();
|
|
78
|
+
/******/
|
|
79
|
+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
80
|
+
/******/ !function() {
|
|
81
|
+
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
82
|
+
/******/ }();
|
|
83
|
+
/******/
|
|
84
|
+
/******/ /* webpack/runtime/make namespace object */
|
|
85
|
+
/******/ !function() {
|
|
86
|
+
/******/ // define __esModule on exports
|
|
87
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
88
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
89
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
90
|
+
/******/ }
|
|
91
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
92
|
+
/******/ };
|
|
93
|
+
/******/ }();
|
|
94
|
+
/******/
|
|
95
|
+
/************************************************************************/
|
|
96
|
+
var __webpack_exports__ = {};
|
|
97
|
+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
|
|
98
|
+
!function() {
|
|
99
|
+
__webpack_require__.r(__webpack_exports__);
|
|
100
|
+
/* harmony import */ var _editorCore__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(495);
|
|
101
|
+
/* harmony import */ var _editorCore__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editorCore__WEBPACK_IMPORTED_MODULE_0__);
|
|
102
|
+
/**
|
|
103
|
+
* @fileoverview I18N for Turkish
|
|
104
|
+
* @author Mesut Gölcük <mesutgolcuk@gmail.com>
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
_editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage(['tr', 'tr-TR'], {
|
|
108
|
+
Markdown: 'Markdown',
|
|
109
|
+
WYSIWYG: 'WYSIWYG',
|
|
110
|
+
Write: 'Düzenle',
|
|
111
|
+
Preview: 'Ön izleme',
|
|
112
|
+
Headings: 'Başlıklar',
|
|
113
|
+
Paragraph: 'Paragraf',
|
|
114
|
+
Bold: 'Kalın',
|
|
115
|
+
Italic: 'İtalik',
|
|
116
|
+
Strike: 'Altı çizgili',
|
|
117
|
+
Code: 'Satır içi kod',
|
|
118
|
+
Line: 'Çizgi',
|
|
119
|
+
Blockquote: 'Alıntı',
|
|
120
|
+
'Unordered list': 'Sıralanmamış liste',
|
|
121
|
+
'Ordered list': 'Sıralı liste',
|
|
122
|
+
Task: 'Görev kutusu',
|
|
123
|
+
Indent: 'Girintiyi arttır',
|
|
124
|
+
Outdent: 'Girintiyi azalt',
|
|
125
|
+
'Insert link': 'Bağlantı ekle',
|
|
126
|
+
'Insert CodeBlock': 'Kod bloku ekle',
|
|
127
|
+
'Insert table': 'Tablo ekle',
|
|
128
|
+
'Insert image': 'İmaj ekle',
|
|
129
|
+
Heading: 'Başlık',
|
|
130
|
+
'Image URL': 'İmaj URL',
|
|
131
|
+
'Select image file': 'İmaj dosyası seç',
|
|
132
|
+
'Choose a file': 'Bir dosya seçin',
|
|
133
|
+
'No file': 'Dosya yok',
|
|
134
|
+
Description: 'Açıklama',
|
|
135
|
+
OK: 'Onay',
|
|
136
|
+
More: 'Daha Fazla',
|
|
137
|
+
Cancel: 'İptal',
|
|
138
|
+
File: 'Dosya',
|
|
139
|
+
URL: 'URL',
|
|
140
|
+
'Link text': 'Bağlantı yazısı',
|
|
141
|
+
'Add row to up': 'Yukarı satır ekle',
|
|
142
|
+
'Add row to down': 'Aşağı satır ekle',
|
|
143
|
+
'Add column to left': 'Sola sütun ekleyin',
|
|
144
|
+
'Add column to right': 'Sağa sütun ekle',
|
|
145
|
+
'Remove row': 'Satır sil',
|
|
146
|
+
'Remove column': 'Sütun sil',
|
|
147
|
+
'Align column to left': 'Sola hizala',
|
|
148
|
+
'Align column to center': 'Merkeze hizala',
|
|
149
|
+
'Align column to right': 'Sağa hizala',
|
|
150
|
+
'Remove table': 'Tabloyu kaldır',
|
|
151
|
+
'Would you like to paste as table?': 'Tablo olarak yapıştırmak ister misiniz?',
|
|
152
|
+
'Text color': 'Metin rengi',
|
|
153
|
+
'Auto scroll enabled': 'Otomatik kaydırma açık',
|
|
154
|
+
'Auto scroll disabled': 'Otomatik kaydırma kapalı',
|
|
155
|
+
'Choose language': 'Dil seçiniz',
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
}();
|
|
159
|
+
/******/ return __webpack_exports__;
|
|
160
|
+
/******/ })()
|
|
161
|
+
;
|
|
162
|
+
});
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* TOAST UI Editor : i18n
|
|
3
|
+
* @version 3.2.3
|
|
4
|
+
* @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
(function webpackUniversalModuleDefinition(root, factory) {
|
|
8
|
+
if(typeof exports === 'object' && typeof module === 'object')
|
|
9
|
+
module.exports = factory(require("@licium/editor"));
|
|
10
|
+
else if(typeof define === 'function' && define.amd)
|
|
11
|
+
define(["@licium/editor"], factory);
|
|
12
|
+
else {
|
|
13
|
+
var a = typeof exports === 'object' ? factory(require("@licium/editor")) : factory(root["toastui"]["Editor"]);
|
|
14
|
+
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
|
15
|
+
}
|
|
16
|
+
})(self, function(__WEBPACK_EXTERNAL_MODULE__495__) {
|
|
17
|
+
return /******/ (function() { // webpackBootstrap
|
|
18
|
+
/******/ "use strict";
|
|
19
|
+
/******/ var __webpack_modules__ = ({
|
|
20
|
+
|
|
21
|
+
/***/ 495:
|
|
22
|
+
/***/ (function(module) {
|
|
23
|
+
|
|
24
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__495__;
|
|
25
|
+
|
|
26
|
+
/***/ })
|
|
27
|
+
|
|
28
|
+
/******/ });
|
|
29
|
+
/************************************************************************/
|
|
30
|
+
/******/ // The module cache
|
|
31
|
+
/******/ var __webpack_module_cache__ = {};
|
|
32
|
+
/******/
|
|
33
|
+
/******/ // The require function
|
|
34
|
+
/******/ function __webpack_require__(moduleId) {
|
|
35
|
+
/******/ // Check if module is in cache
|
|
36
|
+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
37
|
+
/******/ if (cachedModule !== undefined) {
|
|
38
|
+
/******/ return cachedModule.exports;
|
|
39
|
+
/******/ }
|
|
40
|
+
/******/ // Create a new module (and put it into the cache)
|
|
41
|
+
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
42
|
+
/******/ // no module.id needed
|
|
43
|
+
/******/ // no module.loaded needed
|
|
44
|
+
/******/ exports: {}
|
|
45
|
+
/******/ };
|
|
46
|
+
/******/
|
|
47
|
+
/******/ // Execute the module function
|
|
48
|
+
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
49
|
+
/******/
|
|
50
|
+
/******/ // Return the exports of the module
|
|
51
|
+
/******/ return module.exports;
|
|
52
|
+
/******/ }
|
|
53
|
+
/******/
|
|
54
|
+
/************************************************************************/
|
|
55
|
+
/******/ /* webpack/runtime/compat get default export */
|
|
56
|
+
/******/ !function() {
|
|
57
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
58
|
+
/******/ __webpack_require__.n = function(module) {
|
|
59
|
+
/******/ var getter = module && module.__esModule ?
|
|
60
|
+
/******/ function() { return module['default']; } :
|
|
61
|
+
/******/ function() { return module; };
|
|
62
|
+
/******/ __webpack_require__.d(getter, { a: getter });
|
|
63
|
+
/******/ return getter;
|
|
64
|
+
/******/ };
|
|
65
|
+
/******/ }();
|
|
66
|
+
/******/
|
|
67
|
+
/******/ /* webpack/runtime/define property getters */
|
|
68
|
+
/******/ !function() {
|
|
69
|
+
/******/ // define getter functions for harmony exports
|
|
70
|
+
/******/ __webpack_require__.d = function(exports, definition) {
|
|
71
|
+
/******/ for(var key in definition) {
|
|
72
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
73
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
74
|
+
/******/ }
|
|
75
|
+
/******/ }
|
|
76
|
+
/******/ };
|
|
77
|
+
/******/ }();
|
|
78
|
+
/******/
|
|
79
|
+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
80
|
+
/******/ !function() {
|
|
81
|
+
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
82
|
+
/******/ }();
|
|
83
|
+
/******/
|
|
84
|
+
/******/ /* webpack/runtime/make namespace object */
|
|
85
|
+
/******/ !function() {
|
|
86
|
+
/******/ // define __esModule on exports
|
|
87
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
88
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
89
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
90
|
+
/******/ }
|
|
91
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
92
|
+
/******/ };
|
|
93
|
+
/******/ }();
|
|
94
|
+
/******/
|
|
95
|
+
/************************************************************************/
|
|
96
|
+
var __webpack_exports__ = {};
|
|
97
|
+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
|
|
98
|
+
!function() {
|
|
99
|
+
__webpack_require__.r(__webpack_exports__);
|
|
100
|
+
/* harmony import */ var _editorCore__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(495);
|
|
101
|
+
/* harmony import */ var _editorCore__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editorCore__WEBPACK_IMPORTED_MODULE_0__);
|
|
102
|
+
/**
|
|
103
|
+
* @fileoverview I18N for Ukrainian
|
|
104
|
+
* @author Nikolya <k_m_i@i.ua>
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
_editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage(['uk', 'uk-UA'], {
|
|
108
|
+
Markdown: 'Markdown',
|
|
109
|
+
WYSIWYG: 'WYSIWYG',
|
|
110
|
+
Write: 'Написати',
|
|
111
|
+
Preview: 'Попередній перегляд',
|
|
112
|
+
Headings: 'Заголовки',
|
|
113
|
+
Paragraph: 'Абзац',
|
|
114
|
+
Bold: 'Жирний',
|
|
115
|
+
Italic: 'Курсив',
|
|
116
|
+
Strike: 'Закреслений',
|
|
117
|
+
Code: 'Вбудований код',
|
|
118
|
+
Line: 'Лінія',
|
|
119
|
+
Blockquote: 'Блок цитування',
|
|
120
|
+
'Unordered list': 'Невпорядкований список',
|
|
121
|
+
'Ordered list': 'Упорядкований список',
|
|
122
|
+
Task: 'Завдання',
|
|
123
|
+
Indent: 'відступ',
|
|
124
|
+
Outdent: 'застарілий',
|
|
125
|
+
'Insert link': 'Вставити посилання',
|
|
126
|
+
'Insert CodeBlock': 'Вставити код',
|
|
127
|
+
'Insert table': 'Вставити таблицю',
|
|
128
|
+
'Insert image': 'Вставити зображення',
|
|
129
|
+
Heading: 'Заголовок',
|
|
130
|
+
'Image URL': 'URL зображення',
|
|
131
|
+
'Select image file': 'Вибрати файл зображення',
|
|
132
|
+
'Choose a file': 'Виберіть файл',
|
|
133
|
+
'No file': 'Немає файлу',
|
|
134
|
+
Description: 'Опис',
|
|
135
|
+
OK: 'OK',
|
|
136
|
+
More: 'ще',
|
|
137
|
+
Cancel: 'Скасувати',
|
|
138
|
+
File: 'Файл',
|
|
139
|
+
URL: 'URL',
|
|
140
|
+
'Link text': 'Текст посилання',
|
|
141
|
+
'Add row to up': 'Додати рядок вгору',
|
|
142
|
+
'Add row to down': 'Додати рядок вниз',
|
|
143
|
+
'Add column to left': 'Додайте стовпець зліва',
|
|
144
|
+
'Add column to right': 'Додайте стовпець праворуч',
|
|
145
|
+
'Remove row': 'Видалити ряд',
|
|
146
|
+
'Remove column': 'Видалити стовпчик',
|
|
147
|
+
'Align column to left': 'Вирівняти по лівому краю',
|
|
148
|
+
'Align column to center': 'Вирівняти по центру',
|
|
149
|
+
'Align column to right': 'Вирівняти по правому краю',
|
|
150
|
+
'Remove table': 'Видалити таблицю',
|
|
151
|
+
'Would you like to paste as table?': 'Ви хочете вставити у вигляді таблиці?',
|
|
152
|
+
'Text color': 'Колір тексту',
|
|
153
|
+
'Auto scroll enabled': 'Автоматична прокрутка включена',
|
|
154
|
+
'Auto scroll disabled': 'Автоматична прокрутка відключена',
|
|
155
|
+
'Choose language': 'Вибрати мову',
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
}();
|
|
159
|
+
/******/ return __webpack_exports__;
|
|
160
|
+
/******/ })()
|
|
161
|
+
;
|
|
162
|
+
});
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* TOAST UI Editor : i18n
|
|
3
|
+
* @version 3.2.3
|
|
4
|
+
* @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
(function webpackUniversalModuleDefinition(root, factory) {
|
|
8
|
+
if(typeof exports === 'object' && typeof module === 'object')
|
|
9
|
+
module.exports = factory(require("@licium/editor"));
|
|
10
|
+
else if(typeof define === 'function' && define.amd)
|
|
11
|
+
define(["@licium/editor"], factory);
|
|
12
|
+
else {
|
|
13
|
+
var a = typeof exports === 'object' ? factory(require("@licium/editor")) : factory(root["toastui"]["Editor"]);
|
|
14
|
+
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
|
15
|
+
}
|
|
16
|
+
})(self, function(__WEBPACK_EXTERNAL_MODULE__495__) {
|
|
17
|
+
return /******/ (function() { // webpackBootstrap
|
|
18
|
+
/******/ "use strict";
|
|
19
|
+
/******/ var __webpack_modules__ = ({
|
|
20
|
+
|
|
21
|
+
/***/ 495:
|
|
22
|
+
/***/ (function(module) {
|
|
23
|
+
|
|
24
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__495__;
|
|
25
|
+
|
|
26
|
+
/***/ })
|
|
27
|
+
|
|
28
|
+
/******/ });
|
|
29
|
+
/************************************************************************/
|
|
30
|
+
/******/ // The module cache
|
|
31
|
+
/******/ var __webpack_module_cache__ = {};
|
|
32
|
+
/******/
|
|
33
|
+
/******/ // The require function
|
|
34
|
+
/******/ function __webpack_require__(moduleId) {
|
|
35
|
+
/******/ // Check if module is in cache
|
|
36
|
+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
37
|
+
/******/ if (cachedModule !== undefined) {
|
|
38
|
+
/******/ return cachedModule.exports;
|
|
39
|
+
/******/ }
|
|
40
|
+
/******/ // Create a new module (and put it into the cache)
|
|
41
|
+
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
42
|
+
/******/ // no module.id needed
|
|
43
|
+
/******/ // no module.loaded needed
|
|
44
|
+
/******/ exports: {}
|
|
45
|
+
/******/ };
|
|
46
|
+
/******/
|
|
47
|
+
/******/ // Execute the module function
|
|
48
|
+
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
49
|
+
/******/
|
|
50
|
+
/******/ // Return the exports of the module
|
|
51
|
+
/******/ return module.exports;
|
|
52
|
+
/******/ }
|
|
53
|
+
/******/
|
|
54
|
+
/************************************************************************/
|
|
55
|
+
/******/ /* webpack/runtime/compat get default export */
|
|
56
|
+
/******/ !function() {
|
|
57
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
58
|
+
/******/ __webpack_require__.n = function(module) {
|
|
59
|
+
/******/ var getter = module && module.__esModule ?
|
|
60
|
+
/******/ function() { return module['default']; } :
|
|
61
|
+
/******/ function() { return module; };
|
|
62
|
+
/******/ __webpack_require__.d(getter, { a: getter });
|
|
63
|
+
/******/ return getter;
|
|
64
|
+
/******/ };
|
|
65
|
+
/******/ }();
|
|
66
|
+
/******/
|
|
67
|
+
/******/ /* webpack/runtime/define property getters */
|
|
68
|
+
/******/ !function() {
|
|
69
|
+
/******/ // define getter functions for harmony exports
|
|
70
|
+
/******/ __webpack_require__.d = function(exports, definition) {
|
|
71
|
+
/******/ for(var key in definition) {
|
|
72
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
73
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
74
|
+
/******/ }
|
|
75
|
+
/******/ }
|
|
76
|
+
/******/ };
|
|
77
|
+
/******/ }();
|
|
78
|
+
/******/
|
|
79
|
+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
80
|
+
/******/ !function() {
|
|
81
|
+
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
82
|
+
/******/ }();
|
|
83
|
+
/******/
|
|
84
|
+
/******/ /* webpack/runtime/make namespace object */
|
|
85
|
+
/******/ !function() {
|
|
86
|
+
/******/ // define __esModule on exports
|
|
87
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
88
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
89
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
90
|
+
/******/ }
|
|
91
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
92
|
+
/******/ };
|
|
93
|
+
/******/ }();
|
|
94
|
+
/******/
|
|
95
|
+
/************************************************************************/
|
|
96
|
+
var __webpack_exports__ = {};
|
|
97
|
+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
|
|
98
|
+
!function() {
|
|
99
|
+
__webpack_require__.r(__webpack_exports__);
|
|
100
|
+
/* harmony import */ var _editorCore__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(495);
|
|
101
|
+
/* harmony import */ var _editorCore__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editorCore__WEBPACK_IMPORTED_MODULE_0__);
|
|
102
|
+
/**
|
|
103
|
+
* @fileoverview I18N for Chinese
|
|
104
|
+
* @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
_editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage('zh-CN', {
|
|
108
|
+
Markdown: 'Markdown',
|
|
109
|
+
WYSIWYG: '所见即所得',
|
|
110
|
+
Write: '编辑',
|
|
111
|
+
Preview: '预览',
|
|
112
|
+
Headings: '标题',
|
|
113
|
+
Paragraph: '文本',
|
|
114
|
+
Bold: '加粗',
|
|
115
|
+
Italic: '斜体字',
|
|
116
|
+
Strike: '删除线',
|
|
117
|
+
Code: '内嵌代码',
|
|
118
|
+
Line: '水平线',
|
|
119
|
+
Blockquote: '引用块',
|
|
120
|
+
'Unordered list': '无序列表',
|
|
121
|
+
'Ordered list': '有序列表',
|
|
122
|
+
Task: '任务',
|
|
123
|
+
Indent: '缩进',
|
|
124
|
+
Outdent: '减少缩进',
|
|
125
|
+
'Insert link': '插入链接',
|
|
126
|
+
'Insert CodeBlock': '插入代码块',
|
|
127
|
+
'Insert table': '插入表格',
|
|
128
|
+
'Insert image': '插入图片',
|
|
129
|
+
Heading: '标题',
|
|
130
|
+
'Image URL': '图片网址',
|
|
131
|
+
'Select image file': '选择图片文件',
|
|
132
|
+
'Choose a file': '选择一个文件',
|
|
133
|
+
'No file': '没有文件',
|
|
134
|
+
Description: '说明',
|
|
135
|
+
OK: '确认',
|
|
136
|
+
More: '更多',
|
|
137
|
+
Cancel: '取消',
|
|
138
|
+
File: '文件',
|
|
139
|
+
URL: 'URL',
|
|
140
|
+
'Link text': '链接文本',
|
|
141
|
+
'Add row to up': '向上添加行',
|
|
142
|
+
'Add row to down': '在下方添加行',
|
|
143
|
+
'Add column to left': '在左侧添加列',
|
|
144
|
+
'Add column to right': '在右侧添加列',
|
|
145
|
+
'Remove row': '删除行',
|
|
146
|
+
'Remove column': '删除列',
|
|
147
|
+
'Align column to left': '左对齐',
|
|
148
|
+
'Align column to center': '居中对齐',
|
|
149
|
+
'Align column to right': '右对齐',
|
|
150
|
+
'Remove table': '删除表格',
|
|
151
|
+
'Would you like to paste as table?': '需要粘贴为表格吗?',
|
|
152
|
+
'Text color': '文字颜色',
|
|
153
|
+
'Auto scroll enabled': '自动滚动已启用',
|
|
154
|
+
'Auto scroll disabled': '自动滚动已禁用',
|
|
155
|
+
'Choose language': '选择语言',
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
}();
|
|
159
|
+
/******/ return __webpack_exports__;
|
|
160
|
+
/******/ })()
|
|
161
|
+
;
|
|
162
|
+
});
|