suneditor 2.47.4 → 2.47.6
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/LICENSE.txt +20 -20
- package/README.md +1625 -1613
- package/dist/suneditor.min.js +2 -2
- package/example.md +586 -586
- package/package.json +71 -71
- package/src/assets/css/suneditor-contents.css +561 -561
- package/src/assets/css/suneditor.css +0 -0
- package/src/assets/defaultIcons.js +103 -103
- package/src/lang/Lang.d.ts +143 -143
- package/src/lang/ckb.d.ts +4 -4
- package/src/lang/ckb.js +187 -187
- package/src/lang/cs.d.ts +4 -4
- package/src/lang/cs.js +187 -187
- package/src/lang/da.d.ts +4 -4
- package/src/lang/da.js +191 -191
- package/src/lang/de.d.ts +4 -4
- package/src/lang/de.js +188 -188
- package/src/lang/en.d.ts +4 -4
- package/src/lang/en.js +187 -187
- package/src/lang/es.d.ts +4 -4
- package/src/lang/es.js +187 -187
- package/src/lang/fa.d.ts +4 -4
- package/src/lang/fa.js +187 -187
- package/src/lang/fr.d.ts +4 -4
- package/src/lang/fr.js +188 -188
- package/src/lang/he.d.ts +4 -4
- package/src/lang/he.js +188 -188
- package/src/lang/hu.d.ts +5 -5
- package/src/lang/hu.js +188 -188
- package/src/lang/index.d.ts +25 -24
- package/src/lang/index.js +30 -27
- package/src/lang/it.d.ts +4 -4
- package/src/lang/it.js +188 -188
- package/src/lang/ja.d.ts +4 -4
- package/src/lang/ja.js +187 -187
- package/src/lang/km.d.ts +5 -0
- package/src/lang/km.js +188 -0
- package/src/lang/ko.d.ts +4 -4
- package/src/lang/ko.js +187 -187
- package/src/lang/lv.d.ts +4 -4
- package/src/lang/lv.js +187 -187
- package/src/lang/nl.d.ts +4 -4
- package/src/lang/nl.js +187 -187
- package/src/lang/pl.d.ts +4 -4
- package/src/lang/pl.js +187 -187
- package/src/lang/pt_br.d.ts +4 -4
- package/src/lang/pt_br.js +189 -189
- package/src/lang/ro.d.ts +4 -4
- package/src/lang/ro.js +187 -187
- package/src/lang/ru.d.ts +4 -4
- package/src/lang/ru.js +187 -187
- package/src/lang/se.d.ts +4 -4
- package/src/lang/se.js +191 -191
- package/src/lang/tr.d.ts +5 -5
- package/src/lang/tr.js +191 -191
- package/src/lang/ua.d.ts +5 -5
- package/src/lang/ua.js +188 -188
- package/src/lang/ur.d.ts +4 -4
- package/src/lang/ur.js +187 -187
- package/src/lang/zh_cn.d.ts +4 -4
- package/src/lang/zh_cn.js +187 -187
- package/src/lib/constructor.js +0 -0
- package/src/lib/context.d.ts +42 -42
- package/src/lib/context.js +0 -0
- package/src/lib/core.d.ts +1135 -1135
- package/src/lib/core.js +13 -3
- package/src/lib/history.d.ts +48 -48
- package/src/lib/history.js +218 -218
- package/src/lib/util.d.ts +677 -677
- package/src/lib/util.js +1 -1
- package/src/options.d.ts +621 -620
- package/src/plugins/CommandPlugin.d.ts +7 -7
- package/src/plugins/DialogPlugin.d.ts +19 -19
- package/src/plugins/FileBrowserPlugin.d.ts +29 -29
- package/src/plugins/Module.d.ts +14 -14
- package/src/plugins/Plugin.d.ts +41 -41
- package/src/plugins/SubmenuPlugin.d.ts +7 -7
- package/src/plugins/command/blockquote.d.ts +4 -4
- package/src/plugins/command/blockquote.js +46 -46
- package/src/plugins/dialog/audio.d.ts +4 -4
- package/src/plugins/dialog/audio.js +558 -558
- package/src/plugins/dialog/image.d.ts +4 -4
- package/src/plugins/dialog/image.js +1127 -1127
- package/src/plugins/dialog/link.d.ts +4 -4
- package/src/plugins/dialog/link.js +223 -223
- package/src/plugins/dialog/math.d.ts +4 -4
- package/src/plugins/dialog/math.js +300 -300
- package/src/plugins/dialog/video.d.ts +4 -4
- package/src/plugins/dialog/video.js +989 -989
- package/src/plugins/fileBrowser/imageGallery.d.ts +4 -4
- package/src/plugins/fileBrowser/imageGallery.js +64 -64
- package/src/plugins/index.d.ts +79 -79
- package/src/plugins/index.js +32 -32
- package/src/plugins/modules/_anchor.js +461 -461
- package/src/plugins/modules/_colorPicker.d.ts +59 -59
- package/src/plugins/modules/_colorPicker.js +0 -0
- package/src/plugins/modules/_notice.d.ts +20 -20
- package/src/plugins/modules/_notice.js +72 -72
- package/src/plugins/modules/_selectMenu.js +118 -118
- package/src/plugins/modules/component.d.ts +24 -24
- package/src/plugins/modules/component.js +80 -80
- package/src/plugins/modules/dialog.d.ts +27 -27
- package/src/plugins/modules/dialog.js +174 -174
- package/src/plugins/modules/fileBrowser.d.ts +41 -41
- package/src/plugins/modules/fileBrowser.js +377 -377
- package/src/plugins/modules/fileManager.d.ts +66 -66
- package/src/plugins/modules/fileManager.js +325 -325
- package/src/plugins/modules/index.d.ts +10 -10
- package/src/plugins/modules/index.js +8 -8
- package/src/plugins/modules/resizing.d.ts +153 -153
- package/src/plugins/modules/resizing.js +902 -902
- package/src/plugins/submenu/align.d.ts +4 -4
- package/src/plugins/submenu/align.js +160 -160
- package/src/plugins/submenu/font.d.ts +4 -4
- package/src/plugins/submenu/font.js +123 -123
- package/src/plugins/submenu/fontColor.d.ts +4 -4
- package/src/plugins/submenu/fontColor.js +0 -0
- package/src/plugins/submenu/fontSize.d.ts +4 -4
- package/src/plugins/submenu/fontSize.js +112 -112
- package/src/plugins/submenu/formatBlock.d.ts +4 -4
- package/src/plugins/submenu/formatBlock.js +273 -273
- package/src/plugins/submenu/hiliteColor.d.ts +4 -4
- package/src/plugins/submenu/hiliteColor.js +0 -0
- package/src/plugins/submenu/horizontalRule.d.ts +4 -4
- package/src/plugins/submenu/horizontalRule.js +98 -98
- package/src/plugins/submenu/lineHeight.d.ts +4 -4
- package/src/plugins/submenu/lineHeight.js +104 -104
- package/src/plugins/submenu/list.d.ts +4 -4
- package/src/plugins/submenu/list.js +456 -456
- package/src/plugins/submenu/paragraphStyle.d.ts +4 -4
- package/src/plugins/submenu/paragraphStyle.js +135 -135
- package/src/plugins/submenu/table.d.ts +4 -4
- package/src/plugins/submenu/template.d.ts +4 -4
- package/src/plugins/submenu/template.js +71 -71
- package/src/plugins/submenu/textStyle.d.ts +4 -4
- package/src/plugins/submenu/textStyle.js +167 -167
- package/src/suneditor.d.ts +9 -9
- package/src/suneditor.js +75 -75
- package/src/suneditor_build.js +17 -17
- package/README_V3_TEMP.md +0 -630
package/src/lang/ja.js
CHANGED
|
@@ -1,188 +1,188 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* wysiwyg web editor
|
|
3
|
-
*
|
|
4
|
-
* suneditor.js
|
|
5
|
-
* Copyright 2019 JiHong Lee.
|
|
6
|
-
* MIT license.
|
|
7
|
-
*/
|
|
8
|
-
'use strict';
|
|
9
|
-
|
|
10
|
-
(function (global, factory) {
|
|
11
|
-
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
12
|
-
module.exports = global.document ?
|
|
13
|
-
factory(global, true) :
|
|
14
|
-
function (w) {
|
|
15
|
-
if (!w.document) {
|
|
16
|
-
throw new Error('SUNEDITOR_LANG a window with a document');
|
|
17
|
-
}
|
|
18
|
-
return factory(w);
|
|
19
|
-
};
|
|
20
|
-
} else {
|
|
21
|
-
factory(global);
|
|
22
|
-
}
|
|
23
|
-
}(typeof window !== 'undefined' ? window : this, function (window, noGlobal) {
|
|
24
|
-
const lang = {
|
|
25
|
-
code: 'ja',
|
|
26
|
-
toolbar: {
|
|
27
|
-
default: 'デフォルト',
|
|
28
|
-
save: '保存',
|
|
29
|
-
font: 'フォント',
|
|
30
|
-
formats: '段落形式',
|
|
31
|
-
fontSize: 'サイズ',
|
|
32
|
-
bold: '太字',
|
|
33
|
-
underline: '下線',
|
|
34
|
-
italic: 'イタリック',
|
|
35
|
-
strike: '取り消し線',
|
|
36
|
-
subscript: '下付き',
|
|
37
|
-
superscript: '上付き',
|
|
38
|
-
removeFormat: '形式を削除',
|
|
39
|
-
fontColor: '文字色',
|
|
40
|
-
hiliteColor: '文字の背景色',
|
|
41
|
-
indent: 'インデント',
|
|
42
|
-
outdent: 'インデント',
|
|
43
|
-
align: 'ソート',
|
|
44
|
-
alignLeft: '左揃え',
|
|
45
|
-
alignRight: '右揃え',
|
|
46
|
-
alignCenter: '中央揃え',
|
|
47
|
-
alignJustify: '両端揃え',
|
|
48
|
-
list: 'リスト',
|
|
49
|
-
orderList: '数値ブリット',
|
|
50
|
-
unorderList: '円形ブリット',
|
|
51
|
-
horizontalRule: '水平線を挿入',
|
|
52
|
-
hr_solid: '実線',
|
|
53
|
-
hr_dotted: '点線',
|
|
54
|
-
hr_dashed: 'ダッシュ',
|
|
55
|
-
table: 'テーブル',
|
|
56
|
-
link: 'リンク',
|
|
57
|
-
math: '数学',
|
|
58
|
-
image: '画像',
|
|
59
|
-
video: '動画',
|
|
60
|
-
audio: 'オーディオ',
|
|
61
|
-
fullScreen: 'フルスクリーン',
|
|
62
|
-
showBlocks: 'ブロック表示',
|
|
63
|
-
codeView: 'HTMLの編集',
|
|
64
|
-
undo: '元に戻す',
|
|
65
|
-
redo: '再実行',
|
|
66
|
-
preview: 'プレビュー',
|
|
67
|
-
print: '印刷',
|
|
68
|
-
tag_p: '本文',
|
|
69
|
-
tag_div: '基本(DIV)',
|
|
70
|
-
tag_h: 'タイトル',
|
|
71
|
-
tag_blockquote: '引用',
|
|
72
|
-
tag_pre: 'コード',
|
|
73
|
-
template: 'テンプレート',
|
|
74
|
-
lineHeight: '行の高さ',
|
|
75
|
-
paragraphStyle: '段落スタイル',
|
|
76
|
-
textStyle: 'テキストスタイル',
|
|
77
|
-
imageGallery: 'イメージギャラリー',
|
|
78
|
-
dir_ltr: '左から右へ',
|
|
79
|
-
dir_rtl: '右から左に',
|
|
80
|
-
mention: '言及する'
|
|
81
|
-
},
|
|
82
|
-
dialogBox: {
|
|
83
|
-
linkBox: {
|
|
84
|
-
title: 'リンクの挿入',
|
|
85
|
-
url: 'インターネットアドレス',
|
|
86
|
-
text: '画面のテキスト',
|
|
87
|
-
newWindowCheck: '別ウィンドウで開く',
|
|
88
|
-
downloadLinkCheck: 'ダウンロードリンク',
|
|
89
|
-
bookmark: 'ブックマーク'
|
|
90
|
-
},
|
|
91
|
-
mathBox: {
|
|
92
|
-
title: '数学',
|
|
93
|
-
inputLabel: '数学表記',
|
|
94
|
-
fontSizeLabel: 'サイズ',
|
|
95
|
-
previewLabel: 'プレビュー'
|
|
96
|
-
},
|
|
97
|
-
imageBox: {
|
|
98
|
-
title: '画像の挿入',
|
|
99
|
-
file: 'ファイルの選択',
|
|
100
|
-
url: 'イメージアドレス',
|
|
101
|
-
altText: '置換文字列'
|
|
102
|
-
},
|
|
103
|
-
videoBox: {
|
|
104
|
-
title: '動画を挿入',
|
|
105
|
-
file: 'ファイルの選択',
|
|
106
|
-
url: 'メディア埋め込みアドレス, YouTube/Vimeo'
|
|
107
|
-
},
|
|
108
|
-
audioBox: {
|
|
109
|
-
title: 'オーディオを挿入',
|
|
110
|
-
file: 'ファイルの選択',
|
|
111
|
-
url: 'オーディオアドレス'
|
|
112
|
-
},
|
|
113
|
-
browser: {
|
|
114
|
-
tags: 'タグ',
|
|
115
|
-
search: '探す',
|
|
116
|
-
},
|
|
117
|
-
caption: '説明付け',
|
|
118
|
-
close: '閉じる',
|
|
119
|
-
submitButton: '確認',
|
|
120
|
-
revertButton: '元に戻す',
|
|
121
|
-
proportion: 'の割合カスタマイズ',
|
|
122
|
-
basic: '基本',
|
|
123
|
-
left: '左',
|
|
124
|
-
right: '右',
|
|
125
|
-
center: '中央',
|
|
126
|
-
width: '横',
|
|
127
|
-
height: '縦',
|
|
128
|
-
size: 'サイズ',
|
|
129
|
-
ratio: '比率'
|
|
130
|
-
},
|
|
131
|
-
controller: {
|
|
132
|
-
edit: '編集',
|
|
133
|
-
unlink: 'リンク解除',
|
|
134
|
-
remove: '削除',
|
|
135
|
-
insertRowAbove: '上に行を挿入',
|
|
136
|
-
insertRowBelow: '下に行を挿入',
|
|
137
|
-
deleteRow: '行の削除',
|
|
138
|
-
insertColumnBefore: '左に列を挿入',
|
|
139
|
-
insertColumnAfter: '右に列を挿入',
|
|
140
|
-
deleteColumn: '列を削除する',
|
|
141
|
-
fixedColumnWidth: '固定列幅',
|
|
142
|
-
resize100: '100% サイズ',
|
|
143
|
-
resize75: '75% サイズ',
|
|
144
|
-
resize50: '50% サイズ',
|
|
145
|
-
resize25: '25% サイズ',
|
|
146
|
-
autoSize: '自動サイズ',
|
|
147
|
-
mirrorHorizontal: '左右反転',
|
|
148
|
-
mirrorVertical: '上下反転',
|
|
149
|
-
rotateLeft: '左に回転',
|
|
150
|
-
rotateRight: '右に回転',
|
|
151
|
-
maxSize: '最大サイズ',
|
|
152
|
-
minSize: '最小サイズ',
|
|
153
|
-
tableHeader: '表のヘッダー',
|
|
154
|
-
mergeCells: 'セルの結合',
|
|
155
|
-
splitCells: 'セルを分割',
|
|
156
|
-
HorizontalSplit: '横分割',
|
|
157
|
-
VerticalSplit: '垂直分割'
|
|
158
|
-
},
|
|
159
|
-
menu: {
|
|
160
|
-
spaced: '文字間隔',
|
|
161
|
-
bordered: '境界線',
|
|
162
|
-
neon: 'ネオン',
|
|
163
|
-
translucent: '半透明',
|
|
164
|
-
shadow: '影',
|
|
165
|
-
code: 'コード'
|
|
166
|
-
}
|
|
167
|
-
};
|
|
168
|
-
|
|
169
|
-
if (typeof noGlobal === typeof undefined) {
|
|
170
|
-
if (!window.SUNEDITOR_LANG) {
|
|
171
|
-
Object.defineProperty(window, 'SUNEDITOR_LANG', {
|
|
172
|
-
enumerable: true,
|
|
173
|
-
writable: false,
|
|
174
|
-
configurable: false,
|
|
175
|
-
value: {}
|
|
176
|
-
});
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
Object.defineProperty(window.SUNEDITOR_LANG, 'ja', {
|
|
180
|
-
enumerable: true,
|
|
181
|
-
writable: true,
|
|
182
|
-
configurable: true,
|
|
183
|
-
value: lang
|
|
184
|
-
});
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
return lang;
|
|
1
|
+
/*
|
|
2
|
+
* wysiwyg web editor
|
|
3
|
+
*
|
|
4
|
+
* suneditor.js
|
|
5
|
+
* Copyright 2019 JiHong Lee.
|
|
6
|
+
* MIT license.
|
|
7
|
+
*/
|
|
8
|
+
'use strict';
|
|
9
|
+
|
|
10
|
+
(function (global, factory) {
|
|
11
|
+
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
12
|
+
module.exports = global.document ?
|
|
13
|
+
factory(global, true) :
|
|
14
|
+
function (w) {
|
|
15
|
+
if (!w.document) {
|
|
16
|
+
throw new Error('SUNEDITOR_LANG a window with a document');
|
|
17
|
+
}
|
|
18
|
+
return factory(w);
|
|
19
|
+
};
|
|
20
|
+
} else {
|
|
21
|
+
factory(global);
|
|
22
|
+
}
|
|
23
|
+
}(typeof window !== 'undefined' ? window : this, function (window, noGlobal) {
|
|
24
|
+
const lang = {
|
|
25
|
+
code: 'ja',
|
|
26
|
+
toolbar: {
|
|
27
|
+
default: 'デフォルト',
|
|
28
|
+
save: '保存',
|
|
29
|
+
font: 'フォント',
|
|
30
|
+
formats: '段落形式',
|
|
31
|
+
fontSize: 'サイズ',
|
|
32
|
+
bold: '太字',
|
|
33
|
+
underline: '下線',
|
|
34
|
+
italic: 'イタリック',
|
|
35
|
+
strike: '取り消し線',
|
|
36
|
+
subscript: '下付き',
|
|
37
|
+
superscript: '上付き',
|
|
38
|
+
removeFormat: '形式を削除',
|
|
39
|
+
fontColor: '文字色',
|
|
40
|
+
hiliteColor: '文字の背景色',
|
|
41
|
+
indent: 'インデント',
|
|
42
|
+
outdent: 'インデント',
|
|
43
|
+
align: 'ソート',
|
|
44
|
+
alignLeft: '左揃え',
|
|
45
|
+
alignRight: '右揃え',
|
|
46
|
+
alignCenter: '中央揃え',
|
|
47
|
+
alignJustify: '両端揃え',
|
|
48
|
+
list: 'リスト',
|
|
49
|
+
orderList: '数値ブリット',
|
|
50
|
+
unorderList: '円形ブリット',
|
|
51
|
+
horizontalRule: '水平線を挿入',
|
|
52
|
+
hr_solid: '実線',
|
|
53
|
+
hr_dotted: '点線',
|
|
54
|
+
hr_dashed: 'ダッシュ',
|
|
55
|
+
table: 'テーブル',
|
|
56
|
+
link: 'リンク',
|
|
57
|
+
math: '数学',
|
|
58
|
+
image: '画像',
|
|
59
|
+
video: '動画',
|
|
60
|
+
audio: 'オーディオ',
|
|
61
|
+
fullScreen: 'フルスクリーン',
|
|
62
|
+
showBlocks: 'ブロック表示',
|
|
63
|
+
codeView: 'HTMLの編集',
|
|
64
|
+
undo: '元に戻す',
|
|
65
|
+
redo: '再実行',
|
|
66
|
+
preview: 'プレビュー',
|
|
67
|
+
print: '印刷',
|
|
68
|
+
tag_p: '本文',
|
|
69
|
+
tag_div: '基本(DIV)',
|
|
70
|
+
tag_h: 'タイトル',
|
|
71
|
+
tag_blockquote: '引用',
|
|
72
|
+
tag_pre: 'コード',
|
|
73
|
+
template: 'テンプレート',
|
|
74
|
+
lineHeight: '行の高さ',
|
|
75
|
+
paragraphStyle: '段落スタイル',
|
|
76
|
+
textStyle: 'テキストスタイル',
|
|
77
|
+
imageGallery: 'イメージギャラリー',
|
|
78
|
+
dir_ltr: '左から右へ',
|
|
79
|
+
dir_rtl: '右から左に',
|
|
80
|
+
mention: '言及する'
|
|
81
|
+
},
|
|
82
|
+
dialogBox: {
|
|
83
|
+
linkBox: {
|
|
84
|
+
title: 'リンクの挿入',
|
|
85
|
+
url: 'インターネットアドレス',
|
|
86
|
+
text: '画面のテキスト',
|
|
87
|
+
newWindowCheck: '別ウィンドウで開く',
|
|
88
|
+
downloadLinkCheck: 'ダウンロードリンク',
|
|
89
|
+
bookmark: 'ブックマーク'
|
|
90
|
+
},
|
|
91
|
+
mathBox: {
|
|
92
|
+
title: '数学',
|
|
93
|
+
inputLabel: '数学表記',
|
|
94
|
+
fontSizeLabel: 'サイズ',
|
|
95
|
+
previewLabel: 'プレビュー'
|
|
96
|
+
},
|
|
97
|
+
imageBox: {
|
|
98
|
+
title: '画像の挿入',
|
|
99
|
+
file: 'ファイルの選択',
|
|
100
|
+
url: 'イメージアドレス',
|
|
101
|
+
altText: '置換文字列'
|
|
102
|
+
},
|
|
103
|
+
videoBox: {
|
|
104
|
+
title: '動画を挿入',
|
|
105
|
+
file: 'ファイルの選択',
|
|
106
|
+
url: 'メディア埋め込みアドレス, YouTube/Vimeo'
|
|
107
|
+
},
|
|
108
|
+
audioBox: {
|
|
109
|
+
title: 'オーディオを挿入',
|
|
110
|
+
file: 'ファイルの選択',
|
|
111
|
+
url: 'オーディオアドレス'
|
|
112
|
+
},
|
|
113
|
+
browser: {
|
|
114
|
+
tags: 'タグ',
|
|
115
|
+
search: '探す',
|
|
116
|
+
},
|
|
117
|
+
caption: '説明付け',
|
|
118
|
+
close: '閉じる',
|
|
119
|
+
submitButton: '確認',
|
|
120
|
+
revertButton: '元に戻す',
|
|
121
|
+
proportion: 'の割合カスタマイズ',
|
|
122
|
+
basic: '基本',
|
|
123
|
+
left: '左',
|
|
124
|
+
right: '右',
|
|
125
|
+
center: '中央',
|
|
126
|
+
width: '横',
|
|
127
|
+
height: '縦',
|
|
128
|
+
size: 'サイズ',
|
|
129
|
+
ratio: '比率'
|
|
130
|
+
},
|
|
131
|
+
controller: {
|
|
132
|
+
edit: '編集',
|
|
133
|
+
unlink: 'リンク解除',
|
|
134
|
+
remove: '削除',
|
|
135
|
+
insertRowAbove: '上に行を挿入',
|
|
136
|
+
insertRowBelow: '下に行を挿入',
|
|
137
|
+
deleteRow: '行の削除',
|
|
138
|
+
insertColumnBefore: '左に列を挿入',
|
|
139
|
+
insertColumnAfter: '右に列を挿入',
|
|
140
|
+
deleteColumn: '列を削除する',
|
|
141
|
+
fixedColumnWidth: '固定列幅',
|
|
142
|
+
resize100: '100% サイズ',
|
|
143
|
+
resize75: '75% サイズ',
|
|
144
|
+
resize50: '50% サイズ',
|
|
145
|
+
resize25: '25% サイズ',
|
|
146
|
+
autoSize: '自動サイズ',
|
|
147
|
+
mirrorHorizontal: '左右反転',
|
|
148
|
+
mirrorVertical: '上下反転',
|
|
149
|
+
rotateLeft: '左に回転',
|
|
150
|
+
rotateRight: '右に回転',
|
|
151
|
+
maxSize: '最大サイズ',
|
|
152
|
+
minSize: '最小サイズ',
|
|
153
|
+
tableHeader: '表のヘッダー',
|
|
154
|
+
mergeCells: 'セルの結合',
|
|
155
|
+
splitCells: 'セルを分割',
|
|
156
|
+
HorizontalSplit: '横分割',
|
|
157
|
+
VerticalSplit: '垂直分割'
|
|
158
|
+
},
|
|
159
|
+
menu: {
|
|
160
|
+
spaced: '文字間隔',
|
|
161
|
+
bordered: '境界線',
|
|
162
|
+
neon: 'ネオン',
|
|
163
|
+
translucent: '半透明',
|
|
164
|
+
shadow: '影',
|
|
165
|
+
code: 'コード'
|
|
166
|
+
}
|
|
167
|
+
};
|
|
168
|
+
|
|
169
|
+
if (typeof noGlobal === typeof undefined) {
|
|
170
|
+
if (!window.SUNEDITOR_LANG) {
|
|
171
|
+
Object.defineProperty(window, 'SUNEDITOR_LANG', {
|
|
172
|
+
enumerable: true,
|
|
173
|
+
writable: false,
|
|
174
|
+
configurable: false,
|
|
175
|
+
value: {}
|
|
176
|
+
});
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
Object.defineProperty(window.SUNEDITOR_LANG, 'ja', {
|
|
180
|
+
enumerable: true,
|
|
181
|
+
writable: true,
|
|
182
|
+
configurable: true,
|
|
183
|
+
value: lang
|
|
184
|
+
});
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
return lang;
|
|
188
188
|
}));
|
package/src/lang/km.d.ts
ADDED
package/src/lang/km.js
ADDED
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* wysiwyg web editor
|
|
3
|
+
*
|
|
4
|
+
* suneditor.js
|
|
5
|
+
* Copyright 2017 JiHong Lee.
|
|
6
|
+
* MIT license.
|
|
7
|
+
*/
|
|
8
|
+
'use strict';
|
|
9
|
+
|
|
10
|
+
(function (global, factory) {
|
|
11
|
+
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
12
|
+
module.exports = global.document ?
|
|
13
|
+
factory(global, true) :
|
|
14
|
+
function (w) {
|
|
15
|
+
if (!w.document) {
|
|
16
|
+
throw new Error('SUNEDITOR_LANG a window with a document');
|
|
17
|
+
}
|
|
18
|
+
return factory(w);
|
|
19
|
+
};
|
|
20
|
+
} else {
|
|
21
|
+
factory(global);
|
|
22
|
+
}
|
|
23
|
+
}(typeof window !== 'undefined' ? window : this, function (window, noGlobal) {
|
|
24
|
+
const lang = {
|
|
25
|
+
code: 'km',
|
|
26
|
+
toolbar: {
|
|
27
|
+
default: 'លំនាំដើម',
|
|
28
|
+
save: 'រក្សាទុក',
|
|
29
|
+
font: 'ពុម្ពអក្សរ',
|
|
30
|
+
formats: 'ទ្រង់ទ្រាយ',
|
|
31
|
+
fontSize: 'ទំហំអក្សរ',
|
|
32
|
+
bold: 'អក្សរដិត',
|
|
33
|
+
underline: 'គូសបន្ទាត់ក្រោម',
|
|
34
|
+
italic: 'អក្សរទ្រេត',
|
|
35
|
+
strike: 'ឆូតអក្សរ',
|
|
36
|
+
subscript: 'អក្សរតូចក្រោម',
|
|
37
|
+
superscript: 'អក្សរតូចលើ',
|
|
38
|
+
removeFormat: 'លុបទ្រង់ទ្រាយ',
|
|
39
|
+
fontColor: 'ពណ៌អក្សរ',
|
|
40
|
+
hiliteColor: 'ពណ៌បន្លិច',
|
|
41
|
+
indent: 'ចូលបន្ទាត់',
|
|
42
|
+
outdent: 'ចេញបន្ទាត់',
|
|
43
|
+
align: 'តម្រឹម',
|
|
44
|
+
alignLeft: 'តម្រឹមឆ្វេង',
|
|
45
|
+
alignRight: 'តម្រឹមស្ដាំ',
|
|
46
|
+
alignCenter: 'តម្រឹមកណ្តាល',
|
|
47
|
+
alignJustify: 'តម្រឹមសម្រួល',
|
|
48
|
+
list: 'បញ្ជី',
|
|
49
|
+
orderList: 'បញ្ជីលេខលំដាប់',
|
|
50
|
+
unorderList: 'បញ្ជីសញ្ញាលំដាប់',
|
|
51
|
+
horizontalRule: 'បន្ទាត់ផ្តេក',
|
|
52
|
+
hr_solid: 'បន្ទាត់ខ្សែស្មើ',
|
|
53
|
+
hr_dotted: 'បន្ទាត់ចុចស្មើ',
|
|
54
|
+
hr_dashed: 'បន្ទាត់ត្រេស្មើ',
|
|
55
|
+
table: 'តារាង',
|
|
56
|
+
link: 'តំណ',
|
|
57
|
+
math: 'គណិត',
|
|
58
|
+
image: 'រូបភាព',
|
|
59
|
+
video: 'វីដេអូ',
|
|
60
|
+
audio: 'អូឌីយូ',
|
|
61
|
+
fullScreen: 'អេក្រង់ពេញ',
|
|
62
|
+
showBlocks: 'បង្ហាញប្លក់',
|
|
63
|
+
codeView: 'មើលកូដ',
|
|
64
|
+
undo: 'មិនធ្វើវិញ',
|
|
65
|
+
redo: 'ធ្វើវិញ',
|
|
66
|
+
preview: 'មើលជាមុន',
|
|
67
|
+
print: 'បោះពុម្ព',
|
|
68
|
+
tag_p: 'កថាខណ្ឌ',
|
|
69
|
+
tag_div: 'ធម្មតា (DIV)',
|
|
70
|
+
tag_h: 'ចំណងជើង',
|
|
71
|
+
tag_blockquote: 'អត្ថបទដកស្រង់',
|
|
72
|
+
tag_pre: 'កូដ',
|
|
73
|
+
template: 'ពុម្ព',
|
|
74
|
+
lineHeight: 'កម្ពស់បន្ទាត់',
|
|
75
|
+
paragraphStyle: 'រចនាប័ទ្មកថាខណ្ឌ',
|
|
76
|
+
textStyle: 'រចនាប័ទ្មអក្សរ',
|
|
77
|
+
imageGallery: 'វិចិត្រសាលរូបភាព',
|
|
78
|
+
dir_ltr: 'ពីឆ្វេងទៅស្តាំ',
|
|
79
|
+
dir_rtl: 'ពីស្តាំទៅឆ្វេង',
|
|
80
|
+
mention: 'លើកឡើង'
|
|
81
|
+
},
|
|
82
|
+
dialogBox: {
|
|
83
|
+
linkBox: {
|
|
84
|
+
title: 'បញ្ចូលតំណ',
|
|
85
|
+
url: 'URL ទៅតំណ',
|
|
86
|
+
text: 'អត្ថបទបង្ហាញ',
|
|
87
|
+
newWindowCheck: 'បើកផ្ទាំងក្នុងថ្មី',
|
|
88
|
+
downloadLinkCheck: 'តំណទាញយក',
|
|
89
|
+
bookmark: 'ចំណាំ'
|
|
90
|
+
},
|
|
91
|
+
mathBox: {
|
|
92
|
+
title: 'គណិត',
|
|
93
|
+
inputLabel: 'សរសេរកូដគណិត',
|
|
94
|
+
fontSizeLabel: 'ទំហំអក្សរ',
|
|
95
|
+
previewLabel: 'មើលជាមុន'
|
|
96
|
+
},
|
|
97
|
+
imageBox: {
|
|
98
|
+
title: 'បញ្ចូលរូបភាព',
|
|
99
|
+
file: 'ជ្រើសរូបភាព',
|
|
100
|
+
url: 'URL រូបភាព',
|
|
101
|
+
altText: 'អត្ថបទជំនួស'
|
|
102
|
+
},
|
|
103
|
+
videoBox: {
|
|
104
|
+
title: 'បញ្ចូលវីដេអូ',
|
|
105
|
+
file: 'ជ្រើសវីដេអូ',
|
|
106
|
+
url: 'URL វីដេអូ (YouTube/Vimeo)'
|
|
107
|
+
},
|
|
108
|
+
audioBox: {
|
|
109
|
+
title: 'បញ្ចូលអូឌីយ៉ូ',
|
|
110
|
+
file: 'ជ្រើសអូឌីយ៉ូ',
|
|
111
|
+
url: 'URL អូឌីយ៉ូ'
|
|
112
|
+
},
|
|
113
|
+
browser: {
|
|
114
|
+
tags: 'ស្លាក',
|
|
115
|
+
search: 'ស្វែងរក',
|
|
116
|
+
},
|
|
117
|
+
caption: 'បញ្ចូលការពិពណ៌នា',
|
|
118
|
+
close: 'បិទ',
|
|
119
|
+
submitButton: 'ដាក់ស្នើ',
|
|
120
|
+
revertButton: 'រក្សាភាពដើម',
|
|
121
|
+
proportion: 'កំណត់សមាមាត្រ',
|
|
122
|
+
basic: 'មូលដ្ឋាន',
|
|
123
|
+
left: 'ឆ្វេង',
|
|
124
|
+
right: 'ស្តាំ',
|
|
125
|
+
center: 'កណ្តាល',
|
|
126
|
+
width: 'ទទឹង',
|
|
127
|
+
height: 'កម្ពស់',
|
|
128
|
+
size: 'ទំហំ',
|
|
129
|
+
ratio: 'សមាមាត្រ'
|
|
130
|
+
},
|
|
131
|
+
controller: {
|
|
132
|
+
edit: 'កែសម្រួល',
|
|
133
|
+
unlink: 'ផ្តាច់តំណ',
|
|
134
|
+
remove: 'លុប',
|
|
135
|
+
insertRowAbove: 'បញ្ចូលជួរដេកខាងលើ',
|
|
136
|
+
insertRowBelow: 'បញ្ចូលជួរដេកខាងក្រោម',
|
|
137
|
+
deleteRow: 'លុបជួរដេក',
|
|
138
|
+
insertColumnBefore: 'បញ្ចូលជួរឈរមុន',
|
|
139
|
+
insertColumnAfter: 'បញ្ចូលជួរឈរបន្ទាប់',
|
|
140
|
+
deleteColumn: 'លុបជួរឈរ',
|
|
141
|
+
fixedColumnWidth: 'ទំហំជួរឈរត្រឹមត្រូវ',
|
|
142
|
+
resize100: 'ប្ដូរទំហំ 100%',
|
|
143
|
+
resize75: 'ប្ដូរទំហំ 75%',
|
|
144
|
+
resize50: 'ប្ដូរទំហំ 50%',
|
|
145
|
+
resize25: 'ប្ដូរទំហំ 25%',
|
|
146
|
+
autoSize: 'ទំហំស្វ័យប្រវត្តិ',
|
|
147
|
+
mirrorHorizontal: 'បញ្ច្រាសផ្ដេក',
|
|
148
|
+
mirrorVertical: 'បញ្ច្រាសបញ្ឈរ',
|
|
149
|
+
rotateLeft: 'បង្វិលឆ្វេង',
|
|
150
|
+
rotateRight: 'បង្វិលស្តាំ',
|
|
151
|
+
maxSize: 'ទំហំធំ',
|
|
152
|
+
minSize: 'ទំហំតូច',
|
|
153
|
+
tableHeader: 'ក្បាលតារាង',
|
|
154
|
+
mergeCells: 'បង្រួមក្រឡា',
|
|
155
|
+
splitCells: 'បំបែកក្រឡា',
|
|
156
|
+
HorizontalSplit: 'បំបែកផ្ដេក',
|
|
157
|
+
VerticalSplit: 'បំបែកបញ្ឈរ'
|
|
158
|
+
},
|
|
159
|
+
menu: {
|
|
160
|
+
spaced: 'មានចន្លោះ',
|
|
161
|
+
bordered: 'មានស៊ុម',
|
|
162
|
+
neon: 'Neon',
|
|
163
|
+
translucent: 'ថ្លា',
|
|
164
|
+
shadow: 'ស្រមោល',
|
|
165
|
+
code: 'កូដ'
|
|
166
|
+
}
|
|
167
|
+
};
|
|
168
|
+
|
|
169
|
+
if (typeof noGlobal === typeof undefined) {
|
|
170
|
+
if (!window.SUNEDITOR_LANG) {
|
|
171
|
+
Object.defineProperty(window, 'SUNEDITOR_LANG', {
|
|
172
|
+
enumerable: true,
|
|
173
|
+
writable: false,
|
|
174
|
+
configurable: false,
|
|
175
|
+
value: {}
|
|
176
|
+
});
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
Object.defineProperty(window.SUNEDITOR_LANG, 'km', {
|
|
180
|
+
enumerable: true,
|
|
181
|
+
writable: true,
|
|
182
|
+
configurable: true,
|
|
183
|
+
value: lang
|
|
184
|
+
});
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
return lang;
|
|
188
|
+
}));
|
package/src/lang/ko.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Lang } from './Lang';
|
|
2
|
-
|
|
3
|
-
declare const ko: Lang;
|
|
4
|
-
|
|
1
|
+
import { Lang } from './Lang';
|
|
2
|
+
|
|
3
|
+
declare const ko: Lang;
|
|
4
|
+
|
|
5
5
|
export default ko;
|