suneditor 3.0.0-alpha.9 → 3.0.0-beta.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/CONTRIBUTING.md +170 -22
- package/{LICENSE.txt → LICENSE} +9 -9
- package/README.md +168 -30
- package/dist/suneditor.min.css +1 -1
- package/dist/suneditor.min.js +1 -1
- package/package.json +47 -21
- package/src/assets/design/color.css +121 -0
- package/src/assets/design/index.css +3 -0
- package/src/assets/design/size.css +35 -0
- package/src/assets/design/typography.css +37 -0
- package/src/assets/icons/defaultIcons.js +232 -0
- package/src/assets/suneditor-contents.css +181 -46
- package/src/assets/suneditor.css +1403 -650
- package/src/core/base/eventHandlers/handler_toolbar.js +35 -14
- package/src/core/base/eventHandlers/handler_ww_clipboard.js +23 -4
- package/src/core/base/eventHandlers/handler_ww_dragDrop.js +49 -10
- package/src/core/base/eventHandlers/handler_ww_key_input.js +422 -224
- package/src/core/base/eventHandlers/handler_ww_mouse.js +83 -36
- package/src/core/base/eventManager.js +520 -179
- package/src/core/base/history.js +95 -41
- package/src/core/class/char.js +26 -11
- package/src/core/class/component.js +345 -137
- package/src/core/class/format.js +683 -519
- package/src/core/class/html.js +485 -305
- package/src/core/class/menu.js +133 -47
- package/src/core/class/nodeTransform.js +90 -71
- package/src/core/class/offset.js +408 -92
- package/src/core/class/selection.js +216 -106
- package/src/core/class/shortcuts.js +68 -8
- package/src/core/class/toolbar.js +106 -116
- package/src/core/class/ui.js +422 -0
- package/src/core/class/viewer.js +178 -74
- package/src/core/editor.js +496 -389
- package/src/core/section/actives.js +123 -27
- package/src/core/section/constructor.js +615 -206
- package/src/core/section/context.js +28 -23
- package/src/core/section/documentType.js +561 -0
- package/src/editorInjector/_classes.js +19 -5
- package/src/editorInjector/_core.js +71 -7
- package/src/editorInjector/index.js +63 -1
- package/src/events.js +622 -0
- package/src/helper/clipboard.js +59 -0
- package/src/helper/converter.js +202 -26
- package/src/helper/dom/domCheck.js +304 -0
- package/src/helper/dom/domQuery.js +669 -0
- package/src/helper/dom/domUtils.js +557 -0
- package/src/helper/dom/index.js +12 -0
- package/src/helper/env.js +46 -56
- package/src/helper/index.js +10 -4
- package/src/helper/keyCodeMap.js +183 -0
- package/src/helper/numbers.js +12 -8
- package/src/helper/unicode.js +9 -5
- package/src/langs/ckb.js +74 -4
- package/src/langs/cs.js +72 -2
- package/src/langs/da.js +73 -3
- package/src/langs/de.js +73 -4
- package/src/langs/en.js +23 -3
- package/src/langs/es.js +73 -4
- package/src/langs/fa.js +75 -3
- package/src/langs/fr.js +73 -3
- package/src/langs/he.js +73 -4
- package/src/langs/hu.js +230 -0
- package/src/langs/index.js +7 -3
- package/src/langs/it.js +70 -1
- package/src/langs/ja.js +72 -4
- package/src/langs/km.js +230 -0
- package/src/langs/ko.js +22 -2
- package/src/langs/lv.js +74 -5
- package/src/langs/nl.js +73 -4
- package/src/langs/pl.js +73 -4
- package/src/langs/pt_br.js +70 -1
- package/src/langs/ro.js +74 -5
- package/src/langs/ru.js +73 -4
- package/src/langs/se.js +73 -4
- package/src/langs/tr.js +73 -1
- package/src/langs/{ua.js → uk.js} +75 -6
- package/src/langs/ur.js +77 -8
- package/src/langs/zh_cn.js +74 -5
- package/src/modules/ApiManager.js +77 -54
- package/src/modules/Browser.js +667 -0
- package/src/modules/ColorPicker.js +162 -102
- package/src/modules/Controller.js +273 -142
- package/src/modules/Figure.js +925 -484
- package/src/modules/FileManager.js +121 -69
- package/src/modules/HueSlider.js +113 -61
- package/src/modules/Modal.js +291 -122
- package/src/modules/ModalAnchorEditor.js +383 -234
- package/src/modules/SelectMenu.js +270 -168
- package/src/modules/_DragHandle.js +2 -1
- package/src/modules/index.js +3 -3
- package/src/plugins/browser/audioGallery.js +83 -0
- package/src/plugins/browser/fileBrowser.js +103 -0
- package/src/plugins/browser/fileGallery.js +83 -0
- package/src/plugins/browser/imageGallery.js +81 -0
- package/src/plugins/browser/videoGallery.js +103 -0
- package/src/plugins/command/blockquote.js +40 -27
- package/src/plugins/command/exportPDF.js +134 -0
- package/src/plugins/command/fileUpload.js +229 -162
- package/src/plugins/command/list_bulleted.js +83 -47
- package/src/plugins/command/list_numbered.js +83 -47
- package/src/plugins/dropdown/align.js +66 -54
- package/src/plugins/dropdown/backgroundColor.js +63 -49
- package/src/plugins/dropdown/font.js +71 -47
- package/src/plugins/dropdown/fontColor.js +63 -48
- package/src/plugins/dropdown/formatBlock.js +70 -33
- package/src/plugins/dropdown/hr.js +92 -51
- package/src/plugins/dropdown/layout.js +37 -26
- package/src/plugins/dropdown/lineHeight.js +54 -38
- package/src/plugins/dropdown/list.js +60 -45
- package/src/plugins/dropdown/paragraphStyle.js +51 -30
- package/src/plugins/dropdown/table.js +2003 -813
- package/src/plugins/dropdown/template.js +38 -26
- package/src/plugins/dropdown/textStyle.js +43 -31
- package/src/plugins/field/mention.js +147 -86
- package/src/plugins/index.js +32 -6
- package/src/plugins/input/fontSize.js +161 -108
- package/src/plugins/input/pageNavigator.js +70 -0
- package/src/plugins/modal/audio.js +358 -173
- package/src/plugins/modal/drawing.js +531 -0
- package/src/plugins/modal/embed.js +886 -0
- package/src/plugins/modal/image.js +674 -362
- package/src/plugins/modal/link.js +100 -71
- package/src/plugins/modal/math.js +367 -167
- package/src/plugins/modal/video.js +691 -335
- package/src/plugins/popup/anchor.js +222 -0
- package/src/suneditor.js +50 -13
- package/src/themes/dark.css +122 -0
- package/src/typedef.js +130 -0
- package/types/assets/icons/defaultIcons.d.ts +153 -0
- package/types/core/base/eventHandlers/handler_toolbar.d.ts +41 -0
- package/types/core/base/eventHandlers/handler_ww_clipboard.d.ts +40 -0
- package/types/core/base/eventHandlers/handler_ww_dragDrop.d.ts +35 -0
- package/types/core/base/eventHandlers/handler_ww_key_input.d.ts +45 -0
- package/types/core/base/eventHandlers/handler_ww_mouse.d.ts +39 -0
- package/types/core/base/eventManager.d.ts +385 -0
- package/types/core/base/history.d.ts +81 -0
- package/types/core/class/char.d.ts +60 -0
- package/types/core/class/component.d.ts +212 -0
- package/types/core/class/format.d.ts +616 -0
- package/types/core/class/html.d.ts +422 -0
- package/types/core/class/menu.d.ts +126 -0
- package/types/core/class/nodeTransform.d.ts +93 -0
- package/types/core/class/offset.d.ts +522 -0
- package/types/core/class/selection.d.ts +188 -0
- package/types/core/class/shortcuts.d.ts +142 -0
- package/types/core/class/toolbar.d.ts +189 -0
- package/types/core/class/ui.d.ts +164 -0
- package/types/core/class/viewer.d.ts +140 -0
- package/types/core/editor.d.ts +610 -0
- package/types/core/section/actives.d.ts +46 -0
- package/types/core/section/constructor.d.ts +777 -0
- package/types/core/section/context.d.ts +45 -0
- package/types/core/section/documentType.d.ts +178 -0
- package/types/editorInjector/_classes.d.ts +41 -0
- package/types/editorInjector/_core.d.ts +92 -0
- package/types/editorInjector/index.d.ts +71 -0
- package/types/events.d.ts +273 -0
- package/types/helper/clipboard.d.ts +12 -0
- package/types/helper/converter.d.ts +197 -0
- package/types/helper/dom/domCheck.d.ts +189 -0
- package/types/helper/dom/domQuery.d.ts +223 -0
- package/types/helper/dom/domUtils.d.ts +226 -0
- package/types/helper/dom/index.d.ts +9 -0
- package/types/helper/env.d.ts +132 -0
- package/types/helper/index.d.ts +174 -0
- package/types/helper/keyCodeMap.d.ts +110 -0
- package/types/helper/numbers.d.ts +46 -0
- package/types/helper/unicode.d.ts +28 -0
- package/types/index.d.ts +120 -0
- package/{typings/Lang.d.ts → types/langs/_Lang.d.ts} +173 -103
- package/types/langs/ckb.d.ts +3 -0
- package/types/langs/cs.d.ts +3 -0
- package/types/langs/da.d.ts +3 -0
- package/types/langs/de.d.ts +3 -0
- package/types/langs/en.d.ts +3 -0
- package/types/langs/es.d.ts +3 -0
- package/types/langs/fa.d.ts +3 -0
- package/types/langs/fr.d.ts +3 -0
- package/types/langs/he.d.ts +3 -0
- package/types/langs/hu.d.ts +3 -0
- package/types/langs/index.d.ts +54 -0
- package/types/langs/it.d.ts +3 -0
- package/types/langs/ja.d.ts +3 -0
- package/types/langs/km.d.ts +3 -0
- package/types/langs/ko.d.ts +3 -0
- package/types/langs/lv.d.ts +3 -0
- package/types/langs/nl.d.ts +3 -0
- package/types/langs/pl.d.ts +3 -0
- package/types/langs/pt_br.d.ts +3 -0
- package/types/langs/ro.d.ts +3 -0
- package/types/langs/ru.d.ts +3 -0
- package/types/langs/se.d.ts +3 -0
- package/types/langs/tr.d.ts +3 -0
- package/types/langs/uk.d.ts +3 -0
- package/types/langs/ur.d.ts +3 -0
- package/types/langs/zh_cn.d.ts +3 -0
- package/types/modules/ApiManager.d.ts +125 -0
- package/types/modules/Browser.d.ts +326 -0
- package/types/modules/ColorPicker.d.ts +131 -0
- package/types/modules/Controller.d.ts +251 -0
- package/types/modules/Figure.d.ts +517 -0
- package/types/modules/FileManager.d.ts +202 -0
- package/types/modules/HueSlider.d.ts +136 -0
- package/types/modules/Modal.d.ts +111 -0
- package/types/modules/ModalAnchorEditor.d.ts +236 -0
- package/types/modules/SelectMenu.d.ts +194 -0
- package/types/modules/_DragHandle.d.ts +7 -0
- package/types/modules/index.d.ts +26 -0
- package/types/plugins/browser/audioGallery.d.ts +55 -0
- package/types/plugins/browser/fileBrowser.d.ts +64 -0
- package/types/plugins/browser/fileGallery.d.ts +55 -0
- package/types/plugins/browser/imageGallery.d.ts +51 -0
- package/types/plugins/browser/videoGallery.d.ts +57 -0
- package/types/plugins/command/blockquote.d.ts +28 -0
- package/types/plugins/command/exportPDF.d.ts +46 -0
- package/types/plugins/command/fileUpload.d.ts +156 -0
- package/types/plugins/command/list_bulleted.d.ts +46 -0
- package/types/plugins/command/list_numbered.d.ts +46 -0
- package/types/plugins/dropdown/align.d.ts +60 -0
- package/types/plugins/dropdown/backgroundColor.d.ts +63 -0
- package/types/plugins/dropdown/font.d.ts +54 -0
- package/types/plugins/dropdown/fontColor.d.ts +63 -0
- package/types/plugins/dropdown/formatBlock.d.ts +54 -0
- package/types/plugins/dropdown/hr.d.ts +71 -0
- package/types/plugins/dropdown/layout.d.ts +40 -0
- package/types/plugins/dropdown/lineHeight.d.ts +50 -0
- package/types/plugins/dropdown/list.d.ts +39 -0
- package/types/plugins/dropdown/paragraphStyle.d.ts +54 -0
- package/types/plugins/dropdown/table.d.ts +627 -0
- package/types/plugins/dropdown/template.d.ts +40 -0
- package/types/plugins/dropdown/textStyle.d.ts +41 -0
- package/types/plugins/field/mention.d.ts +102 -0
- package/types/plugins/index.d.ts +107 -0
- package/types/plugins/input/fontSize.d.ts +170 -0
- package/types/plugins/input/pageNavigator.d.ts +28 -0
- package/types/plugins/modal/audio.d.ts +269 -0
- package/types/plugins/modal/drawing.d.ts +246 -0
- package/types/plugins/modal/embed.d.ts +387 -0
- package/types/plugins/modal/image.d.ts +451 -0
- package/types/plugins/modal/link.d.ts +128 -0
- package/types/plugins/modal/math.d.ts +193 -0
- package/types/plugins/modal/video.d.ts +485 -0
- package/types/plugins/popup/anchor.d.ts +56 -0
- package/types/suneditor.d.ts +51 -0
- package/types/typedef.d.ts +233 -0
- package/.eslintignore +0 -7
- package/.eslintrc.json +0 -64
- package/src/assets/icons/_default.js +0 -194
- package/src/core/base/events.js +0 -320
- package/src/core/class/notice.js +0 -42
- package/src/helper/domUtils.js +0 -1177
- package/src/modules/FileBrowser.js +0 -271
- package/src/plugins/command/exportPdf.js +0 -168
- package/src/plugins/fileBrowser/imageGallery.js +0 -81
- package/src/themes/test.css +0 -61
- package/typings/CommandPlugin.d.ts +0 -8
- package/typings/DialogPlugin.d.ts +0 -20
- package/typings/FileBrowserPlugin.d.ts +0 -30
- package/typings/Module.d.ts +0 -15
- package/typings/Plugin.d.ts +0 -42
- package/typings/SubmenuPlugin.d.ts +0 -8
- package/typings/_classes.d.ts +0 -17
- package/typings/_colorPicker.d.ts +0 -60
- package/typings/_core.d.ts +0 -55
- package/typings/align.d.ts +0 -5
- package/typings/audio.d.ts +0 -5
- package/typings/backgroundColor.d.ts +0 -5
- package/typings/blockquote.d.ts +0 -5
- package/typings/char.d.ts +0 -39
- package/typings/component.d.ts +0 -38
- package/typings/context.d.ts +0 -39
- package/typings/converter.d.ts +0 -33
- package/typings/dialog.d.ts +0 -28
- package/typings/domUtils.d.ts +0 -361
- package/typings/editor.d.ts +0 -7
- package/typings/editor.ts +0 -542
- package/typings/env.d.ts +0 -70
- package/typings/eventManager.d.ts +0 -37
- package/typings/events.d.ts +0 -262
- package/typings/fileBrowser.d.ts +0 -42
- package/typings/fileManager.d.ts +0 -67
- package/typings/font.d.ts +0 -5
- package/typings/fontColor.d.ts +0 -5
- package/typings/fontSize.d.ts +0 -5
- package/typings/format.d.ts +0 -191
- package/typings/formatBlock.d.ts +0 -5
- package/typings/history.d.ts +0 -48
- package/typings/horizontalRule.d.ts +0 -5
- package/typings/image.d.ts +0 -5
- package/typings/imageGallery.d.ts +0 -5
- package/typings/index.d.ts +0 -21
- package/typings/index.modules.d.ts +0 -11
- package/typings/index.plugins.d.ts +0 -58
- package/typings/lineHeight.d.ts +0 -5
- package/typings/link.d.ts +0 -5
- package/typings/list.d.ts +0 -5
- package/typings/math.d.ts +0 -5
- package/typings/mediaContainer.d.ts +0 -25
- package/typings/mention.d.ts +0 -5
- package/typings/node.d.ts +0 -57
- package/typings/notice.d.ts +0 -16
- package/typings/numbers.d.ts +0 -29
- package/typings/offset.d.ts +0 -24
- package/typings/options.d.ts +0 -589
- package/typings/paragraphStyle.d.ts +0 -5
- package/typings/resizing.d.ts +0 -141
- package/typings/selection.d.ts +0 -94
- package/typings/shortcuts.d.ts +0 -13
- package/typings/suneditor.d.ts +0 -9
- package/typings/table.d.ts +0 -5
- package/typings/template.d.ts +0 -5
- package/typings/textStyle.d.ts +0 -5
- package/typings/toolbar.d.ts +0 -32
- package/typings/unicode.d.ts +0 -25
- package/typings/video.d.ts +0 -5
package/src/langs/ja.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
// Japanese
|
|
1
2
|
(function (global, factory) {
|
|
2
3
|
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
3
4
|
module.exports = global.document
|
|
@@ -15,29 +16,75 @@
|
|
|
15
16
|
const lang = {
|
|
16
17
|
code: 'ja',
|
|
17
18
|
align: 'ソート',
|
|
19
|
+
alignBottom: '下揃え',
|
|
18
20
|
alignCenter: '中央揃え',
|
|
19
21
|
alignJustify: '両端揃え',
|
|
20
22
|
alignLeft: '左揃え',
|
|
23
|
+
alignMiddle: '中央揃え',
|
|
21
24
|
alignRight: '右揃え',
|
|
25
|
+
alignTop: '上揃え',
|
|
26
|
+
anchor: 'アンカー',
|
|
27
|
+
asBlock: 'ブロックとして',
|
|
28
|
+
asInline: 'インラインとして',
|
|
29
|
+
asLink: 'リンクとして',
|
|
22
30
|
audio: 'オーディオ',
|
|
31
|
+
audioGallery: 'オーディオ ギャラリー',
|
|
23
32
|
audio_modal_file: 'ファイルの選択',
|
|
24
33
|
audio_modal_title: 'オーディオを挿入',
|
|
25
34
|
audio_modal_url: 'オーディオアドレス',
|
|
26
35
|
autoSize: '自動サイズ',
|
|
27
36
|
backgroundColor: '文字の背景色',
|
|
28
37
|
basic: '基本',
|
|
38
|
+
blockStyle: 'ブロック スタイル',
|
|
29
39
|
bold: '太字',
|
|
40
|
+
border: '境界線',
|
|
41
|
+
border_all: 'すべてに境界線',
|
|
42
|
+
border_inside: '内側に境界線',
|
|
43
|
+
border_horizontal: '水平に境界線',
|
|
44
|
+
border_vertical: '垂直に境界線',
|
|
45
|
+
border_outside: '外側に境界線',
|
|
46
|
+
border_left: '左に境界線',
|
|
47
|
+
border_top: '上に境界線',
|
|
48
|
+
border_right: '右に境界線',
|
|
49
|
+
border_bottom: '下に境界線',
|
|
50
|
+
border_none: '境界線なし',
|
|
30
51
|
bulletedList: '円形ブリット',
|
|
52
|
+
cancel: 'キャンセル',
|
|
31
53
|
caption: '説明付け',
|
|
54
|
+
cellProperties: 'セルのプロパティ',
|
|
32
55
|
center: '中央',
|
|
33
56
|
close: '閉じる',
|
|
34
57
|
codeView: 'HTMLの編集',
|
|
58
|
+
color: '色',
|
|
59
|
+
colorPicker: 'カラー ピッカー',
|
|
60
|
+
column: '列',
|
|
61
|
+
comment: 'コメント',
|
|
62
|
+
commentAdd: 'コメントを追加',
|
|
63
|
+
commentShow: 'コメントを表示',
|
|
64
|
+
copy: 'コピー',
|
|
65
|
+
copyFormat: 'ペイント 書式設定',
|
|
66
|
+
cut: '切り取り',
|
|
35
67
|
default: 'デフォルト',
|
|
36
68
|
deleteColumn: '列を削除する',
|
|
37
69
|
deleteRow: '行の削除',
|
|
38
70
|
dir_ltr: '左から右へ',
|
|
39
71
|
dir_rtl: '右から左に',
|
|
72
|
+
download: 'ダウンロード',
|
|
73
|
+
drag: 'ドラッグ',
|
|
74
|
+
drawing: '描画',
|
|
75
|
+
drawing_modal_title: '描画',
|
|
40
76
|
edit: '編集',
|
|
77
|
+
embed: '埋め込み',
|
|
78
|
+
embed_modal_title: '埋め込み',
|
|
79
|
+
embed_modal_source: '埋め込みソース / URL',
|
|
80
|
+
exportPDF: 'PDF にエクスポート',
|
|
81
|
+
exportWord: 'Word にエクスポート',
|
|
82
|
+
find: '検索',
|
|
83
|
+
decrease: '縮小',
|
|
84
|
+
increase: '拡大',
|
|
85
|
+
fileBrowser: 'ファイル ブラウザー',
|
|
86
|
+
fileGallery: 'ファイル ギャラリー',
|
|
87
|
+
fileUpload: 'ファイルのアップロード',
|
|
41
88
|
fixedColumnWidth: '固定列幅',
|
|
42
89
|
font: 'フォント',
|
|
43
90
|
fontColor: '文字色',
|
|
@@ -50,19 +97,23 @@
|
|
|
50
97
|
hr_dashed: 'ダッシュ',
|
|
51
98
|
hr_dotted: '点線',
|
|
52
99
|
hr_solid: '実線',
|
|
100
|
+
id: 'ID',
|
|
53
101
|
image: '画像',
|
|
54
102
|
imageGallery: 'イメージギャラリー',
|
|
55
103
|
image_modal_altText: '置換文字列',
|
|
56
104
|
image_modal_file: 'ファイルの選択',
|
|
57
105
|
image_modal_title: '画像の挿入',
|
|
58
106
|
image_modal_url: 'イメージアドレス',
|
|
107
|
+
importWord: 'Word からインポート',
|
|
59
108
|
indent: 'インデント',
|
|
109
|
+
inlineStyle: 'インライン スタイル',
|
|
60
110
|
insertColumnAfter: '右に列を挿入',
|
|
61
111
|
insertColumnBefore: '左に列を挿入',
|
|
62
112
|
insertRowAbove: '上に行を挿入',
|
|
63
113
|
insertRowBelow: '下に行を挿入',
|
|
114
|
+
insertLine: '行の挿入',
|
|
64
115
|
italic: 'イタリック',
|
|
65
|
-
layout: '
|
|
116
|
+
layout: 'レイアウト',
|
|
66
117
|
left: '左',
|
|
67
118
|
lineHeight: '行の高さ',
|
|
68
119
|
link: 'リンク',
|
|
@@ -72,6 +123,7 @@
|
|
|
72
123
|
link_modal_text: '画面のテキスト',
|
|
73
124
|
link_modal_title: 'リンクの挿入',
|
|
74
125
|
link_modal_url: 'インターネットアドレス',
|
|
126
|
+
link_modal_relAttribute: 'Rel 属性',
|
|
75
127
|
list: 'リスト',
|
|
76
128
|
math: '数学',
|
|
77
129
|
math_modal_fontSizeLabel: 'サイズ',
|
|
@@ -79,6 +131,7 @@
|
|
|
79
131
|
math_modal_previewLabel: 'プレビュー',
|
|
80
132
|
math_modal_title: '数学',
|
|
81
133
|
maxSize: '最大サイズ',
|
|
134
|
+
mediaGallery: 'メディア ギャラリー',
|
|
82
135
|
mention: '言及する',
|
|
83
136
|
menu_bordered: '境界線',
|
|
84
137
|
menu_code: 'コード',
|
|
@@ -90,8 +143,13 @@
|
|
|
90
143
|
minSize: '最小サイズ',
|
|
91
144
|
mirrorHorizontal: '左右反転',
|
|
92
145
|
mirrorVertical: '上下反転',
|
|
146
|
+
newDocument: '新規ドキュメント',
|
|
93
147
|
numberedList: '数値ブリット',
|
|
94
148
|
outdent: 'インデント',
|
|
149
|
+
pageBreak: 'ページ区切り',
|
|
150
|
+
pageDown: 'ページを 1 ページ下へ',
|
|
151
|
+
pageNumber: 'ページ番号',
|
|
152
|
+
pageUp: 'ページを 1 ページ上へ',
|
|
95
153
|
paragraphStyle: '段落スタイル',
|
|
96
154
|
preview: 'プレビュー',
|
|
97
155
|
print: '印刷',
|
|
@@ -100,17 +158,22 @@
|
|
|
100
158
|
redo: '再実行',
|
|
101
159
|
remove: '削除',
|
|
102
160
|
removeFormat: '形式を削除',
|
|
161
|
+
replace: '置換',
|
|
162
|
+
replaceAll: 'すべて置換',
|
|
103
163
|
resize100: '100% サイズ',
|
|
104
164
|
resize25: '25% サイズ',
|
|
105
165
|
resize50: '50% サイズ',
|
|
106
166
|
resize75: '75% サイズ',
|
|
107
|
-
resize: '
|
|
167
|
+
resize: 'サイズ変更',
|
|
108
168
|
revert: '元に戻す',
|
|
169
|
+
revisionHistory: 'リビジョン履歴',
|
|
109
170
|
right: '右',
|
|
110
171
|
rotateLeft: '左に回転',
|
|
111
172
|
rotateRight: '右に回転',
|
|
173
|
+
row: '行',
|
|
112
174
|
save: '保存',
|
|
113
175
|
search: '探す',
|
|
176
|
+
selectAll: 'すべて選択',
|
|
114
177
|
showBlocks: 'ブロック表示',
|
|
115
178
|
size: 'サイズ',
|
|
116
179
|
splitCells: 'セルを分割',
|
|
@@ -120,6 +183,7 @@
|
|
|
120
183
|
superscript: '上付き',
|
|
121
184
|
table: 'テーブル',
|
|
122
185
|
tableHeader: '表のヘッダー',
|
|
186
|
+
tableProperties: '表のプロパティ',
|
|
123
187
|
tags: 'タグ',
|
|
124
188
|
tag_blockquote: '引用',
|
|
125
189
|
tag_div: '基本(DIV)',
|
|
@@ -128,16 +192,20 @@
|
|
|
128
192
|
tag_pre: 'コード',
|
|
129
193
|
template: 'テンプレート',
|
|
130
194
|
textStyle: 'テキストスタイル',
|
|
131
|
-
title: '
|
|
195
|
+
title: 'タイトル',
|
|
132
196
|
underline: '下線',
|
|
133
197
|
undo: '元に戻す',
|
|
198
|
+
unmergeCells: 'セルのマージ解除',
|
|
134
199
|
unlink: 'リンク解除',
|
|
135
200
|
verticalSplit: '垂直分割',
|
|
136
201
|
video: '動画',
|
|
202
|
+
videoGallery: 'ビデオ ギャラリー',
|
|
137
203
|
video_modal_file: 'ファイルの選択',
|
|
138
204
|
video_modal_title: '動画を挿入',
|
|
139
205
|
video_modal_url: 'メディア埋め込みアドレス, YouTube/Vimeo',
|
|
140
|
-
width: '横'
|
|
206
|
+
width: '横',
|
|
207
|
+
message_copy_success: 'クリップボードにコピーしました',
|
|
208
|
+
message_copy_fail: 'コピーに失敗しました。手動でコピーしてください。'
|
|
141
209
|
};
|
|
142
210
|
|
|
143
211
|
if (typeof noGlobal === typeof undefined) {
|
package/src/langs/km.js
ADDED
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
// Khmer
|
|
2
|
+
(function (global, factory) {
|
|
3
|
+
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
4
|
+
module.exports = global.document
|
|
5
|
+
? factory(global, true)
|
|
6
|
+
: function (w) {
|
|
7
|
+
if (!w.document) {
|
|
8
|
+
throw new Error('SUNEDITOR_LANG a window with a document');
|
|
9
|
+
}
|
|
10
|
+
return factory(w);
|
|
11
|
+
};
|
|
12
|
+
} else {
|
|
13
|
+
factory(global);
|
|
14
|
+
}
|
|
15
|
+
})(typeof window !== 'undefined' ? window : this, function (window, noGlobal) {
|
|
16
|
+
const lang = {
|
|
17
|
+
code: 'km',
|
|
18
|
+
align: 'តម្រឹម',
|
|
19
|
+
alignBottom: 'តម្រឹមបាត',
|
|
20
|
+
alignCenter: 'តម្រឹមចំកណ្តាល',
|
|
21
|
+
alignJustify: 'តម្រឹមស្មើរ',
|
|
22
|
+
alignLeft: 'តម្រឹមឆ្វេង',
|
|
23
|
+
alignMiddle: 'តម្រឹមពាក់កណ្តាល',
|
|
24
|
+
alignRight: 'តម្រឹមស្ដាំ',
|
|
25
|
+
alignTop: 'តម្រឹមកំពូល',
|
|
26
|
+
anchor: 'យុថ្កា',
|
|
27
|
+
asBlock: 'ជាប្លក់',
|
|
28
|
+
asInline: 'ជាជួរ',
|
|
29
|
+
asLink: 'ជាតំណ',
|
|
30
|
+
audio: 'អូឌីយូ',
|
|
31
|
+
audioGallery: 'វិចិត្រសាលអូឌីយ៉ូ',
|
|
32
|
+
audio_modal_file: 'ជ្រើសរើសពីឯកសារ',
|
|
33
|
+
audio_modal_title: 'បញ្ចូលអូឌីយូ',
|
|
34
|
+
audio_modal_url: 'URL អូឌីយូ',
|
|
35
|
+
autoSize: 'ទំហំស្វ័យប្រវត្តិ',
|
|
36
|
+
backgroundColor: 'ពណ៌ផ្ទៃខាងក្រោយ',
|
|
37
|
+
basic: 'មូលដ្ឋាន',
|
|
38
|
+
blockStyle: 'រចនាប័ទ្មប្លក់',
|
|
39
|
+
bold: 'អក្សរដិត',
|
|
40
|
+
border: 'ស៊ុម',
|
|
41
|
+
border_all: 'ស៊ុមទាំងអស់',
|
|
42
|
+
border_inside: 'ស៊ុមក្នុង',
|
|
43
|
+
border_horizontal: 'ស៊ុមផ្តេក',
|
|
44
|
+
border_vertical: 'ស៊ុមបញ្ឈរ',
|
|
45
|
+
border_outside: 'ស៊ុមក្រៅ',
|
|
46
|
+
border_left: 'ស៊ុមឆ្វេង',
|
|
47
|
+
border_top: 'ស៊ុមលើ',
|
|
48
|
+
border_right: 'ស៊ុមស្ដាំ',
|
|
49
|
+
border_bottom: 'ស៊ុមក្រោម',
|
|
50
|
+
border_none: 'គ្មានស៊ុម',
|
|
51
|
+
bulletedList: 'បញ្ជីជាចំណុច',
|
|
52
|
+
cancel: 'បោះបង់',
|
|
53
|
+
caption: 'បញ្ចូលការពិពណ៌នា',
|
|
54
|
+
cellProperties: 'លក្ខណៈក្រឡា',
|
|
55
|
+
center: 'កណ្តាល',
|
|
56
|
+
close: 'បិទ',
|
|
57
|
+
codeView: 'មើលកូដ',
|
|
58
|
+
color: 'ពណ៌',
|
|
59
|
+
colorPicker: 'ឧបករណ៍ជ្រើសពណ៌',
|
|
60
|
+
column: 'ជួរឈរ',
|
|
61
|
+
comment: 'មតិ',
|
|
62
|
+
commentAdd: 'បន្ថែមមតិ',
|
|
63
|
+
commentShow: 'បង្ហាញមតិ',
|
|
64
|
+
copy: 'ចម្លង',
|
|
65
|
+
copyFormat: 'ចម្លងទ្រង់ទ្រាយ',
|
|
66
|
+
cut: 'កាត់',
|
|
67
|
+
default: 'លំនាំដើម',
|
|
68
|
+
deleteColumn: 'លុបជួរឈរ',
|
|
69
|
+
deleteRow: 'លុបជួរដេក',
|
|
70
|
+
dir_ltr: 'ពីឆ្វេងទៅស្តាំ',
|
|
71
|
+
dir_rtl: 'ពីស្តាំទៅឆ្វេង',
|
|
72
|
+
download: 'ទាញយក',
|
|
73
|
+
drag: 'អូស',
|
|
74
|
+
drawing: 'គូរ',
|
|
75
|
+
drawing_modal_title: 'គូរ',
|
|
76
|
+
edit: 'កែសម្រួល',
|
|
77
|
+
embed: 'បង្កប់',
|
|
78
|
+
embed_modal_title: 'បង្កប់',
|
|
79
|
+
embed_modal_source: 'ប្រភពសម្រាប់បង្កប់ / URL',
|
|
80
|
+
exportPDF: 'បញ្ចេញជា PDF',
|
|
81
|
+
exportWord: 'បញ្ចេញជា Word',
|
|
82
|
+
find: 'ស្វែងរក',
|
|
83
|
+
decrease: 'បន្ថយ',
|
|
84
|
+
increase: 'បន្ថែម',
|
|
85
|
+
fileBrowser: 'កម្មវិធីរុករកឯកសារ',
|
|
86
|
+
fileGallery: 'វិចិត្រសាលឯកសារ',
|
|
87
|
+
fileUpload: 'ផ្ទុកឯកសារឡើង',
|
|
88
|
+
fixedColumnWidth: 'ទទឹងជួរឈរថេរ',
|
|
89
|
+
font: 'ពុម្ព',
|
|
90
|
+
fontColor: 'ពណ៌អក្សរ',
|
|
91
|
+
fontSize: 'ទំហំ',
|
|
92
|
+
formats: 'ទ្រង់ទ្រាយ',
|
|
93
|
+
fullScreen: 'ពេញអេក្រង់',
|
|
94
|
+
height: 'កម្ពស់',
|
|
95
|
+
horizontalLine: 'បន្ទាត់ផ្តេក',
|
|
96
|
+
horizontalSplit: 'បំបែកផ្តេក',
|
|
97
|
+
hr_dashed: 'បន្ទាត់ដាច់',
|
|
98
|
+
hr_dotted: 'បន្ទាត់ចំណុច',
|
|
99
|
+
hr_solid: 'បន្ទាត់ធម្មតា',
|
|
100
|
+
id: 'ID',
|
|
101
|
+
image: 'រូបភាព',
|
|
102
|
+
imageGallery: 'វិចិត្រសាលរូបភាព',
|
|
103
|
+
image_modal_altText: 'អត្ថបទជំនួសរូបភាព',
|
|
104
|
+
image_modal_file: 'ជ្រើសរើសពីឯកសារ',
|
|
105
|
+
image_modal_title: 'បញ្ចូលរូបភាព',
|
|
106
|
+
image_modal_url: 'URL រូបភាព',
|
|
107
|
+
importWord: 'បញ្ចូលពី Word',
|
|
108
|
+
indent: 'ចូលបន្ទាត់',
|
|
109
|
+
inlineStyle: 'រចនាប័ទ្មក្នុងជួរបន្ទាត់',
|
|
110
|
+
insertColumnAfter: 'បញ្ចូលជួរឈរក្រោយ',
|
|
111
|
+
insertColumnBefore: 'បញ្ចូលជួរឈរមុន',
|
|
112
|
+
insertRowAbove: 'បញ្ចូលជួរដេកលើ',
|
|
113
|
+
insertRowBelow: 'បញ្ចូលជួរដេកក្រោម',
|
|
114
|
+
insertLine: 'បញ្ចូលបន្ទាត់',
|
|
115
|
+
italic: 'ទ្រេត',
|
|
116
|
+
layout: 'ប្លង់',
|
|
117
|
+
left: 'ឆ្វេង',
|
|
118
|
+
lineHeight: 'កម្ពស់បន្ទាត់',
|
|
119
|
+
link: 'តំណ',
|
|
120
|
+
link_modal_bookmark: 'ចំណាំ',
|
|
121
|
+
link_modal_downloadLinkCheck: 'តំណទាញយក',
|
|
122
|
+
link_modal_newWindowCheck: 'បើកក្នុងផ្ទាំងថ្មី',
|
|
123
|
+
link_modal_text: 'អត្ថបទបង្ហាញ',
|
|
124
|
+
link_modal_title: 'បញ្ចូលតំណ',
|
|
125
|
+
link_modal_url: 'URL តំណ',
|
|
126
|
+
link_modal_relAttribute: 'លក្ខណៈ Rel',
|
|
127
|
+
list: 'បញ្ជី',
|
|
128
|
+
math: 'គណិត',
|
|
129
|
+
math_modal_fontSizeLabel: 'ទំហំពុម្ព',
|
|
130
|
+
math_modal_inputLabel: 'សញ្ញាណគណិត',
|
|
131
|
+
math_modal_previewLabel: 'មើលជាមុន',
|
|
132
|
+
math_modal_title: 'គណិត',
|
|
133
|
+
maxSize: 'ទំហំធំ',
|
|
134
|
+
mediaGallery: 'វិចិត្រសាលមេឌៀ',
|
|
135
|
+
mention: 'លើកឡើង',
|
|
136
|
+
menu_bordered: 'មានស៊ុម',
|
|
137
|
+
menu_code: 'កូដ',
|
|
138
|
+
menu_neon: 'ពន្លឺ',
|
|
139
|
+
menu_shadow: 'ស្រមោល',
|
|
140
|
+
menu_spaced: 'ចន្លោះ',
|
|
141
|
+
menu_translucent: 'ថ្លា',
|
|
142
|
+
mergeCells: 'បញ្ចូលក្រឡា',
|
|
143
|
+
minSize: 'ទំហំតិច',
|
|
144
|
+
mirrorHorizontal: 'បញ្ច្រាសផ្ដេក',
|
|
145
|
+
mirrorVertical: 'បញ្ច្រាសបញ្ឈរ',
|
|
146
|
+
newDocument: 'ឯកសារថ្មី',
|
|
147
|
+
numberedList: 'បញ្ជីជាលេខ',
|
|
148
|
+
outdent: 'ចេញបន្ទាត់',
|
|
149
|
+
pageBreak: 'បំបែកទំព័រ',
|
|
150
|
+
pageDown: 'ទំព័រក្រោម',
|
|
151
|
+
pageNumber: 'លេខទំព័រ',
|
|
152
|
+
pageUp: 'ទំព័រលើ',
|
|
153
|
+
paragraphStyle: 'រចនាប័ទ្មកថាខណ្ឌ',
|
|
154
|
+
preview: 'មើលជាមុន',
|
|
155
|
+
print: 'បោះពុម្ព',
|
|
156
|
+
proportion: 'កំណត់សមាមាត្រ',
|
|
157
|
+
ratio: 'សមាមាត្រ',
|
|
158
|
+
redo: 'ធ្វើឡើងវិញ',
|
|
159
|
+
remove: 'លុប',
|
|
160
|
+
removeFormat: 'លុបទ្រង់ទ្រាយ',
|
|
161
|
+
replace: 'ជំនួស',
|
|
162
|
+
replaceAll: 'ជំនួសទាំងអស់',
|
|
163
|
+
resize100: 'ពង្រីក ១០០%',
|
|
164
|
+
resize25: 'ពង្រីក ២៥%',
|
|
165
|
+
resize50: 'ពង្រីក ៥០%',
|
|
166
|
+
resize75: 'ពង្រីក ៧៥%',
|
|
167
|
+
resize: 'ប្តូរទំហំ',
|
|
168
|
+
revert: 'ត្រឡប់',
|
|
169
|
+
revisionHistory: 'ប្រវត្តិកែប្រែ',
|
|
170
|
+
right: 'ស្តាំ',
|
|
171
|
+
rotateLeft: 'បង្វិលឆ្វេង',
|
|
172
|
+
rotateRight: 'បង្វិលស្តាំ',
|
|
173
|
+
row: 'ជួរដេក',
|
|
174
|
+
save: 'រក្សាទុក',
|
|
175
|
+
search: 'ស្វែងរក',
|
|
176
|
+
selectAll: 'ជ្រើសរើសទាំងអស់',
|
|
177
|
+
showBlocks: 'បង្ហាញប្លក់',
|
|
178
|
+
size: 'ទំហំ',
|
|
179
|
+
splitCells: 'បំបែកក្រឡា',
|
|
180
|
+
strike: 'ឆូតអក្សរ',
|
|
181
|
+
submitButton: 'ដាក់ស្នើ',
|
|
182
|
+
subscript: 'អក្សរតូចក្រោម',
|
|
183
|
+
superscript: 'អក្សរតូចលើ',
|
|
184
|
+
table: 'តារាង',
|
|
185
|
+
tableHeader: 'ក្បាលតារាង',
|
|
186
|
+
tableProperties: 'លក្ខណៈតារាង',
|
|
187
|
+
tags: 'ស្លាក',
|
|
188
|
+
tag_blockquote: 'សម្រង់',
|
|
189
|
+
tag_div: 'ធម្មតា (DIV)',
|
|
190
|
+
tag_h: 'ក្បាល',
|
|
191
|
+
tag_p: 'កថាខណ្ឌ',
|
|
192
|
+
tag_pre: 'កូដ',
|
|
193
|
+
template: 'គំរូ',
|
|
194
|
+
textStyle: 'រចនាប័ទ្មអក្សរ',
|
|
195
|
+
title: 'ចំណងជើង',
|
|
196
|
+
underline: 'បន្ទាត់ក្រោម',
|
|
197
|
+
undo: 'មិនធ្វើវិញ',
|
|
198
|
+
unmergeCells: 'ផ្តាច់ក្រឡា',
|
|
199
|
+
unlink: 'ផ្តាច់តំណ',
|
|
200
|
+
verticalSplit: 'បំបែកបញ្ឈរ',
|
|
201
|
+
video: 'វីដេអូ',
|
|
202
|
+
videoGallery: 'វិចិត្រសាលវីដេអូ',
|
|
203
|
+
video_modal_file: 'ជ្រើសរើសពីឯកសារ',
|
|
204
|
+
video_modal_title: 'បញ្ចូលវីដេអូ',
|
|
205
|
+
video_modal_url: 'URL បង្កប់មេឌៀ, YouTube/Vimeo',
|
|
206
|
+
width: 'ទទឹង',
|
|
207
|
+
message_copy_success: 'បានចម្លងទៅក្តារចម្លង',
|
|
208
|
+
message_copy_fail: 'ការចម្លងបរាជ័យ។ សូមចម្លងដោយដៃ។'
|
|
209
|
+
};
|
|
210
|
+
|
|
211
|
+
if (typeof noGlobal === typeof undefined) {
|
|
212
|
+
if (!window.SUNEDITOR_LANG) {
|
|
213
|
+
Object.defineProperty(window, 'SUNEDITOR_LANG', {
|
|
214
|
+
enumerable: true,
|
|
215
|
+
writable: false,
|
|
216
|
+
configurable: false,
|
|
217
|
+
value: {}
|
|
218
|
+
});
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
Object.defineProperty(window.SUNEDITOR_LANG, 'km', {
|
|
222
|
+
enumerable: true,
|
|
223
|
+
writable: true,
|
|
224
|
+
configurable: true,
|
|
225
|
+
value: lang
|
|
226
|
+
});
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
return lang;
|
|
230
|
+
});
|
package/src/langs/ko.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
// Korean
|
|
1
2
|
(function (global, factory) {
|
|
2
3
|
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
3
4
|
module.exports = global.document
|
|
@@ -22,9 +23,12 @@
|
|
|
22
23
|
alignMiddle: '중간 정렬',
|
|
23
24
|
alignRight: '오른쪽 정렬',
|
|
24
25
|
alignTop: '위쪽 정렬',
|
|
26
|
+
anchor: '북마크',
|
|
25
27
|
asBlock: '블록으로 보기',
|
|
28
|
+
asInline: '인라인으로 보기',
|
|
26
29
|
asLink: '링크로 보기',
|
|
27
30
|
audio: '오디오',
|
|
31
|
+
audioGallery: '오디오 갤러리',
|
|
28
32
|
audio_modal_file: '파일 선택',
|
|
29
33
|
audio_modal_title: '오디오 삽입',
|
|
30
34
|
audio_modal_url: '오디오 파일 주소',
|
|
@@ -67,12 +71,19 @@
|
|
|
67
71
|
dir_rtl: '오른쪽에서 왼쪽',
|
|
68
72
|
download: '다운로드',
|
|
69
73
|
drag: '드래그',
|
|
74
|
+
drawing: '드로잉',
|
|
75
|
+
drawing_modal_title: '드로잉',
|
|
70
76
|
edit: '편집',
|
|
71
|
-
|
|
77
|
+
embed: '임베드',
|
|
78
|
+
embed_modal_title: '임베드',
|
|
79
|
+
embed_modal_source: '임베드 소스 / URL',
|
|
80
|
+
exportPDF: 'PDF로 내보내기',
|
|
72
81
|
exportWord: 'Word로 내보내기',
|
|
73
82
|
find: '찾기',
|
|
74
83
|
decrease: '내리기',
|
|
75
84
|
increase: '올리기',
|
|
85
|
+
fileBrowser: '파일 브라우저',
|
|
86
|
+
fileGallery: '파일 갤러리',
|
|
76
87
|
fileUpload: '파일 업로드',
|
|
77
88
|
fixedColumnWidth: '고정 된 열 너비',
|
|
78
89
|
font: '글꼴',
|
|
@@ -86,6 +97,7 @@
|
|
|
86
97
|
hr_dashed: '대시',
|
|
87
98
|
hr_dotted: '점선',
|
|
88
99
|
hr_solid: '실선',
|
|
100
|
+
id: '아이디',
|
|
89
101
|
image: '이미지',
|
|
90
102
|
imageGallery: '이미지 갤러리',
|
|
91
103
|
image_modal_altText: '대체 문자열',
|
|
@@ -119,6 +131,7 @@
|
|
|
119
131
|
math_modal_previewLabel: '미리보기',
|
|
120
132
|
math_modal_title: '수식',
|
|
121
133
|
maxSize: '최대화',
|
|
134
|
+
mediaGallery: '미디어 갤러리',
|
|
122
135
|
mention: '멘션',
|
|
123
136
|
menu_bordered: '경계선',
|
|
124
137
|
menu_code: '코드',
|
|
@@ -134,6 +147,9 @@
|
|
|
134
147
|
numberedList: '숫자형 리스트',
|
|
135
148
|
outdent: '내어쓰기',
|
|
136
149
|
pageBreak: '페이지 나누기',
|
|
150
|
+
pageDown: '페이지 아래로',
|
|
151
|
+
pageNumber: '페이지 번호',
|
|
152
|
+
pageUp: '페이지 위로',
|
|
137
153
|
paragraphStyle: '문단 스타일',
|
|
138
154
|
preview: '미리보기',
|
|
139
155
|
print: '인쇄',
|
|
@@ -179,13 +195,17 @@
|
|
|
179
195
|
title: '제목',
|
|
180
196
|
underline: '밑줄',
|
|
181
197
|
undo: '실행 취소',
|
|
198
|
+
unmergeCells: '셀 병합 해제',
|
|
182
199
|
unlink: '링크 해제',
|
|
183
200
|
verticalSplit: '세로 분할',
|
|
184
201
|
video: '동영상',
|
|
202
|
+
videoGallery: '동영상 갤러리',
|
|
185
203
|
video_modal_file: '파일 선택',
|
|
186
204
|
video_modal_title: '동영상 삽입',
|
|
187
205
|
video_modal_url: '미디어 임베드 주소, 유튜브/비메오',
|
|
188
|
-
width: '가로'
|
|
206
|
+
width: '가로',
|
|
207
|
+
message_copy_success: '클립보드에 복사되었습니다',
|
|
208
|
+
message_copy_fail: '복사에 실패했습니다. 수동으로 복사해주세요.'
|
|
189
209
|
};
|
|
190
210
|
|
|
191
211
|
if (typeof noGlobal === typeof undefined) {
|
package/src/langs/lv.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// Latvia
|
|
2
|
+
// 라트리아어
|
|
1
3
|
(function (global, factory) {
|
|
2
4
|
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
3
5
|
module.exports = global.document
|
|
@@ -15,30 +17,76 @@
|
|
|
15
17
|
const lang = {
|
|
16
18
|
code: 'lv',
|
|
17
19
|
align: 'Izlīdzināt',
|
|
20
|
+
alignBottom: 'Izlīdziniet apakšējo daļu',
|
|
18
21
|
alignCenter: 'Centrēt',
|
|
19
22
|
alignJustify: 'Taisnot',
|
|
20
23
|
alignLeft: 'Līdzināt pa kreisi',
|
|
24
|
+
alignMiddle: 'Izlīdzināt vidū',
|
|
21
25
|
alignRight: 'Līdzināt pa labi',
|
|
26
|
+
alignTop: 'Izlīdziniet augšdaļu',
|
|
27
|
+
anchor: 'Enkurs',
|
|
28
|
+
asBlock: 'Kā bloks',
|
|
29
|
+
asInline: 'Kā iekļauts',
|
|
30
|
+
asLink: 'Kā saite',
|
|
22
31
|
audio: 'Audio',
|
|
32
|
+
audioGallery: 'Audio galerija',
|
|
23
33
|
audio_modal_file: 'Izvēlieties no failiem',
|
|
24
34
|
audio_modal_title: 'Ievietot audio',
|
|
25
35
|
audio_modal_url: 'Audio URL',
|
|
26
36
|
autoSize: 'Automātiskais izmērs',
|
|
27
37
|
backgroundColor: 'Teksta iezīmēšanas krāsa',
|
|
28
38
|
basic: 'Nav iesaiņojuma',
|
|
39
|
+
blockStyle: 'Bloka stils',
|
|
29
40
|
bold: 'Treknraksts',
|
|
41
|
+
border: 'Robeža',
|
|
42
|
+
border_all: 'Robeža visu',
|
|
43
|
+
border_inside: 'Robeža iekšā',
|
|
44
|
+
border_horizontal: 'Robeža horizontāla',
|
|
45
|
+
border_vertical: 'Apmale vertikāla',
|
|
46
|
+
border_outside: 'Robeža ārpusē',
|
|
47
|
+
border_left: 'Robeža pa kreisi',
|
|
48
|
+
border_top: 'Apmales augšdaļa',
|
|
49
|
+
border_right: 'Robeža pa labi',
|
|
50
|
+
border_bottom: 'Apmales apakšdaļa',
|
|
51
|
+
border_none: 'Robežas nav',
|
|
30
52
|
bulletedList: 'Aizzimes',
|
|
53
|
+
cancel: 'Atcelt',
|
|
31
54
|
caption: 'Ievietot aprakstu',
|
|
55
|
+
cellProperties: 'Šūnu īpašības',
|
|
32
56
|
center: 'Centrs',
|
|
33
57
|
close: 'Aizvērt',
|
|
34
58
|
codeView: 'Koda skats',
|
|
59
|
+
color: 'Krāsa',
|
|
60
|
+
colorPicker: 'Krāsu atlasītājs',
|
|
61
|
+
column: 'Kolonna',
|
|
62
|
+
comment: 'komentāri',
|
|
63
|
+
commentAdd: 'Pievienot komentāru',
|
|
64
|
+
commentShow: 'Rādīt komentārus',
|
|
65
|
+
copy: 'Kopēt',
|
|
66
|
+
copyFormat: 'Krāsu formatēšana',
|
|
67
|
+
cut: 'Izgriezt',
|
|
35
68
|
default: 'Noklusējuma',
|
|
36
69
|
deleteColumn: 'Dzēst kolonnu',
|
|
37
70
|
deleteRow: 'Dzēst rindu',
|
|
38
71
|
dir_ltr: 'No kreisās uz labo',
|
|
39
72
|
dir_rtl: 'No labās uz kreiso',
|
|
73
|
+
download: 'Lejupielādēt',
|
|
74
|
+
drag: 'Velciet',
|
|
75
|
+
drawing: 'Zīmējums',
|
|
76
|
+
drawing_modal_title: 'Zīmējums',
|
|
40
77
|
edit: 'Rediģēt',
|
|
41
|
-
|
|
78
|
+
embed: 'Iegult',
|
|
79
|
+
embed_modal_title: 'Iegult',
|
|
80
|
+
embed_modal_source: 'Iegult avotu / URL',
|
|
81
|
+
exportPDF: 'Eksportēt uz PDF',
|
|
82
|
+
exportWord: 'Eksportēt uz Word',
|
|
83
|
+
find: 'Atrast',
|
|
84
|
+
decrease: 'Samazināt',
|
|
85
|
+
increase: 'Palielināt',
|
|
86
|
+
fileBrowser: 'Failu pārlūks',
|
|
87
|
+
fileGallery: 'Failu galerija',
|
|
88
|
+
fileUpload: 'Failu augšupielāde',
|
|
89
|
+
fixedColumnWidth: 'Fiksēts kolonnas platums',
|
|
42
90
|
font: 'Fonts',
|
|
43
91
|
fontColor: 'Fonta krāsa',
|
|
44
92
|
fontSize: 'Fonta lielums',
|
|
@@ -50,19 +98,23 @@
|
|
|
50
98
|
hr_dashed: 'Braša',
|
|
51
99
|
hr_dotted: 'Punktiņš',
|
|
52
100
|
hr_solid: 'Ciets',
|
|
101
|
+
id: 'ID',
|
|
53
102
|
image: 'Attēls',
|
|
54
103
|
imageGallery: 'Attēlu galerija',
|
|
55
104
|
image_modal_altText: 'Alternatīvs teksts',
|
|
56
105
|
image_modal_file: 'Izvēlieties no failiem',
|
|
57
106
|
image_modal_title: 'Ievietot attēlu',
|
|
58
107
|
image_modal_url: 'Attēla URL',
|
|
108
|
+
importWord: 'Importēt no Word',
|
|
59
109
|
indent: 'Palielināt atkāpi',
|
|
110
|
+
inlineStyle: 'Iekļauts stils',
|
|
60
111
|
insertColumnAfter: 'Ievietot kolonnu aiz',
|
|
61
112
|
insertColumnBefore: 'Ievietot kolonnu pirms',
|
|
62
113
|
insertRowAbove: 'Ievietot rindu virs',
|
|
63
114
|
insertRowBelow: 'Ievietot rindu zemāk',
|
|
115
|
+
insertLine: 'Ievietojiet rindu',
|
|
64
116
|
italic: 'Slīpraksts',
|
|
65
|
-
layout: '
|
|
117
|
+
layout: 'Izkārtojums',
|
|
66
118
|
left: 'Pa kreisi',
|
|
67
119
|
lineHeight: 'Līnijas augstums',
|
|
68
120
|
link: 'Saite',
|
|
@@ -72,6 +124,7 @@
|
|
|
72
124
|
link_modal_text: 'Parādāmais teksts',
|
|
73
125
|
link_modal_title: 'Ievietot saiti',
|
|
74
126
|
link_modal_url: 'Saites URL',
|
|
127
|
+
link_modal_relAttribute: 'Rel atribūts',
|
|
75
128
|
list: 'Saraksts',
|
|
76
129
|
math: 'Matemātika',
|
|
77
130
|
math_modal_fontSizeLabel: 'Fonta lielums',
|
|
@@ -79,6 +132,7 @@
|
|
|
79
132
|
math_modal_previewLabel: 'Priekšskatījums',
|
|
80
133
|
math_modal_title: 'Matemātika',
|
|
81
134
|
maxSize: 'Maksimālais izmērs',
|
|
135
|
+
mediaGallery: 'Mediju galerija',
|
|
82
136
|
mention: 'Pieminēt',
|
|
83
137
|
menu_bordered: 'Robežojās',
|
|
84
138
|
menu_code: 'Kods',
|
|
@@ -90,8 +144,13 @@
|
|
|
90
144
|
minSize: 'Minimālais izmērs',
|
|
91
145
|
mirrorHorizontal: 'Spogulis, horizontāls',
|
|
92
146
|
mirrorVertical: 'Spogulis, vertikāls',
|
|
147
|
+
newDocument: 'Jauns dokuments',
|
|
93
148
|
numberedList: 'Numerācija',
|
|
94
149
|
outdent: 'Samazināt atkāpi',
|
|
150
|
+
pageBreak: 'Lapas pārtraukums',
|
|
151
|
+
pageDown: 'Lapa uz leju',
|
|
152
|
+
pageNumber: 'Lapas numurs',
|
|
153
|
+
pageUp: 'Lapa uz augšu',
|
|
95
154
|
paragraphStyle: 'Paragrāfa stils',
|
|
96
155
|
preview: 'Priekšskatījums',
|
|
97
156
|
print: 'Drukāt',
|
|
@@ -100,17 +159,22 @@
|
|
|
100
159
|
redo: 'Atkārtot',
|
|
101
160
|
remove: 'Noņemt',
|
|
102
161
|
removeFormat: 'Noņemt formātu',
|
|
162
|
+
replace: 'Aizstāt',
|
|
163
|
+
replaceAll: 'Aizstāt visu',
|
|
103
164
|
resize100: 'Mainīt izmēru 100%',
|
|
104
165
|
resize25: 'Mainīt izmēru 25%',
|
|
105
166
|
resize50: 'Mainīt izmēru 50%',
|
|
106
167
|
resize75: 'Mainīt izmēru 75%',
|
|
107
|
-
resize: '
|
|
168
|
+
resize: 'Mainīt izmērus',
|
|
108
169
|
revert: 'Atjaunot',
|
|
170
|
+
revisionHistory: 'Pārskatīšanas vēsture',
|
|
109
171
|
right: 'Labajā pusē',
|
|
110
172
|
rotateLeft: 'Pagriezt pa kreisi',
|
|
111
173
|
rotateRight: 'Pagriezt pa labi',
|
|
174
|
+
row: 'Rinda',
|
|
112
175
|
save: 'Saglabāt',
|
|
113
176
|
search: 'Meklēt',
|
|
177
|
+
selectAll: 'Atlasiet visu',
|
|
114
178
|
showBlocks: 'Parādit blokus',
|
|
115
179
|
size: 'Izmērs',
|
|
116
180
|
splitCells: 'Sadalīt šūnas',
|
|
@@ -120,6 +184,7 @@
|
|
|
120
184
|
superscript: 'Augšraksts',
|
|
121
185
|
table: 'Tabula',
|
|
122
186
|
tableHeader: 'Tabulas galvene',
|
|
187
|
+
tableProperties: 'Tabulas īpašības',
|
|
123
188
|
tags: 'Tagi',
|
|
124
189
|
tag_blockquote: 'Citāts',
|
|
125
190
|
tag_div: 'Normāli (DIV)',
|
|
@@ -128,16 +193,20 @@
|
|
|
128
193
|
tag_pre: 'Kods',
|
|
129
194
|
template: 'Veidne',
|
|
130
195
|
textStyle: 'Teksta stils',
|
|
131
|
-
title: '
|
|
196
|
+
title: 'Nosaukums',
|
|
132
197
|
underline: 'Pasvītrot',
|
|
133
198
|
undo: 'Atsaukt',
|
|
199
|
+
unmergeCells: 'Atvienot šūnu sapludināšanu',
|
|
134
200
|
unlink: 'Atsaistīt',
|
|
135
201
|
verticalSplit: 'Vertikāls sadalījums',
|
|
136
202
|
video: 'Video',
|
|
203
|
+
videoGallery: 'Video galerija',
|
|
137
204
|
video_modal_file: 'Izvēlieties no failiem',
|
|
138
205
|
video_modal_title: 'Ievietot video',
|
|
139
206
|
video_modal_url: 'Multivides iegulšanas URL, YouTube/Vimeo',
|
|
140
|
-
width: 'Platums'
|
|
207
|
+
width: 'Platums',
|
|
208
|
+
message_copy_success: 'Kopēts starpliktuvē',
|
|
209
|
+
message_copy_fail: 'Kopēšana neizdevās. Lūdzu, kopējiet manuāli.'
|
|
141
210
|
};
|
|
142
211
|
|
|
143
212
|
if (typeof noGlobal === typeof undefined) {
|