suneditor 2.46.2 → 3.0.0-alpha.2
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/.eslintignore +7 -0
- package/.eslintrc.json +64 -0
- package/CONTRIBUTING.md +36 -0
- package/LICENSE.txt +1 -1
- package/README.md +11 -1560
- package/package.json +94 -70
- package/src/assets/icons/_default.js +194 -0
- package/src/assets/suneditor-content.css +642 -0
- package/src/assets/suneditor.css +3378 -0
- package/src/core/base/eventHandlers/handler_toolbar.js +114 -0
- package/src/core/base/eventHandlers/handler_ww_clipboard.js +31 -0
- package/src/core/base/eventHandlers/handler_ww_dragDrop.js +69 -0
- package/src/core/base/eventHandlers/handler_ww_key_input.js +978 -0
- package/src/core/base/eventHandlers/handler_ww_mouse.js +118 -0
- package/src/core/base/eventManager.js +1129 -0
- package/src/core/base/events.js +320 -0
- package/src/core/base/history.js +301 -0
- package/src/core/class/char.js +146 -0
- package/src/core/class/component.js +624 -0
- package/src/core/class/format.js +3255 -0
- package/src/core/class/html.js +1621 -0
- package/src/core/class/menu.js +260 -0
- package/src/core/class/nodeTransform.js +379 -0
- package/src/core/class/notice.js +42 -0
- package/src/core/class/offset.js +578 -0
- package/src/core/class/selection.js +508 -0
- package/src/core/class/shortcuts.js +38 -0
- package/src/core/class/toolbar.js +440 -0
- package/src/core/class/viewer.js +646 -0
- package/src/core/editor.js +1588 -0
- package/src/core/section/actives.js +107 -0
- package/src/core/section/constructor.js +1237 -0
- package/src/core/section/context.js +97 -0
- package/src/editorInjector/_classes.js +22 -0
- package/src/editorInjector/_core.js +28 -0
- package/src/editorInjector/index.js +13 -0
- package/src/helper/converter.js +313 -0
- package/src/helper/domUtils.js +1177 -0
- package/src/helper/env.js +250 -0
- package/src/helper/index.js +19 -0
- package/src/helper/numbers.js +68 -0
- package/src/helper/unicode.js +43 -0
- package/src/langs/ckb.js +161 -0
- package/src/langs/cs.js +161 -0
- package/src/langs/da.js +161 -0
- package/src/langs/de.js +162 -0
- package/src/langs/en.js +199 -0
- package/src/langs/es.js +162 -0
- package/src/langs/fa.js +159 -0
- package/src/langs/fr.js +161 -0
- package/src/langs/he.js +162 -0
- package/src/{lang → langs}/index.js +0 -2
- package/src/langs/it.js +162 -0
- package/src/langs/ja.js +162 -0
- package/src/langs/ko.js +162 -0
- package/src/langs/lv.js +162 -0
- package/src/langs/nl.js +162 -0
- package/src/langs/pl.js +162 -0
- package/src/langs/pt_br.js +162 -0
- package/src/langs/ro.js +162 -0
- package/src/langs/ru.js +162 -0
- package/src/langs/se.js +162 -0
- package/src/langs/tr.js +159 -0
- package/src/langs/ua.js +162 -0
- package/src/langs/ur.js +162 -0
- package/src/langs/zh_cn.js +162 -0
- package/src/modules/ApiManager.js +168 -0
- package/src/modules/ColorPicker.js +302 -0
- package/src/modules/Controller.js +315 -0
- package/src/modules/Figure.js +1174 -0
- package/src/modules/FileBrowser.js +271 -0
- package/src/modules/FileManager.js +290 -0
- package/src/modules/HueSlider.js +513 -0
- package/src/modules/Modal.js +177 -0
- package/src/modules/ModalAnchorEditor.js +494 -0
- package/src/modules/SelectMenu.js +447 -0
- package/src/modules/_DragHandle.js +16 -0
- package/src/modules/index.js +14 -0
- package/src/plugins/command/blockquote.js +47 -47
- package/src/plugins/command/exportPdf.js +168 -0
- package/src/plugins/command/fileUpload.js +389 -0
- package/src/plugins/command/list_bulleted.js +112 -0
- package/src/plugins/command/list_numbered.js +115 -0
- package/src/plugins/dropdown/align.js +143 -0
- package/src/plugins/dropdown/backgroundColor.js +73 -0
- package/src/plugins/dropdown/font.js +113 -0
- package/src/plugins/dropdown/fontColor.js +73 -0
- package/src/plugins/dropdown/formatBlock.js +141 -0
- package/src/plugins/dropdown/hr.js +111 -0
- package/src/plugins/dropdown/layout.js +72 -0
- package/src/plugins/dropdown/lineHeight.js +114 -0
- package/src/plugins/dropdown/list.js +107 -0
- package/src/plugins/dropdown/paragraphStyle.js +117 -0
- package/src/plugins/dropdown/table.js +2810 -0
- package/src/plugins/dropdown/template.js +71 -0
- package/src/plugins/dropdown/textStyle.js +137 -0
- package/src/plugins/field/mention.js +172 -0
- package/src/plugins/fileBrowser/imageGallery.js +76 -59
- package/src/plugins/index.js +86 -24
- package/src/plugins/input/fontSize.js +357 -0
- package/src/plugins/modal/audio.js +492 -0
- package/src/plugins/modal/image.js +1062 -0
- package/src/plugins/modal/link.js +211 -0
- package/src/plugins/modal/math.js +347 -0
- package/src/plugins/modal/video.js +870 -0
- package/src/suneditor.js +62 -67
- package/src/themes/test.css +61 -0
- package/typings/CommandPlugin.d.ts +8 -0
- package/typings/DialogPlugin.d.ts +20 -0
- package/typings/FileBrowserPlugin.d.ts +30 -0
- package/typings/Lang.d.ts +124 -0
- package/typings/Module.d.ts +15 -0
- package/typings/Plugin.d.ts +42 -0
- package/typings/SubmenuPlugin.d.ts +8 -0
- package/typings/_classes.d.ts +17 -0
- package/typings/_colorPicker.d.ts +60 -0
- package/typings/_core.d.ts +55 -0
- package/typings/align.d.ts +5 -0
- package/{src/plugins/dialog → typings}/audio.d.ts +1 -1
- package/typings/backgroundColor.d.ts +5 -0
- package/{src/plugins/command → typings}/blockquote.d.ts +1 -1
- package/typings/char.d.ts +39 -0
- package/typings/component.d.ts +38 -0
- package/typings/context.d.ts +39 -0
- package/typings/converter.d.ts +33 -0
- package/typings/dialog.d.ts +28 -0
- package/typings/domUtils.d.ts +361 -0
- package/typings/editor.d.ts +7 -0
- package/typings/editor.ts +542 -0
- package/typings/env.d.ts +70 -0
- package/typings/eventManager.d.ts +37 -0
- package/typings/events.d.ts +262 -0
- package/typings/fileBrowser.d.ts +42 -0
- package/typings/fileManager.d.ts +67 -0
- package/typings/font.d.ts +5 -0
- package/typings/fontColor.d.ts +5 -0
- package/typings/fontSize.d.ts +5 -0
- package/typings/format.d.ts +191 -0
- package/typings/formatBlock.d.ts +5 -0
- package/typings/history.d.ts +48 -0
- package/typings/horizontalRule.d.ts +5 -0
- package/{src/plugins/dialog → typings}/image.d.ts +1 -1
- package/{src/plugins/fileBrowser → typings}/imageGallery.d.ts +1 -1
- package/typings/index.d.ts +21 -0
- package/{src/plugins/modules/index.d.ts → typings/index.modules.d.ts} +3 -3
- package/typings/index.plugins.d.ts +58 -0
- package/typings/lineHeight.d.ts +5 -0
- package/{src/plugins/dialog → typings}/link.d.ts +1 -1
- package/typings/list.d.ts +5 -0
- package/{src/plugins/dialog → typings}/math.d.ts +1 -1
- package/typings/mediaContainer.d.ts +25 -0
- package/typings/node.d.ts +57 -0
- package/typings/notice.d.ts +16 -0
- package/typings/numbers.d.ts +29 -0
- package/typings/offset.d.ts +24 -0
- package/typings/options.d.ts +589 -0
- package/typings/paragraphStyle.d.ts +5 -0
- package/typings/resizing.d.ts +141 -0
- package/typings/selection.d.ts +94 -0
- package/typings/shortcuts.d.ts +13 -0
- package/typings/suneditor.d.ts +9 -0
- package/typings/table.d.ts +5 -0
- package/typings/template.d.ts +5 -0
- package/typings/textStyle.d.ts +5 -0
- package/typings/toolbar.d.ts +32 -0
- package/typings/unicode.d.ts +25 -0
- package/{src/plugins/dialog → typings}/video.d.ts +1 -1
- package/dist/css/suneditor.min.css +0 -1
- package/dist/suneditor.min.js +0 -2
- package/src/assets/css/suneditor-contents.css +0 -562
- package/src/assets/css/suneditor.css +0 -566
- package/src/assets/defaultIcons.js +0 -103
- package/src/lang/Lang.d.ts +0 -144
- package/src/lang/ckb.d.ts +0 -5
- package/src/lang/ckb.js +0 -188
- package/src/lang/cs.d.ts +0 -5
- package/src/lang/cs.js +0 -188
- package/src/lang/da.d.ts +0 -5
- package/src/lang/da.js +0 -191
- package/src/lang/de.d.ts +0 -5
- package/src/lang/de.js +0 -188
- package/src/lang/en.d.ts +0 -5
- package/src/lang/en.js +0 -188
- package/src/lang/es.d.ts +0 -5
- package/src/lang/es.js +0 -188
- package/src/lang/fa.d.ts +0 -5
- package/src/lang/fa.js +0 -188
- package/src/lang/fr.d.ts +0 -5
- package/src/lang/fr.js +0 -188
- package/src/lang/he.d.ts +0 -5
- package/src/lang/he.js +0 -188
- package/src/lang/index.d.ts +0 -23
- package/src/lang/it.d.ts +0 -5
- package/src/lang/it.js +0 -188
- package/src/lang/ja.d.ts +0 -5
- package/src/lang/ja.js +0 -188
- package/src/lang/ko.d.ts +0 -5
- package/src/lang/ko.js +0 -188
- package/src/lang/lv.d.ts +0 -5
- package/src/lang/lv.js +0 -188
- package/src/lang/nl.d.ts +0 -5
- package/src/lang/nl.js +0 -188
- package/src/lang/pl.d.ts +0 -5
- package/src/lang/pl.js +0 -188
- package/src/lang/pt_br.d.ts +0 -5
- package/src/lang/pt_br.js +0 -189
- package/src/lang/ro.d.ts +0 -5
- package/src/lang/ro.js +0 -188
- package/src/lang/ru.d.ts +0 -5
- package/src/lang/ru.js +0 -188
- package/src/lang/se.d.ts +0 -5
- package/src/lang/se.js +0 -191
- package/src/lang/tr.d.ts +0 -5
- package/src/lang/tr.js +0 -191
- package/src/lang/ua.d.ts +0 -5
- package/src/lang/ua.js +0 -188
- package/src/lang/ur.d.ts +0 -5
- package/src/lang/ur.js +0 -188
- package/src/lang/zh_cn.d.ts +0 -5
- package/src/lang/zh_cn.js +0 -187
- package/src/lib/constructor.js +0 -954
- package/src/lib/context.d.ts +0 -42
- package/src/lib/context.js +0 -71
- package/src/lib/core.d.ts +0 -1135
- package/src/lib/core.js +0 -9395
- package/src/lib/history.d.ts +0 -48
- package/src/lib/history.js +0 -219
- package/src/lib/util.d.ts +0 -678
- package/src/lib/util.js +0 -2131
- package/src/options.d.ts +0 -608
- package/src/plugins/CommandPlugin.d.ts +0 -8
- package/src/plugins/DialogPlugin.d.ts +0 -20
- package/src/plugins/FileBrowserPlugin.d.ts +0 -30
- package/src/plugins/Module.d.ts +0 -15
- package/src/plugins/Plugin.d.ts +0 -42
- package/src/plugins/SubmenuPlugin.d.ts +0 -8
- package/src/plugins/dialog/audio.js +0 -559
- package/src/plugins/dialog/image.js +0 -1126
- package/src/plugins/dialog/link.js +0 -223
- package/src/plugins/dialog/math.js +0 -295
- package/src/plugins/dialog/mention.js +0 -242
- package/src/plugins/dialog/video.js +0 -979
- package/src/plugins/index.d.ts +0 -79
- package/src/plugins/modules/_anchor.js +0 -461
- package/src/plugins/modules/_colorPicker.d.ts +0 -60
- package/src/plugins/modules/_colorPicker.js +0 -201
- package/src/plugins/modules/_notice.d.ts +0 -21
- package/src/plugins/modules/_notice.js +0 -72
- package/src/plugins/modules/_selectMenu.js +0 -119
- package/src/plugins/modules/component.d.ts +0 -25
- package/src/plugins/modules/component.js +0 -81
- package/src/plugins/modules/dialog.d.ts +0 -28
- package/src/plugins/modules/dialog.js +0 -175
- package/src/plugins/modules/fileBrowser.d.ts +0 -42
- package/src/plugins/modules/fileBrowser.js +0 -374
- package/src/plugins/modules/fileManager.d.ts +0 -67
- package/src/plugins/modules/fileManager.js +0 -326
- package/src/plugins/modules/index.js +0 -9
- package/src/plugins/modules/resizing.d.ts +0 -154
- package/src/plugins/modules/resizing.js +0 -903
- package/src/plugins/submenu/align.d.ts +0 -5
- package/src/plugins/submenu/align.js +0 -160
- package/src/plugins/submenu/font.d.ts +0 -5
- package/src/plugins/submenu/font.js +0 -123
- package/src/plugins/submenu/fontColor.d.ts +0 -5
- package/src/plugins/submenu/fontColor.js +0 -101
- package/src/plugins/submenu/fontSize.d.ts +0 -5
- package/src/plugins/submenu/fontSize.js +0 -112
- package/src/plugins/submenu/formatBlock.d.ts +0 -5
- package/src/plugins/submenu/formatBlock.js +0 -273
- package/src/plugins/submenu/hiliteColor.d.ts +0 -5
- package/src/plugins/submenu/hiliteColor.js +0 -102
- package/src/plugins/submenu/horizontalRule.d.ts +0 -5
- package/src/plugins/submenu/horizontalRule.js +0 -98
- package/src/plugins/submenu/lineHeight.d.ts +0 -5
- package/src/plugins/submenu/lineHeight.js +0 -104
- package/src/plugins/submenu/list.d.ts +0 -5
- package/src/plugins/submenu/list.js +0 -456
- package/src/plugins/submenu/paragraphStyle.d.ts +0 -5
- package/src/plugins/submenu/paragraphStyle.js +0 -135
- package/src/plugins/submenu/table.d.ts +0 -5
- package/src/plugins/submenu/table.js +0 -1431
- package/src/plugins/submenu/template.d.ts +0 -5
- package/src/plugins/submenu/template.js +0 -72
- package/src/plugins/submenu/textStyle.d.ts +0 -5
- package/src/plugins/submenu/textStyle.js +0 -167
- package/src/suneditor.d.ts +0 -9
- package/src/suneditor_build.js +0 -18
- /package/{src/plugins/dialog → typings}/mention.d.ts +0 -0
package/src/langs/ja.js
ADDED
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
(function (global, factory) {
|
|
2
|
+
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
3
|
+
module.exports = global.document
|
|
4
|
+
? factory(global, true)
|
|
5
|
+
: function (w) {
|
|
6
|
+
if (!w.document) {
|
|
7
|
+
throw new Error('SUNEDITOR_LANG a window with a document');
|
|
8
|
+
}
|
|
9
|
+
return factory(w);
|
|
10
|
+
};
|
|
11
|
+
} else {
|
|
12
|
+
factory(global);
|
|
13
|
+
}
|
|
14
|
+
})(typeof window !== 'undefined' ? window : this, function (window, noGlobal) {
|
|
15
|
+
const lang = {
|
|
16
|
+
code: 'ja',
|
|
17
|
+
align: 'ソート',
|
|
18
|
+
alignCenter: '中央揃え',
|
|
19
|
+
alignJustify: '両端揃え',
|
|
20
|
+
alignLeft: '左揃え',
|
|
21
|
+
alignRight: '右揃え',
|
|
22
|
+
audio: 'オーディオ',
|
|
23
|
+
audio_modal_file: 'ファイルの選択',
|
|
24
|
+
audio_modal_title: 'オーディオを挿入',
|
|
25
|
+
audio_modal_url: 'オーディオアドレス',
|
|
26
|
+
autoSize: '自動サイズ',
|
|
27
|
+
backgroundColor: '文字の背景色',
|
|
28
|
+
basic: '基本',
|
|
29
|
+
bold: '太字',
|
|
30
|
+
bulletedList: '円形ブリット',
|
|
31
|
+
caption: '説明付け',
|
|
32
|
+
center: '中央',
|
|
33
|
+
close: '閉じる',
|
|
34
|
+
codeView: 'HTMLの編集',
|
|
35
|
+
default: 'デフォルト',
|
|
36
|
+
deleteColumn: '列を削除する',
|
|
37
|
+
deleteRow: '行の削除',
|
|
38
|
+
dir_ltr: '左から右へ',
|
|
39
|
+
dir_rtl: '右から左に',
|
|
40
|
+
edit: '編集',
|
|
41
|
+
fixedColumnWidth: '固定列幅',
|
|
42
|
+
font: 'フォント',
|
|
43
|
+
fontColor: '文字色',
|
|
44
|
+
fontSize: 'サイズ',
|
|
45
|
+
formats: '段落形式',
|
|
46
|
+
fullScreen: 'フルスクリーン',
|
|
47
|
+
height: '縦',
|
|
48
|
+
horizontalLine: '水平線を挿入',
|
|
49
|
+
horizontalSplit: '横分割',
|
|
50
|
+
hr_dashed: 'ダッシュ',
|
|
51
|
+
hr_dotted: '点線',
|
|
52
|
+
hr_solid: '実線',
|
|
53
|
+
image: '画像',
|
|
54
|
+
imageGallery: 'イメージギャラリー',
|
|
55
|
+
image_modal_altText: '置換文字列',
|
|
56
|
+
image_modal_file: 'ファイルの選択',
|
|
57
|
+
image_modal_title: '画像の挿入',
|
|
58
|
+
image_modal_url: 'イメージアドレス',
|
|
59
|
+
indent: 'インデント',
|
|
60
|
+
insertColumnAfter: '右に列を挿入',
|
|
61
|
+
insertColumnBefore: '左に列を挿入',
|
|
62
|
+
insertRowAbove: '上に行を挿入',
|
|
63
|
+
insertRowBelow: '下に行を挿入',
|
|
64
|
+
italic: 'イタリック',
|
|
65
|
+
layout: 'Layout',
|
|
66
|
+
left: '左',
|
|
67
|
+
lineHeight: '行の高さ',
|
|
68
|
+
link: 'リンク',
|
|
69
|
+
link_modal_bookmark: 'ブックマーク',
|
|
70
|
+
link_modal_downloadLinkCheck: 'ダウンロードリンク',
|
|
71
|
+
link_modal_newWindowCheck: '別ウィンドウで開く',
|
|
72
|
+
link_modal_text: '画面のテキスト',
|
|
73
|
+
link_modal_title: 'リンクの挿入',
|
|
74
|
+
link_modal_url: 'インターネットアドレス',
|
|
75
|
+
list: 'リスト',
|
|
76
|
+
math: '数学',
|
|
77
|
+
math_modal_fontSizeLabel: 'サイズ',
|
|
78
|
+
math_modal_inputLabel: '数学表記',
|
|
79
|
+
math_modal_previewLabel: 'プレビュー',
|
|
80
|
+
math_modal_title: '数学',
|
|
81
|
+
maxSize: '最大サイズ',
|
|
82
|
+
mention: '言及する',
|
|
83
|
+
menu_bordered: '境界線',
|
|
84
|
+
menu_code: 'コード',
|
|
85
|
+
menu_neon: 'ネオン',
|
|
86
|
+
menu_shadow: '影',
|
|
87
|
+
menu_spaced: '文字間隔',
|
|
88
|
+
menu_translucent: '半透明',
|
|
89
|
+
mergeCells: 'セルの結合',
|
|
90
|
+
minSize: '最小サイズ',
|
|
91
|
+
mirrorHorizontal: '左右反転',
|
|
92
|
+
mirrorVertical: '上下反転',
|
|
93
|
+
numberedList: '数値ブリット',
|
|
94
|
+
outdent: 'インデント',
|
|
95
|
+
paragraphStyle: '段落スタイル',
|
|
96
|
+
preview: 'プレビュー',
|
|
97
|
+
print: '印刷',
|
|
98
|
+
proportion: 'の割合カスタマイズ',
|
|
99
|
+
ratio: '比率',
|
|
100
|
+
redo: '再実行',
|
|
101
|
+
remove: '削除',
|
|
102
|
+
removeFormat: '形式を削除',
|
|
103
|
+
resize100: '100% サイズ',
|
|
104
|
+
resize25: '25% サイズ',
|
|
105
|
+
resize50: '50% サイズ',
|
|
106
|
+
resize75: '75% サイズ',
|
|
107
|
+
resize: 'Resize',
|
|
108
|
+
revert: '元に戻す',
|
|
109
|
+
right: '右',
|
|
110
|
+
rotateLeft: '左に回転',
|
|
111
|
+
rotateRight: '右に回転',
|
|
112
|
+
save: '保存',
|
|
113
|
+
search: '探す',
|
|
114
|
+
showBlocks: 'ブロック表示',
|
|
115
|
+
size: 'サイズ',
|
|
116
|
+
splitCells: 'セルを分割',
|
|
117
|
+
strike: '取り消し線',
|
|
118
|
+
submitButton: '確認',
|
|
119
|
+
subscript: '下付き',
|
|
120
|
+
superscript: '上付き',
|
|
121
|
+
table: 'テーブル',
|
|
122
|
+
tableHeader: '表のヘッダー',
|
|
123
|
+
tags: 'タグ',
|
|
124
|
+
tag_blockquote: '引用',
|
|
125
|
+
tag_div: '基本(DIV)',
|
|
126
|
+
tag_h: 'タイトル',
|
|
127
|
+
tag_p: '本文',
|
|
128
|
+
tag_pre: 'コード',
|
|
129
|
+
template: 'テンプレート',
|
|
130
|
+
textStyle: 'テキストスタイル',
|
|
131
|
+
title: 'Title',
|
|
132
|
+
underline: '下線',
|
|
133
|
+
undo: '元に戻す',
|
|
134
|
+
unlink: 'リンク解除',
|
|
135
|
+
verticalSplit: '垂直分割',
|
|
136
|
+
video: '動画',
|
|
137
|
+
video_modal_file: 'ファイルの選択',
|
|
138
|
+
video_modal_title: '動画を挿入',
|
|
139
|
+
video_modal_url: 'メディア埋め込みアドレス, YouTube/Vimeo',
|
|
140
|
+
width: '横'
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
if (typeof noGlobal === typeof undefined) {
|
|
144
|
+
if (!window.SUNEDITOR_LANG) {
|
|
145
|
+
Object.defineProperty(window, 'SUNEDITOR_LANG', {
|
|
146
|
+
enumerable: true,
|
|
147
|
+
writable: false,
|
|
148
|
+
configurable: false,
|
|
149
|
+
value: {}
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
Object.defineProperty(window.SUNEDITOR_LANG, 'ja', {
|
|
154
|
+
enumerable: true,
|
|
155
|
+
writable: true,
|
|
156
|
+
configurable: true,
|
|
157
|
+
value: lang
|
|
158
|
+
});
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
return lang;
|
|
162
|
+
});
|
package/src/langs/ko.js
ADDED
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
(function (global, factory) {
|
|
2
|
+
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
3
|
+
module.exports = global.document
|
|
4
|
+
? factory(global, true)
|
|
5
|
+
: function (w) {
|
|
6
|
+
if (!w.document) {
|
|
7
|
+
throw new Error('SUNEDITOR_LANG a window with a document');
|
|
8
|
+
}
|
|
9
|
+
return factory(w);
|
|
10
|
+
};
|
|
11
|
+
} else {
|
|
12
|
+
factory(global);
|
|
13
|
+
}
|
|
14
|
+
})(typeof window !== 'undefined' ? window : this, function (window, noGlobal) {
|
|
15
|
+
const lang = {
|
|
16
|
+
code: 'ko',
|
|
17
|
+
align: '정렬',
|
|
18
|
+
alignCenter: '가운데 정렬',
|
|
19
|
+
alignJustify: '양쪽 정렬',
|
|
20
|
+
alignLeft: '왼쪽 정렬',
|
|
21
|
+
alignRight: '오른쪽 정렬',
|
|
22
|
+
audio: '오디오',
|
|
23
|
+
audio_modal_file: '파일 선택',
|
|
24
|
+
audio_modal_title: '오디오 삽입',
|
|
25
|
+
audio_modal_url: '오디오 파일 주소',
|
|
26
|
+
autoSize: '자동 크기',
|
|
27
|
+
backgroundColor: '배경색',
|
|
28
|
+
basic: '기본',
|
|
29
|
+
bold: '굵게',
|
|
30
|
+
bulletedList: '원형 리스트',
|
|
31
|
+
caption: '설명 넣기',
|
|
32
|
+
center: '가운데',
|
|
33
|
+
close: '닫기',
|
|
34
|
+
codeView: 'HTML 편집',
|
|
35
|
+
default: '기본값',
|
|
36
|
+
deleteColumn: '열 삭제',
|
|
37
|
+
deleteRow: '행 삭제',
|
|
38
|
+
dir_ltr: '왼쪽에서 오른쪽',
|
|
39
|
+
dir_rtl: '오른쪽에서 왼쪽',
|
|
40
|
+
edit: '편집',
|
|
41
|
+
fixedColumnWidth: '고정 된 열 너비',
|
|
42
|
+
font: '글꼴',
|
|
43
|
+
fontColor: '글자색',
|
|
44
|
+
fontSize: '크기',
|
|
45
|
+
formats: '문단 형식',
|
|
46
|
+
fullScreen: '전체 화면',
|
|
47
|
+
height: '세로',
|
|
48
|
+
horizontalLine: '가로 줄 삽입',
|
|
49
|
+
horizontalSplit: '가로 분할',
|
|
50
|
+
hr_dashed: '대시',
|
|
51
|
+
hr_dotted: '점선',
|
|
52
|
+
hr_solid: '실선',
|
|
53
|
+
image: '이미지',
|
|
54
|
+
imageGallery: '이미지 갤러리',
|
|
55
|
+
image_modal_altText: '대체 문자열',
|
|
56
|
+
image_modal_file: '파일 선택',
|
|
57
|
+
image_modal_title: '이미지 삽입',
|
|
58
|
+
image_modal_url: '이미지 주소',
|
|
59
|
+
indent: '들여쓰기',
|
|
60
|
+
insertColumnAfter: '오른쪽에 열 삽입',
|
|
61
|
+
insertColumnBefore: '왼쪽에 열 삽입',
|
|
62
|
+
insertRowAbove: '위에 행 삽입',
|
|
63
|
+
insertRowBelow: '아래에 행 삽입',
|
|
64
|
+
italic: '기울임',
|
|
65
|
+
layout: '레이아웃',
|
|
66
|
+
left: '왼쪽',
|
|
67
|
+
lineHeight: '줄 높이',
|
|
68
|
+
link: '링크',
|
|
69
|
+
link_modal_bookmark: '북마크',
|
|
70
|
+
link_modal_downloadLinkCheck: '다운로드 링크',
|
|
71
|
+
link_modal_newWindowCheck: '새창으로 열기',
|
|
72
|
+
link_modal_text: '화면 텍스트',
|
|
73
|
+
link_modal_title: '링크 삽입',
|
|
74
|
+
link_modal_url: '인터넷 주소',
|
|
75
|
+
list: '리스트',
|
|
76
|
+
math: '수식',
|
|
77
|
+
math_modal_fontSizeLabel: '글자 크기',
|
|
78
|
+
math_modal_inputLabel: '수학적 표기법',
|
|
79
|
+
math_modal_previewLabel: '미리보기',
|
|
80
|
+
math_modal_title: '수식',
|
|
81
|
+
maxSize: '최대화',
|
|
82
|
+
mention: '멘션',
|
|
83
|
+
menu_bordered: '경계선',
|
|
84
|
+
menu_code: '코드',
|
|
85
|
+
menu_neon: '네온',
|
|
86
|
+
menu_shadow: '그림자',
|
|
87
|
+
menu_spaced: '글자 간격',
|
|
88
|
+
menu_translucent: '반투명',
|
|
89
|
+
mergeCells: '셀 병합',
|
|
90
|
+
minSize: '최소화',
|
|
91
|
+
mirrorHorizontal: '좌우 반전',
|
|
92
|
+
mirrorVertical: '상하 반전',
|
|
93
|
+
numberedList: '숫자형 리스트',
|
|
94
|
+
outdent: '내어쓰기',
|
|
95
|
+
paragraphStyle: '문단 스타일',
|
|
96
|
+
preview: '미리보기',
|
|
97
|
+
print: '인쇄',
|
|
98
|
+
proportion: '비율 맞춤',
|
|
99
|
+
ratio: '비율',
|
|
100
|
+
redo: '다시 실행',
|
|
101
|
+
remove: '삭제',
|
|
102
|
+
removeFormat: '형식 제거',
|
|
103
|
+
resize100: '100% 크기',
|
|
104
|
+
resize25: '25% 크기',
|
|
105
|
+
resize50: '50% 크기',
|
|
106
|
+
resize75: '75% 크기',
|
|
107
|
+
resize: '크기',
|
|
108
|
+
revert: '되돌리기',
|
|
109
|
+
right: '오른쪽',
|
|
110
|
+
rotateLeft: '왼쪽으로 회전',
|
|
111
|
+
rotateRight: '오른쪽으로 회전',
|
|
112
|
+
save: '저장',
|
|
113
|
+
search: '검색',
|
|
114
|
+
showBlocks: '블록 보기',
|
|
115
|
+
size: '크기',
|
|
116
|
+
splitCells: '셀 분할',
|
|
117
|
+
strike: '취소선',
|
|
118
|
+
submitButton: '확인',
|
|
119
|
+
subscript: '아래 첨자',
|
|
120
|
+
superscript: '위 첨자',
|
|
121
|
+
table: '테이블',
|
|
122
|
+
tableHeader: '테이블 제목',
|
|
123
|
+
tags: '태그',
|
|
124
|
+
tag_blockquote: '인용문',
|
|
125
|
+
tag_div: '기본 (DIV)',
|
|
126
|
+
tag_h: '제목',
|
|
127
|
+
tag_p: '본문',
|
|
128
|
+
tag_pre: '코드',
|
|
129
|
+
template: '템플릿',
|
|
130
|
+
textStyle: '글자 스타일',
|
|
131
|
+
title: '제목',
|
|
132
|
+
underline: '밑줄',
|
|
133
|
+
undo: '실행 취소',
|
|
134
|
+
unlink: '링크 해제',
|
|
135
|
+
verticalSplit: '세로 분할',
|
|
136
|
+
video: '동영상',
|
|
137
|
+
video_modal_file: '파일 선택',
|
|
138
|
+
video_modal_title: '동영상 삽입',
|
|
139
|
+
video_modal_url: '미디어 임베드 주소, 유튜브/비메오',
|
|
140
|
+
width: '가로'
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
if (typeof noGlobal === typeof undefined) {
|
|
144
|
+
if (!window.SUNEDITOR_LANG) {
|
|
145
|
+
Object.defineProperty(window, 'SUNEDITOR_LANG', {
|
|
146
|
+
enumerable: true,
|
|
147
|
+
writable: false,
|
|
148
|
+
configurable: false,
|
|
149
|
+
value: {}
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
Object.defineProperty(window.SUNEDITOR_LANG, 'ko', {
|
|
154
|
+
enumerable: true,
|
|
155
|
+
writable: true,
|
|
156
|
+
configurable: true,
|
|
157
|
+
value: lang
|
|
158
|
+
});
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
return lang;
|
|
162
|
+
});
|
package/src/langs/lv.js
ADDED
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
(function (global, factory) {
|
|
2
|
+
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
3
|
+
module.exports = global.document
|
|
4
|
+
? factory(global, true)
|
|
5
|
+
: function (w) {
|
|
6
|
+
if (!w.document) {
|
|
7
|
+
throw new Error('SUNEDITOR_LANG a window with a document');
|
|
8
|
+
}
|
|
9
|
+
return factory(w);
|
|
10
|
+
};
|
|
11
|
+
} else {
|
|
12
|
+
factory(global);
|
|
13
|
+
}
|
|
14
|
+
})(typeof window !== 'undefined' ? window : this, function (window, noGlobal) {
|
|
15
|
+
const lang = {
|
|
16
|
+
code: 'lv',
|
|
17
|
+
align: 'Izlīdzināt',
|
|
18
|
+
alignCenter: 'Centrēt',
|
|
19
|
+
alignJustify: 'Taisnot',
|
|
20
|
+
alignLeft: 'Līdzināt pa kreisi',
|
|
21
|
+
alignRight: 'Līdzināt pa labi',
|
|
22
|
+
audio: 'Audio',
|
|
23
|
+
audio_modal_file: 'Izvēlieties no failiem',
|
|
24
|
+
audio_modal_title: 'Ievietot audio',
|
|
25
|
+
audio_modal_url: 'Audio URL',
|
|
26
|
+
autoSize: 'Automātiskais izmērs',
|
|
27
|
+
backgroundColor: 'Teksta iezīmēšanas krāsa',
|
|
28
|
+
basic: 'Nav iesaiņojuma',
|
|
29
|
+
bold: 'Treknraksts',
|
|
30
|
+
bulletedList: 'Aizzimes',
|
|
31
|
+
caption: 'Ievietot aprakstu',
|
|
32
|
+
center: 'Centrs',
|
|
33
|
+
close: 'Aizvērt',
|
|
34
|
+
codeView: 'Koda skats',
|
|
35
|
+
default: 'Noklusējuma',
|
|
36
|
+
deleteColumn: 'Dzēst kolonnu',
|
|
37
|
+
deleteRow: 'Dzēst rindu',
|
|
38
|
+
dir_ltr: 'No kreisās uz labo',
|
|
39
|
+
dir_rtl: 'No labās uz kreiso',
|
|
40
|
+
edit: 'Rediģēt',
|
|
41
|
+
fixColumnWidth: 'Fiksēts kolonnas platums',
|
|
42
|
+
font: 'Fonts',
|
|
43
|
+
fontColor: 'Fonta krāsa',
|
|
44
|
+
fontSize: 'Fonta lielums',
|
|
45
|
+
formats: 'Formāti',
|
|
46
|
+
fullScreen: 'Pilnekrāna režīms',
|
|
47
|
+
height: 'Augstums',
|
|
48
|
+
horizontalLine: 'Horizontāla līnija',
|
|
49
|
+
horizontalSplit: 'Horizontāls sadalījums',
|
|
50
|
+
hr_dashed: 'Braša',
|
|
51
|
+
hr_dotted: 'Punktiņš',
|
|
52
|
+
hr_solid: 'Ciets',
|
|
53
|
+
image: 'Attēls',
|
|
54
|
+
imageGallery: 'Attēlu galerija',
|
|
55
|
+
image_modal_altText: 'Alternatīvs teksts',
|
|
56
|
+
image_modal_file: 'Izvēlieties no failiem',
|
|
57
|
+
image_modal_title: 'Ievietot attēlu',
|
|
58
|
+
image_modal_url: 'Attēla URL',
|
|
59
|
+
indent: 'Palielināt atkāpi',
|
|
60
|
+
insertColumnAfter: 'Ievietot kolonnu aiz',
|
|
61
|
+
insertColumnBefore: 'Ievietot kolonnu pirms',
|
|
62
|
+
insertRowAbove: 'Ievietot rindu virs',
|
|
63
|
+
insertRowBelow: 'Ievietot rindu zemāk',
|
|
64
|
+
italic: 'Slīpraksts',
|
|
65
|
+
layout: 'Layout',
|
|
66
|
+
left: 'Pa kreisi',
|
|
67
|
+
lineHeight: 'Līnijas augstums',
|
|
68
|
+
link: 'Saite',
|
|
69
|
+
link_modal_bookmark: 'Grāmatzīme',
|
|
70
|
+
link_modal_downloadLinkCheck: 'Lejupielādes saite',
|
|
71
|
+
link_modal_newWindowCheck: 'Atvērt jaunā logā',
|
|
72
|
+
link_modal_text: 'Parādāmais teksts',
|
|
73
|
+
link_modal_title: 'Ievietot saiti',
|
|
74
|
+
link_modal_url: 'Saites URL',
|
|
75
|
+
list: 'Saraksts',
|
|
76
|
+
math: 'Matemātika',
|
|
77
|
+
math_modal_fontSizeLabel: 'Fonta lielums',
|
|
78
|
+
math_modal_inputLabel: 'Matemātiskā notācija',
|
|
79
|
+
math_modal_previewLabel: 'Priekšskatījums',
|
|
80
|
+
math_modal_title: 'Matemātika',
|
|
81
|
+
maxSize: 'Maksimālais izmērs',
|
|
82
|
+
mention: 'Pieminēt',
|
|
83
|
+
menu_bordered: 'Robežojās',
|
|
84
|
+
menu_code: 'Kods',
|
|
85
|
+
menu_neon: 'Neona',
|
|
86
|
+
menu_shadow: 'Ēna',
|
|
87
|
+
menu_spaced: 'Ar atstarpi',
|
|
88
|
+
menu_translucent: 'Caurspīdīgs',
|
|
89
|
+
mergeCells: 'Apvienot šūnas',
|
|
90
|
+
minSize: 'Minimālais izmērs',
|
|
91
|
+
mirrorHorizontal: 'Spogulis, horizontāls',
|
|
92
|
+
mirrorVertical: 'Spogulis, vertikāls',
|
|
93
|
+
numberedList: 'Numerācija',
|
|
94
|
+
outdent: 'Samazināt atkāpi',
|
|
95
|
+
paragraphStyle: 'Paragrāfa stils',
|
|
96
|
+
preview: 'Priekšskatījums',
|
|
97
|
+
print: 'Drukāt',
|
|
98
|
+
proportion: 'Ierobežo proporcijas',
|
|
99
|
+
ratio: 'Attiecība',
|
|
100
|
+
redo: 'Atkārtot',
|
|
101
|
+
remove: 'Noņemt',
|
|
102
|
+
removeFormat: 'Noņemt formātu',
|
|
103
|
+
resize100: 'Mainīt izmēru 100%',
|
|
104
|
+
resize25: 'Mainīt izmēru 25%',
|
|
105
|
+
resize50: 'Mainīt izmēru 50%',
|
|
106
|
+
resize75: 'Mainīt izmēru 75%',
|
|
107
|
+
resize: 'Resize',
|
|
108
|
+
revert: 'Atjaunot',
|
|
109
|
+
right: 'Labajā pusē',
|
|
110
|
+
rotateLeft: 'Pagriezt pa kreisi',
|
|
111
|
+
rotateRight: 'Pagriezt pa labi',
|
|
112
|
+
save: 'Saglabāt',
|
|
113
|
+
search: 'Meklēt',
|
|
114
|
+
showBlocks: 'Parādit blokus',
|
|
115
|
+
size: 'Izmērs',
|
|
116
|
+
splitCells: 'Sadalīt šūnas',
|
|
117
|
+
strike: 'Pārsvītrojums',
|
|
118
|
+
submitButton: 'Iesniegt',
|
|
119
|
+
subscript: 'Apakšraksts',
|
|
120
|
+
superscript: 'Augšraksts',
|
|
121
|
+
table: 'Tabula',
|
|
122
|
+
tableHeader: 'Tabulas galvene',
|
|
123
|
+
tags: 'Tagi',
|
|
124
|
+
tag_blockquote: 'Citāts',
|
|
125
|
+
tag_div: 'Normāli (DIV)',
|
|
126
|
+
tag_h: 'Galvene',
|
|
127
|
+
tag_p: 'Paragrāfs',
|
|
128
|
+
tag_pre: 'Kods',
|
|
129
|
+
template: 'Veidne',
|
|
130
|
+
textStyle: 'Teksta stils',
|
|
131
|
+
title: 'Title',
|
|
132
|
+
underline: 'Pasvītrot',
|
|
133
|
+
undo: 'Atsaukt',
|
|
134
|
+
unlink: 'Atsaistīt',
|
|
135
|
+
verticalSplit: 'Vertikāls sadalījums',
|
|
136
|
+
video: 'Video',
|
|
137
|
+
video_modal_file: 'Izvēlieties no failiem',
|
|
138
|
+
video_modal_title: 'Ievietot video',
|
|
139
|
+
video_modal_url: 'Multivides iegulšanas URL, YouTube/Vimeo',
|
|
140
|
+
width: 'Platums'
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
if (typeof noGlobal === typeof undefined) {
|
|
144
|
+
if (!window.SUNEDITOR_LANG) {
|
|
145
|
+
Object.defineProperty(window, 'SUNEDITOR_LANG', {
|
|
146
|
+
enumerable: true,
|
|
147
|
+
writable: false,
|
|
148
|
+
configurable: false,
|
|
149
|
+
value: {}
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
Object.defineProperty(window.SUNEDITOR_LANG, 'lv', {
|
|
154
|
+
enumerable: true,
|
|
155
|
+
writable: true,
|
|
156
|
+
configurable: true,
|
|
157
|
+
value: lang
|
|
158
|
+
});
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
return lang;
|
|
162
|
+
});
|
package/src/langs/nl.js
ADDED
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
(function (global, factory) {
|
|
2
|
+
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
3
|
+
module.exports = global.document
|
|
4
|
+
? factory(global, true)
|
|
5
|
+
: function (w) {
|
|
6
|
+
if (!w.document) {
|
|
7
|
+
throw new Error('SUNEDITOR_LANG a window with a document');
|
|
8
|
+
}
|
|
9
|
+
return factory(w);
|
|
10
|
+
};
|
|
11
|
+
} else {
|
|
12
|
+
factory(global);
|
|
13
|
+
}
|
|
14
|
+
})(typeof window !== 'undefined' ? window : this, function (window, noGlobal) {
|
|
15
|
+
const lang = {
|
|
16
|
+
code: 'nl',
|
|
17
|
+
align: 'Uitlijnen',
|
|
18
|
+
alignCenter: 'In het midden uitlijnen',
|
|
19
|
+
alignJustify: 'Uitvullen',
|
|
20
|
+
alignLeft: 'Links uitlijnen',
|
|
21
|
+
alignRight: 'Rechts uitlijnen',
|
|
22
|
+
audio: 'Audio',
|
|
23
|
+
audio_modal_file: 'Selecteer een bestand van uw apparaat',
|
|
24
|
+
audio_modal_title: 'Audio invoegen',
|
|
25
|
+
audio_modal_url: 'URL',
|
|
26
|
+
autoSize: 'Automatische grootte',
|
|
27
|
+
backgroundColor: 'Tekst markeren',
|
|
28
|
+
basic: 'Standaard',
|
|
29
|
+
bold: 'Vetgedrukt',
|
|
30
|
+
bulletedList: 'Ongeordende lijst',
|
|
31
|
+
caption: 'Omschrijving toevoegen',
|
|
32
|
+
center: 'Midden',
|
|
33
|
+
close: 'Sluiten',
|
|
34
|
+
codeView: 'Broncode weergeven',
|
|
35
|
+
default: 'Standaard',
|
|
36
|
+
deleteColumn: 'Kolom verwijderen',
|
|
37
|
+
deleteRow: 'Rij verwijderen',
|
|
38
|
+
dir_ltr: 'Van links naar rechts',
|
|
39
|
+
dir_rtl: 'Rechts naar links',
|
|
40
|
+
edit: 'Bewerken',
|
|
41
|
+
fixedColumnWidth: 'Vaste kolombreedte',
|
|
42
|
+
font: 'Lettertype',
|
|
43
|
+
fontColor: 'Tekstkleur',
|
|
44
|
+
fontSize: 'Lettergrootte',
|
|
45
|
+
formats: 'Formaten',
|
|
46
|
+
fullScreen: 'Volledig scherm',
|
|
47
|
+
height: 'Hoogte',
|
|
48
|
+
horizontalLine: 'Horizontale regel',
|
|
49
|
+
horizontalSplit: 'Horizontaal splitsen',
|
|
50
|
+
hr_dashed: 'Gestreept',
|
|
51
|
+
hr_dotted: 'Gestippeld',
|
|
52
|
+
hr_solid: 'Standaard',
|
|
53
|
+
image: 'Afbeelding',
|
|
54
|
+
imageGallery: 'Galerij',
|
|
55
|
+
image_modal_altText: 'Alt-tekst',
|
|
56
|
+
image_modal_file: 'Selecteer een bestand van uw apparaat',
|
|
57
|
+
image_modal_title: 'Afbeelding invoegen',
|
|
58
|
+
image_modal_url: 'URL',
|
|
59
|
+
indent: 'Inspringen',
|
|
60
|
+
insertColumnAfter: 'Kolom rechts invoegen',
|
|
61
|
+
insertColumnBefore: 'Kolom links invoegen',
|
|
62
|
+
insertRowAbove: 'Rij hierboven invoegen',
|
|
63
|
+
insertRowBelow: 'Rij hieronder invoegen',
|
|
64
|
+
italic: 'Cursief',
|
|
65
|
+
layout: 'Layout',
|
|
66
|
+
left: 'Links',
|
|
67
|
+
lineHeight: 'Lijnhoogte',
|
|
68
|
+
link: 'Link',
|
|
69
|
+
link_modal_bookmark: 'Bladwijzer',
|
|
70
|
+
link_modal_downloadLinkCheck: 'Downloadlink',
|
|
71
|
+
link_modal_newWindowCheck: 'In een nieuw tabblad openen',
|
|
72
|
+
link_modal_text: 'Tekst van de link',
|
|
73
|
+
link_modal_title: 'Link invoegen',
|
|
74
|
+
link_modal_url: 'URL',
|
|
75
|
+
list: 'Lijst',
|
|
76
|
+
math: 'Wiskunde',
|
|
77
|
+
math_modal_fontSizeLabel: 'Lettergrootte',
|
|
78
|
+
math_modal_inputLabel: 'Wiskundige notatie',
|
|
79
|
+
math_modal_previewLabel: 'Voorbeeld',
|
|
80
|
+
math_modal_title: 'Wiskunde',
|
|
81
|
+
maxSize: 'Maximale grootte',
|
|
82
|
+
mention: 'Vermelding',
|
|
83
|
+
menu_bordered: 'Omlijnd',
|
|
84
|
+
menu_code: 'Code',
|
|
85
|
+
menu_neon: 'Neon',
|
|
86
|
+
menu_shadow: 'Schaduw',
|
|
87
|
+
menu_spaced: 'Uit elkaar',
|
|
88
|
+
menu_translucent: 'Doorschijnend',
|
|
89
|
+
mergeCells: 'Cellen samenvoegen',
|
|
90
|
+
minSize: 'Minimale grootte',
|
|
91
|
+
mirrorHorizontal: 'Horizontaal spiegelen',
|
|
92
|
+
mirrorVertical: 'Verticaal spiegelen',
|
|
93
|
+
numberedList: 'Geordende lijst',
|
|
94
|
+
outdent: 'Inspringen ongedaan maken',
|
|
95
|
+
paragraphStyle: 'Alineastijl',
|
|
96
|
+
preview: 'Voorbeeldweergave',
|
|
97
|
+
print: 'Printen',
|
|
98
|
+
proportion: 'Verhouding behouden',
|
|
99
|
+
ratio: 'Verhouding',
|
|
100
|
+
redo: 'Ongedaan maken herstellen',
|
|
101
|
+
remove: 'Verwijderen',
|
|
102
|
+
removeFormat: 'Opmaak verwijderen',
|
|
103
|
+
resize100: 'Formaat wijzigen: 100%',
|
|
104
|
+
resize25: 'Formaat wijzigen: 25%',
|
|
105
|
+
resize50: 'Formaat wijzigen: 50%',
|
|
106
|
+
resize75: 'Formaat wijzigen: 75%',
|
|
107
|
+
resize: 'Resize',
|
|
108
|
+
revert: 'Standaardwaarden herstellen',
|
|
109
|
+
right: 'Rechts',
|
|
110
|
+
rotateLeft: 'Naar links draaien',
|
|
111
|
+
rotateRight: 'Naar rechts draaien',
|
|
112
|
+
save: 'Opslaan',
|
|
113
|
+
search: 'Zoeken',
|
|
114
|
+
showBlocks: 'Blokken tonen',
|
|
115
|
+
size: 'Grootte',
|
|
116
|
+
splitCells: 'Cellen splitsen',
|
|
117
|
+
strike: 'Doorstrepen',
|
|
118
|
+
submitButton: 'Toepassen',
|
|
119
|
+
subscript: 'Subscript',
|
|
120
|
+
superscript: 'Superscript',
|
|
121
|
+
table: 'Tabel',
|
|
122
|
+
tableHeader: 'Tabelkoppen',
|
|
123
|
+
tags: 'Tags',
|
|
124
|
+
tag_blockquote: 'Citaat',
|
|
125
|
+
tag_div: 'Normaal (div)',
|
|
126
|
+
tag_h: 'Kop',
|
|
127
|
+
tag_p: 'Alinea',
|
|
128
|
+
tag_pre: 'Code',
|
|
129
|
+
template: 'Sjabloon',
|
|
130
|
+
textStyle: 'Tekststijl',
|
|
131
|
+
title: 'Title',
|
|
132
|
+
underline: 'Onderstrepen',
|
|
133
|
+
undo: 'Ongedaan maken',
|
|
134
|
+
unlink: 'Ontkoppelen',
|
|
135
|
+
verticalSplit: 'Verticaal splitsen',
|
|
136
|
+
video: 'Video',
|
|
137
|
+
video_modal_file: 'Selecteer een bestand van uw apparaat',
|
|
138
|
+
video_modal_title: 'Video invoegen',
|
|
139
|
+
video_modal_url: 'Embedded URL (YouTube/Vimeo)',
|
|
140
|
+
width: 'Breedte'
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
if (typeof noGlobal === typeof undefined) {
|
|
144
|
+
if (!window.SUNEDITOR_LANG) {
|
|
145
|
+
Object.defineProperty(window, 'SUNEDITOR_LANG', {
|
|
146
|
+
enumerable: true,
|
|
147
|
+
writable: false,
|
|
148
|
+
configurable: false,
|
|
149
|
+
value: {}
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
Object.defineProperty(window.SUNEDITOR_LANG, 'nl', {
|
|
154
|
+
enumerable: true,
|
|
155
|
+
writable: true,
|
|
156
|
+
configurable: true,
|
|
157
|
+
value: lang
|
|
158
|
+
});
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
return lang;
|
|
162
|
+
});
|