@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 Dutch
|
|
104
|
+
* @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
_editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage(['nl', 'nl-NL'], {
|
|
108
|
+
Markdown: 'Markdown',
|
|
109
|
+
WYSIWYG: 'WYSIWYG',
|
|
110
|
+
Write: 'Opslaan',
|
|
111
|
+
Preview: 'Voorbeeld',
|
|
112
|
+
Headings: 'Koppen',
|
|
113
|
+
Paragraph: 'Alinea',
|
|
114
|
+
Bold: 'Vet',
|
|
115
|
+
Italic: 'Cursief',
|
|
116
|
+
Strike: 'Doorhalen',
|
|
117
|
+
Code: 'Inline code',
|
|
118
|
+
Line: 'Regel',
|
|
119
|
+
Blockquote: 'Citaatblok',
|
|
120
|
+
'Unordered list': 'Opsomming',
|
|
121
|
+
'Ordered list': 'Genummerde opsomming',
|
|
122
|
+
Task: 'Taak',
|
|
123
|
+
Indent: 'Niveau verhogen',
|
|
124
|
+
Outdent: 'Niveau verlagen',
|
|
125
|
+
'Insert link': 'Link invoegen',
|
|
126
|
+
'Insert CodeBlock': 'Codeblok toevoegen',
|
|
127
|
+
'Insert table': 'Tabel invoegen',
|
|
128
|
+
'Insert image': 'Afbeelding invoegen',
|
|
129
|
+
Heading: 'Kop',
|
|
130
|
+
'Image URL': 'Afbeelding URL',
|
|
131
|
+
'Select image file': 'Selecteer een afbeelding',
|
|
132
|
+
'Choose a file': 'Kies een bestand',
|
|
133
|
+
'No file': 'Geen bestand',
|
|
134
|
+
Description: 'Omschrijving',
|
|
135
|
+
OK: 'OK',
|
|
136
|
+
More: 'Meer',
|
|
137
|
+
Cancel: 'Annuleren',
|
|
138
|
+
File: 'Bestand',
|
|
139
|
+
URL: 'URL',
|
|
140
|
+
'Link text': 'Link tekst',
|
|
141
|
+
'Add row to up': 'Voeg rij toe aan omhoog',
|
|
142
|
+
'Add row to down': 'Rij naar beneden toevoegen',
|
|
143
|
+
'Add column to left': 'Voeg kolom aan de linkerkant toe',
|
|
144
|
+
'Add column to right': 'Voeg een kolom aan de rechterkant toe',
|
|
145
|
+
'Remove row': 'Rij verwijderen',
|
|
146
|
+
'Remove column': 'Kolom verwijderen',
|
|
147
|
+
'Align column to left': 'Links uitlijnen',
|
|
148
|
+
'Align column to center': 'Centreren',
|
|
149
|
+
'Align column to right': 'Rechts uitlijnen',
|
|
150
|
+
'Remove table': 'Verwijder tabel',
|
|
151
|
+
'Would you like to paste as table?': 'Wil je dit als tabel plakken?',
|
|
152
|
+
'Text color': 'Tekstkleur',
|
|
153
|
+
'Auto scroll enabled': 'Autoscroll ingeschakeld',
|
|
154
|
+
'Auto scroll disabled': 'Autoscroll uitgeschakeld',
|
|
155
|
+
'Choose language': 'Kies een taal',
|
|
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 Polish
|
|
104
|
+
* @author Marcin Mikołajczak <me@m4sk.in>
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
_editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage(['pl', 'pl-PL'], {
|
|
108
|
+
Markdown: 'Markdown',
|
|
109
|
+
WYSIWYG: 'WYSIWYG',
|
|
110
|
+
Write: 'Napisz',
|
|
111
|
+
Preview: 'Podgląd',
|
|
112
|
+
Headings: 'Nagłówki',
|
|
113
|
+
Paragraph: 'Akapit',
|
|
114
|
+
Bold: 'Pogrubienie',
|
|
115
|
+
Italic: 'Kursywa',
|
|
116
|
+
Strike: 'Przekreślenie',
|
|
117
|
+
Code: 'Fragment kodu',
|
|
118
|
+
Line: 'Linia',
|
|
119
|
+
Blockquote: 'Cytat',
|
|
120
|
+
'Unordered list': 'Lista nieuporządkowana',
|
|
121
|
+
'Ordered list': 'Lista uporządkowana',
|
|
122
|
+
Task: 'Zadanie',
|
|
123
|
+
Indent: 'Utwórz wcięcie',
|
|
124
|
+
Outdent: 'Usuń wcięcie',
|
|
125
|
+
'Insert link': 'Umieść odnośnik',
|
|
126
|
+
'Insert CodeBlock': 'Umieść blok kodu',
|
|
127
|
+
'Insert table': 'Umieść tabelę',
|
|
128
|
+
'Insert image': 'Umieść obraz',
|
|
129
|
+
Heading: 'Nagłówek',
|
|
130
|
+
'Image URL': 'Adres URL obrazu',
|
|
131
|
+
'Select image file': 'Wybierz plik obrazu',
|
|
132
|
+
'Choose a file': 'Wybierz plik',
|
|
133
|
+
'No file': 'Brak plik',
|
|
134
|
+
Description: 'Opis',
|
|
135
|
+
OK: 'OK',
|
|
136
|
+
More: 'Więcej',
|
|
137
|
+
Cancel: 'Anuluj',
|
|
138
|
+
File: 'Plik',
|
|
139
|
+
URL: 'URL',
|
|
140
|
+
'Link text': 'Tekst odnośnika',
|
|
141
|
+
'Add row to up': 'Dodaj wiersz do góry',
|
|
142
|
+
'Add row to down': 'Dodaj wiersz w dół',
|
|
143
|
+
'Add column to left': 'Dodaj kolumnę po lewej stronie',
|
|
144
|
+
'Add column to right': 'Dodaj kolumnę po prawej stronie',
|
|
145
|
+
'Remove row': 'Usuń rząd',
|
|
146
|
+
'Remove column': 'Usuń kolumnę',
|
|
147
|
+
'Align column to left': 'Wyrównaj do lewej',
|
|
148
|
+
'Align column to center': 'Wyśrodkuj',
|
|
149
|
+
'Align column to right': 'Wyrównaj do prawej',
|
|
150
|
+
'Remove table': 'Usuń tabelę',
|
|
151
|
+
'Would you like to paste as table?': 'Czy chcesz wkleić tekst jako tabelę?',
|
|
152
|
+
'Text color': 'Kolor tekstu',
|
|
153
|
+
'Auto scroll enabled': 'Włączono automatyczne przewijanie',
|
|
154
|
+
'Auto scroll disabled': 'Wyłączono automatyczne przewijanie',
|
|
155
|
+
'Choose language': 'Wybierz język',
|
|
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 Português
|
|
104
|
+
* @author Nícolas Huber <nicolasluishuber@gmail.com>
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
_editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage(['pt', 'pt-BR'], {
|
|
108
|
+
Markdown: 'Markdown',
|
|
109
|
+
WYSIWYG: 'WYSIWYG',
|
|
110
|
+
Write: 'Escrever',
|
|
111
|
+
Preview: 'Pré-visualizar',
|
|
112
|
+
Headings: 'Cabeçalhos',
|
|
113
|
+
Paragraph: 'Parágrafo',
|
|
114
|
+
Bold: 'Negrito',
|
|
115
|
+
Italic: 'Itálico',
|
|
116
|
+
Strike: 'Traçado',
|
|
117
|
+
Code: 'Código',
|
|
118
|
+
Line: 'Linha',
|
|
119
|
+
Blockquote: 'Bloco de citação',
|
|
120
|
+
'Unordered list': 'Lista não ordenada',
|
|
121
|
+
'Ordered list': 'Lista ordenada',
|
|
122
|
+
Task: 'Tarefa',
|
|
123
|
+
Indent: 'Recuo à esquerda',
|
|
124
|
+
Outdent: 'Recuo à direita',
|
|
125
|
+
'Insert link': 'Inserir link',
|
|
126
|
+
'Insert CodeBlock': 'Inserir bloco de código',
|
|
127
|
+
'Insert table': 'Inserir tabela',
|
|
128
|
+
'Insert image': 'Inserir imagem',
|
|
129
|
+
Heading: 'Título',
|
|
130
|
+
'Image URL': 'URL da imagem',
|
|
131
|
+
'Select image file': 'Selecione um arquivo de imagem',
|
|
132
|
+
'Choose a file': 'Escolha um arquivo',
|
|
133
|
+
'No file': 'Nenhum arquivo',
|
|
134
|
+
Description: 'Descrição',
|
|
135
|
+
OK: 'OK',
|
|
136
|
+
More: 'Mais',
|
|
137
|
+
Cancel: 'Cancelar',
|
|
138
|
+
File: 'Arquivo',
|
|
139
|
+
URL: 'URL',
|
|
140
|
+
'Link text': 'Link de texto',
|
|
141
|
+
'Add row to up': 'Adicionar linha para cima',
|
|
142
|
+
'Add row to down': 'Adicionar linha para baixo',
|
|
143
|
+
'Add column to left': 'Adicionar coluna à esquerda',
|
|
144
|
+
'Add column to right': 'Adicionar coluna à direita',
|
|
145
|
+
'Remove row': 'Remover linha',
|
|
146
|
+
'Remove column': 'Remover coluna',
|
|
147
|
+
'Align column to left': 'Alinhar à esquerda',
|
|
148
|
+
'Align column to center': 'Alinhar ao centro',
|
|
149
|
+
'Align column to right': 'Alinhar à direita',
|
|
150
|
+
'Remove table': 'Remover tabela',
|
|
151
|
+
'Would you like to paste as table?': 'Você gostaria de colar como mesa?',
|
|
152
|
+
'Text color': 'Cor do texto',
|
|
153
|
+
'Auto scroll enabled': 'Rolagem automática habilitada',
|
|
154
|
+
'Auto scroll disabled': 'Rolagem automática desabilitada',
|
|
155
|
+
'Choose language': 'Escolher linguagem',
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
}();
|
|
159
|
+
/******/ return __webpack_exports__;
|
|
160
|
+
/******/ })()
|
|
161
|
+
;
|
|
162
|
+
});
|
|
@@ -0,0 +1,163 @@
|
|
|
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 Russian
|
|
104
|
+
* @author Stepan Samko <stpnsamko@gmail.com>
|
|
105
|
+
* @author Veaceslav Grimalschi <grimalschi@yandex.ru>
|
|
106
|
+
*/
|
|
107
|
+
|
|
108
|
+
_editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage(['ru', 'ru-RU'], {
|
|
109
|
+
Markdown: 'Markdown',
|
|
110
|
+
WYSIWYG: 'WYSIWYG',
|
|
111
|
+
Write: 'Редактор',
|
|
112
|
+
Preview: 'Просмотр',
|
|
113
|
+
Headings: 'Заголовки',
|
|
114
|
+
Paragraph: 'Абзац',
|
|
115
|
+
Bold: 'Жирный',
|
|
116
|
+
Italic: 'Курсив',
|
|
117
|
+
Strike: 'Зачеркнутый',
|
|
118
|
+
Code: 'Код',
|
|
119
|
+
Line: 'Линия',
|
|
120
|
+
Blockquote: 'Цитата',
|
|
121
|
+
'Unordered list': 'Неупорядоченный список',
|
|
122
|
+
'Ordered list': 'Упорядоченный список',
|
|
123
|
+
Task: 'Галочка',
|
|
124
|
+
Indent: 'Увеличить отступ',
|
|
125
|
+
Outdent: 'Уменьшить отступ',
|
|
126
|
+
'Insert link': 'Вставить ссылку',
|
|
127
|
+
'Insert CodeBlock': 'Вставить блок кода',
|
|
128
|
+
'Insert table': 'Вставить таблицу',
|
|
129
|
+
'Insert image': 'Вставить изображение',
|
|
130
|
+
Heading: 'Заголовок',
|
|
131
|
+
'Image URL': 'URL изображения',
|
|
132
|
+
'Select image file': 'Выбрать файл изображения',
|
|
133
|
+
'Choose a file': 'Выбрать',
|
|
134
|
+
'No file': 'Нет файла',
|
|
135
|
+
Description: 'Описание',
|
|
136
|
+
OK: 'Хорошо',
|
|
137
|
+
More: 'Еще',
|
|
138
|
+
Cancel: 'Отмена',
|
|
139
|
+
File: 'Файл',
|
|
140
|
+
URL: 'URL',
|
|
141
|
+
'Link text': 'Текст ссылки',
|
|
142
|
+
'Add row to up': 'Добавить строку вверх',
|
|
143
|
+
'Add row to down': 'Добавить строку вниз',
|
|
144
|
+
'Add column to left': 'Добавить столбец слева',
|
|
145
|
+
'Add column to right': 'Добавить столбец справа',
|
|
146
|
+
'Remove row': 'Удалить ряд',
|
|
147
|
+
'Remove column': 'Удалить столбец',
|
|
148
|
+
'Align column to left': 'Выровнять по левому краю',
|
|
149
|
+
'Align column to center': 'Выровнять по центру',
|
|
150
|
+
'Align column to right': 'Выровнять по правому краю',
|
|
151
|
+
'Remove table': 'Удалить таблицу',
|
|
152
|
+
'Would you like to paste as table?': 'Вы хотите вставить в виде таблицы?',
|
|
153
|
+
'Text color': 'Цвет текста',
|
|
154
|
+
'Auto scroll enabled': 'Автопрокрутка включена',
|
|
155
|
+
'Auto scroll disabled': 'Автопрокрутка отключена',
|
|
156
|
+
'Choose language': 'Выбрать язык',
|
|
157
|
+
});
|
|
158
|
+
|
|
159
|
+
}();
|
|
160
|
+
/******/ return __webpack_exports__;
|
|
161
|
+
/******/ })()
|
|
162
|
+
;
|
|
163
|
+
});
|