@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
package/dist/i18n/ar.js
ADDED
|
@@ -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 Arabic
|
|
104
|
+
* @author Amira Salah <amira.salah@itworx.com>
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
_editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage('ar', {
|
|
108
|
+
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: 'رابط',
|
|
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 Czech
|
|
104
|
+
* @author Dmitrij Tkačenko <dmitrij.tkacenko@scalesoft.cz>
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
_editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage(['cs', 'cs-CZ'], {
|
|
108
|
+
Markdown: 'Markdown',
|
|
109
|
+
WYSIWYG: 'WYSIWYG',
|
|
110
|
+
Write: 'Napsat',
|
|
111
|
+
Preview: 'Náhled',
|
|
112
|
+
Headings: 'Nadpisy',
|
|
113
|
+
Paragraph: 'Odstavec',
|
|
114
|
+
Bold: 'Tučné',
|
|
115
|
+
Italic: 'Kurzíva',
|
|
116
|
+
Strike: 'Přeškrtnuté',
|
|
117
|
+
Code: 'Kód',
|
|
118
|
+
Line: 'Vodorovná čára',
|
|
119
|
+
Blockquote: 'Citace',
|
|
120
|
+
'Unordered list': 'Seznam s odrážkami',
|
|
121
|
+
'Ordered list': 'Číslovaný seznam',
|
|
122
|
+
Task: 'Úkol',
|
|
123
|
+
Indent: 'Zvětšit odsazení',
|
|
124
|
+
Outdent: 'Zmenšit odsazení',
|
|
125
|
+
'Insert link': 'Vložit odkaz',
|
|
126
|
+
'Insert CodeBlock': 'Vložit blok kódu',
|
|
127
|
+
'Insert table': 'Vložit tabulku',
|
|
128
|
+
'Insert image': 'Vložit obrázek',
|
|
129
|
+
Heading: 'Nadpis',
|
|
130
|
+
'Image URL': 'URL obrázku',
|
|
131
|
+
'Select image file': 'Vybrat obrázek',
|
|
132
|
+
'Choose a file': 'Vyberte soubor',
|
|
133
|
+
'No file': 'Žádný soubor',
|
|
134
|
+
Description: 'Popis',
|
|
135
|
+
OK: 'OK',
|
|
136
|
+
More: 'Více',
|
|
137
|
+
Cancel: 'Zrušit',
|
|
138
|
+
File: 'Soubor',
|
|
139
|
+
URL: 'URL',
|
|
140
|
+
'Link text': 'Text odkazu',
|
|
141
|
+
'Add row to up': 'Přidejte řádek nahoru',
|
|
142
|
+
'Add row to down': 'Přidejte řádek dolů',
|
|
143
|
+
'Add column to left': 'Přidat sloupec vlevo',
|
|
144
|
+
'Add column to right': 'Přidat sloupec doprava',
|
|
145
|
+
'Remove row': 'Odebrat řádek',
|
|
146
|
+
'Remove column': 'Odebrat sloupec',
|
|
147
|
+
'Align column to left': 'Zarovnat vlevo',
|
|
148
|
+
'Align column to center': 'Zarovnat na střed',
|
|
149
|
+
'Align column to right': 'Zarovnat vpravo',
|
|
150
|
+
'Remove table': 'Odstranit tabulku',
|
|
151
|
+
'Would you like to paste as table?': 'Chcete vložit jako tabulku?',
|
|
152
|
+
'Text color': 'Barva textu',
|
|
153
|
+
'Auto scroll enabled': 'Automatické rolování zapnuto',
|
|
154
|
+
'Auto scroll disabled': 'Automatické rolování vypnuto',
|
|
155
|
+
'Choose language': 'Vybrat jazyk',
|
|
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 German
|
|
104
|
+
* @author Jann-Niklas Kiepert <jannkiepert@vivaldi.net>
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
_editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage(['de', 'de-DE'], {
|
|
108
|
+
Markdown: 'Markdown',
|
|
109
|
+
WYSIWYG: 'WYSIWYG',
|
|
110
|
+
Write: 'Verfassen',
|
|
111
|
+
Preview: 'Vorschau',
|
|
112
|
+
Headings: 'Überschriften',
|
|
113
|
+
Paragraph: 'Text',
|
|
114
|
+
Bold: 'Fett',
|
|
115
|
+
Italic: 'Kursiv',
|
|
116
|
+
Strike: 'Durchgestrichen',
|
|
117
|
+
Code: 'Code',
|
|
118
|
+
Line: 'Trennlinie',
|
|
119
|
+
Blockquote: 'Blocktext',
|
|
120
|
+
'Unordered list': 'Aufzählung',
|
|
121
|
+
'Ordered list': 'Nummerierte Aufzählung',
|
|
122
|
+
Task: 'Aufgabe',
|
|
123
|
+
Indent: 'Einrücken',
|
|
124
|
+
Outdent: 'Ausrücken',
|
|
125
|
+
'Insert link': 'Link einfügen',
|
|
126
|
+
'Insert CodeBlock': 'Codeblock einfügen',
|
|
127
|
+
'Insert table': 'Tabelle einfügen',
|
|
128
|
+
'Insert image': 'Grafik einfügen',
|
|
129
|
+
Heading: 'Titel',
|
|
130
|
+
'Image URL': 'Bild URL',
|
|
131
|
+
'Select image file': 'Grafik auswählen',
|
|
132
|
+
'Choose a file': 'Wähle eine Datei',
|
|
133
|
+
'No file': 'Keine Datei',
|
|
134
|
+
Description: 'Beschreibung',
|
|
135
|
+
OK: 'OK',
|
|
136
|
+
More: 'Mehr',
|
|
137
|
+
Cancel: 'Abbrechen',
|
|
138
|
+
File: 'Datei',
|
|
139
|
+
URL: 'URL',
|
|
140
|
+
'Link text': 'Anzuzeigender Text',
|
|
141
|
+
'Add row to up': 'Zeile nach oben hinzufügen',
|
|
142
|
+
'Add row to down': 'Zeile nach unten hinzufügen',
|
|
143
|
+
'Add column to left': 'Spalte links hinzufügen',
|
|
144
|
+
'Add column to right': 'Spalte rechts hinzufügen',
|
|
145
|
+
'Remove row': 'Zeile entfernen',
|
|
146
|
+
'Remove column': 'Spalte entfernen',
|
|
147
|
+
'Align column to left': 'Links ausrichten',
|
|
148
|
+
'Align column to center': 'Zentrieren',
|
|
149
|
+
'Align column to right': 'Rechts ausrichten',
|
|
150
|
+
'Remove table': 'Tabelle entfernen',
|
|
151
|
+
'Would you like to paste as table?': 'Möchten Sie eine Tabelle einfügen?',
|
|
152
|
+
'Text color': 'Textfarbe',
|
|
153
|
+
'Auto scroll enabled': 'Autoscrollen aktiviert',
|
|
154
|
+
'Auto scroll disabled': 'Autoscrollen deaktiviert',
|
|
155
|
+
'Choose language': 'Sprache auswählen',
|
|
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 Spanish
|
|
104
|
+
* @author Enrico Lamperti <oss@elamperti.com>
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
_editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage(['es', 'es-ES'], {
|
|
108
|
+
Markdown: 'Markdown',
|
|
109
|
+
WYSIWYG: 'WYSIWYG',
|
|
110
|
+
Write: 'Escribir',
|
|
111
|
+
Preview: 'Vista previa',
|
|
112
|
+
Headings: 'Encabezados',
|
|
113
|
+
Paragraph: 'Párrafo',
|
|
114
|
+
Bold: 'Negrita',
|
|
115
|
+
Italic: 'Itálica',
|
|
116
|
+
Strike: 'Tachado',
|
|
117
|
+
Code: 'Código',
|
|
118
|
+
Line: 'Línea',
|
|
119
|
+
Blockquote: 'Cita',
|
|
120
|
+
'Unordered list': 'Lista desordenada',
|
|
121
|
+
'Ordered list': 'Lista ordenada',
|
|
122
|
+
Task: 'Tarea',
|
|
123
|
+
Indent: 'Sangría',
|
|
124
|
+
Outdent: 'Saliendo',
|
|
125
|
+
'Insert link': 'Insertar enlace',
|
|
126
|
+
'Insert CodeBlock': 'Insertar bloque de código',
|
|
127
|
+
'Insert table': 'Insertar tabla',
|
|
128
|
+
'Insert image': 'Insertar imagen',
|
|
129
|
+
Heading: 'Encabezado',
|
|
130
|
+
'Image URL': 'URL de la imagen',
|
|
131
|
+
'Select image file': 'Seleccionar archivo de imagen',
|
|
132
|
+
'Choose a file': 'Escoge un archivo',
|
|
133
|
+
'No file': 'Ningún archivo',
|
|
134
|
+
Description: 'Descripción',
|
|
135
|
+
OK: 'Aceptar',
|
|
136
|
+
More: 'Más',
|
|
137
|
+
Cancel: 'Cancelar',
|
|
138
|
+
File: 'Archivo',
|
|
139
|
+
URL: 'URL',
|
|
140
|
+
'Link text': 'Texto del enlace',
|
|
141
|
+
'Add row to up': 'Agregar fila para subir',
|
|
142
|
+
'Add row to down': 'Agregar fila hacia abajo',
|
|
143
|
+
'Add column to left': 'Agregar columna a la izquierda',
|
|
144
|
+
'Add column to right': 'Agregar columna a la derecha',
|
|
145
|
+
'Remove row': 'Eliminar fila',
|
|
146
|
+
'Remove column': 'Eliminar columna',
|
|
147
|
+
'Align column to left': 'Alinear a la izquierda',
|
|
148
|
+
'Align column to center': 'Centrar',
|
|
149
|
+
'Align column to right': 'Alinear a la derecha',
|
|
150
|
+
'Remove table': 'Eliminar tabla',
|
|
151
|
+
'Would you like to paste as table?': '¿Desea pegar como tabla?',
|
|
152
|
+
'Text color': 'Color del texto',
|
|
153
|
+
'Auto scroll enabled': 'Desplazamiento automático habilitado',
|
|
154
|
+
'Auto scroll disabled': 'Desplazamiento automático deshabilitado',
|
|
155
|
+
'Choose language': 'Elegir idioma',
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
}();
|
|
159
|
+
/******/ return __webpack_exports__;
|
|
160
|
+
/******/ })()
|
|
161
|
+
;
|
|
162
|
+
});
|