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/he.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// Hebrew
|
|
2
|
+
// 히브리어
|
|
1
3
|
(function (global, factory) {
|
|
2
4
|
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
3
5
|
module.exports = global.document
|
|
@@ -15,29 +17,75 @@
|
|
|
15
17
|
const lang = {
|
|
16
18
|
code: 'he',
|
|
17
19
|
align: 'יישור',
|
|
20
|
+
alignBottom: 'יישר תחתית',
|
|
18
21
|
alignCenter: 'מרכז',
|
|
19
22
|
alignJustify: 'יישר לשני הצדדים',
|
|
20
23
|
alignLeft: 'יישר לשמאל',
|
|
24
|
+
alignMiddle: 'יישר באמצע',
|
|
21
25
|
alignRight: 'יישר לימין',
|
|
26
|
+
alignTop: 'יישר למעלה',
|
|
27
|
+
anchor: 'לְעַגֵן',
|
|
28
|
+
asBlock: 'בתור בלוק',
|
|
29
|
+
asInline: 'בתור מוטבע',
|
|
30
|
+
asLink: 'בתור קישור',
|
|
22
31
|
audio: 'שמע',
|
|
32
|
+
audioGallery: 'גלריית אודיו',
|
|
23
33
|
audio_modal_file: 'בחר מקובץ',
|
|
24
34
|
audio_modal_title: 'הכנס שמע',
|
|
25
35
|
audio_modal_url: 'כתובת URL שמע',
|
|
26
36
|
autoSize: 'הקטן אוטומטית',
|
|
27
37
|
backgroundColor: 'צבע קו תחתון',
|
|
28
38
|
basic: 'בסיסי',
|
|
39
|
+
blockStyle: 'סגנון בלוק',
|
|
29
40
|
bold: 'מודגש',
|
|
41
|
+
border: 'גְבוּל',
|
|
42
|
+
border_all: 'גבול הכל',
|
|
43
|
+
border_inside: 'גבול בפנים',
|
|
44
|
+
border_horizontal: 'גבול אופקי',
|
|
45
|
+
border_vertical: 'גבול אנכי',
|
|
46
|
+
border_outside: 'גבול בחוץ',
|
|
47
|
+
border_left: 'גבול שמאלה',
|
|
48
|
+
border_top: 'גבול העליון',
|
|
49
|
+
border_right: 'גבול ימינה',
|
|
50
|
+
border_bottom: 'תחתית גבול',
|
|
51
|
+
border_none: 'גבול אין',
|
|
30
52
|
bulletedList: 'תבליטים',
|
|
53
|
+
cancel: 'לְבַטֵל',
|
|
31
54
|
caption: 'הכנס תיאור',
|
|
55
|
+
cellProperties: 'מאפייני התא',
|
|
32
56
|
center: 'מרכז',
|
|
33
57
|
close: 'סגור',
|
|
34
58
|
codeView: 'הצג קוד',
|
|
59
|
+
color: 'צֶבַע',
|
|
60
|
+
colorPicker: 'בוחר צבעים',
|
|
61
|
+
column: 'עַמוּדָה',
|
|
62
|
+
comment: 'הערות',
|
|
63
|
+
commentAdd: 'הוסף תגובה',
|
|
64
|
+
commentShow: 'הצג הערות',
|
|
65
|
+
copy: 'לְהַעְתִיק',
|
|
66
|
+
copyFormat: 'עיצוב צבע',
|
|
67
|
+
cut: 'גְזִירָה',
|
|
35
68
|
default: 'ברירת מחדל',
|
|
36
69
|
deleteColumn: 'מחק עמודה',
|
|
37
70
|
deleteRow: 'מחק שורה',
|
|
38
71
|
dir_ltr: 'משמאל לימין',
|
|
39
72
|
dir_rtl: 'מימין לשמאל',
|
|
73
|
+
download: 'הורד',
|
|
74
|
+
drag: 'לִגרוֹר',
|
|
75
|
+
drawing: 'צִיוּר',
|
|
76
|
+
drawing_modal_title: 'צִיוּר',
|
|
40
77
|
edit: 'ערוך',
|
|
78
|
+
embed: 'לְשַׁבֵּץ',
|
|
79
|
+
embed_modal_title: 'לְשַׁבֵּץ',
|
|
80
|
+
embed_modal_source: 'הטמע מקור / כתובת אתר',
|
|
81
|
+
exportPDF: 'ייצוא ל-PDF',
|
|
82
|
+
exportWord: 'ייצוא ל-Word',
|
|
83
|
+
find: 'לִמצוֹא',
|
|
84
|
+
decrease: 'לְהַקְטִין',
|
|
85
|
+
increase: 'לְהַגדִיל',
|
|
86
|
+
fileBrowser: 'דפדפן קבצים',
|
|
87
|
+
fileGallery: 'גלריית קבצים',
|
|
88
|
+
fileUpload: 'העלאת קובץ',
|
|
41
89
|
fixedColumnWidth: 'קבע רוחב עמודות',
|
|
42
90
|
font: 'גופן',
|
|
43
91
|
fontColor: 'צבע גופן',
|
|
@@ -50,19 +98,23 @@
|
|
|
50
98
|
hr_dashed: 'מקפים',
|
|
51
99
|
hr_dotted: 'נקודות',
|
|
52
100
|
hr_solid: 'קו',
|
|
101
|
+
id: 'תְעוּדַת זֶהוּת',
|
|
53
102
|
image: 'תמונה',
|
|
54
103
|
imageGallery: 'גלרית תמונות',
|
|
55
104
|
image_modal_altText: 'תיאור (תגית alt)',
|
|
56
105
|
image_modal_file: 'בחר מקובץ',
|
|
57
106
|
image_modal_title: 'הכנס תמונה',
|
|
58
107
|
image_modal_url: 'כתובת URL תמונה',
|
|
108
|
+
importWord: 'ייבוא מוורד',
|
|
59
109
|
indent: 'הגדל כניסה',
|
|
110
|
+
inlineStyle: 'סגנון מוטבע',
|
|
60
111
|
insertColumnAfter: 'הכנס עמודה אחרי',
|
|
61
112
|
insertColumnBefore: 'הכנס עמודה לפני',
|
|
62
113
|
insertRowAbove: 'הכנס שורה מעל',
|
|
63
114
|
insertRowBelow: 'הכנס שורה מתחת',
|
|
115
|
+
insertLine: 'הכנס קו',
|
|
64
116
|
italic: 'נטוי',
|
|
65
|
-
layout: '
|
|
117
|
+
layout: 'מַעֲרָך',
|
|
66
118
|
left: 'שמאל',
|
|
67
119
|
lineHeight: 'גובה השורה',
|
|
68
120
|
link: 'קישור',
|
|
@@ -72,6 +124,7 @@
|
|
|
72
124
|
link_modal_text: 'תיאור',
|
|
73
125
|
link_modal_title: 'הכנס קשור',
|
|
74
126
|
link_modal_url: 'כתובת קשור',
|
|
127
|
+
link_modal_relAttribute: 'תכונת Rel',
|
|
75
128
|
list: 'רשימה',
|
|
76
129
|
math: 'מתמטיקה',
|
|
77
130
|
math_modal_fontSizeLabel: 'גודל גופן',
|
|
@@ -79,6 +132,7 @@
|
|
|
79
132
|
math_modal_previewLabel: 'תצוגה מקדימה',
|
|
80
133
|
math_modal_title: 'נוסחה',
|
|
81
134
|
maxSize: 'גודל מרבי',
|
|
135
|
+
mediaGallery: 'גלריית מדיה',
|
|
82
136
|
mention: 'הזכר',
|
|
83
137
|
menu_bordered: 'בעל מיתאר',
|
|
84
138
|
menu_code: 'קוד',
|
|
@@ -90,8 +144,13 @@
|
|
|
90
144
|
minSize: 'גודל מזערי',
|
|
91
145
|
mirrorHorizontal: 'הפוך לרוחב',
|
|
92
146
|
mirrorVertical: 'הפוך לגובה',
|
|
147
|
+
newDocument: 'מסמך חדש',
|
|
93
148
|
numberedList: 'מספור',
|
|
94
149
|
outdent: 'הקטן כניסה',
|
|
150
|
+
pageBreak: 'מעבר עמוד',
|
|
151
|
+
pageDown: 'עמוד למטה',
|
|
152
|
+
pageNumber: 'מספר עמוד',
|
|
153
|
+
pageUp: 'דף למעלה',
|
|
95
154
|
paragraphStyle: 'סגנון פסקה',
|
|
96
155
|
preview: 'תצוגה מקדימה',
|
|
97
156
|
print: 'הדפס',
|
|
@@ -100,17 +159,22 @@
|
|
|
100
159
|
redo: 'חזור',
|
|
101
160
|
remove: 'הסר',
|
|
102
161
|
removeFormat: 'הסר עיצוב',
|
|
162
|
+
replace: 'לְהַחלִיף',
|
|
163
|
+
replaceAll: 'החלף הכל',
|
|
103
164
|
resize100: 'ללא הקטנה',
|
|
104
165
|
resize25: 'הקטן 25%',
|
|
105
166
|
resize50: 'הקטן 50%',
|
|
106
167
|
resize75: 'הקטן 75%',
|
|
107
|
-
resize: '
|
|
168
|
+
resize: 'שנה גודל',
|
|
108
169
|
revert: 'בטל',
|
|
170
|
+
revisionHistory: 'היסטוריית גרסאות',
|
|
109
171
|
right: 'ימין',
|
|
110
172
|
rotateLeft: 'סובב שמאלה',
|
|
111
173
|
rotateRight: 'סובב ימינה',
|
|
174
|
+
row: 'שׁוּרָה',
|
|
112
175
|
save: 'שמור',
|
|
113
176
|
search: 'חפש',
|
|
177
|
+
selectAll: 'בחר הכל',
|
|
114
178
|
showBlocks: 'הצג גושים',
|
|
115
179
|
size: 'גודל',
|
|
116
180
|
splitCells: 'פצל תא',
|
|
@@ -120,6 +184,7 @@
|
|
|
120
184
|
superscript: 'תחתי',
|
|
121
185
|
table: 'טבלה',
|
|
122
186
|
tableHeader: 'כותרת טבלה',
|
|
187
|
+
tableProperties: 'מאפייני טבלה',
|
|
123
188
|
tags: 'תג',
|
|
124
189
|
tag_blockquote: 'ציטוט',
|
|
125
190
|
tag_div: 'רגילה (DIV)',
|
|
@@ -128,16 +193,20 @@
|
|
|
128
193
|
tag_pre: 'קוד',
|
|
129
194
|
template: 'תבנית',
|
|
130
195
|
textStyle: 'סגנון גופן',
|
|
131
|
-
title: '
|
|
196
|
+
title: 'כּוֹתֶרֶת',
|
|
132
197
|
underline: 'קו תחתון',
|
|
133
198
|
undo: 'בטל',
|
|
199
|
+
unmergeCells: 'בטל מיזוג תאים',
|
|
134
200
|
unlink: 'הסר קישורים',
|
|
135
201
|
verticalSplit: 'פצל לרוחב',
|
|
136
202
|
video: 'חוזי',
|
|
203
|
+
videoGallery: 'גלריית וידאו',
|
|
137
204
|
video_modal_file: 'בחר מקובץ',
|
|
138
205
|
video_modal_title: 'הכנס סרטון',
|
|
139
206
|
video_modal_url: 'כתובת הטמעה YouTube/Vimeo',
|
|
140
|
-
width: 'רוחב'
|
|
207
|
+
width: 'רוחב',
|
|
208
|
+
message_copy_success: 'הועתק ללוח',
|
|
209
|
+
message_copy_fail: 'ההעתקה נכשלה. נא להעתיק ידנית.'
|
|
141
210
|
};
|
|
142
211
|
|
|
143
212
|
if (typeof noGlobal === typeof undefined) {
|
package/src/langs/hu.js
ADDED
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
// Hungarian
|
|
2
|
+
// 헝가리어
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
5
|
+
module.exports = global.document
|
|
6
|
+
? factory(global, true)
|
|
7
|
+
: function (w) {
|
|
8
|
+
if (!w.document) {
|
|
9
|
+
throw new Error('SUNEDITOR_LANG requires a window with a document');
|
|
10
|
+
}
|
|
11
|
+
return factory(w);
|
|
12
|
+
};
|
|
13
|
+
} else {
|
|
14
|
+
factory(global);
|
|
15
|
+
}
|
|
16
|
+
})(typeof window !== 'undefined' ? window : this, function (window, noGlobal) {
|
|
17
|
+
const lang = {
|
|
18
|
+
code: 'hu',
|
|
19
|
+
align: 'Igazítás',
|
|
20
|
+
alignBottom: 'Alulra igazítás',
|
|
21
|
+
alignCenter: 'Középre igazítás',
|
|
22
|
+
alignJustify: 'Sorkizárt',
|
|
23
|
+
alignLeft: 'Balra igazítás',
|
|
24
|
+
alignMiddle: 'Középre igazítás',
|
|
25
|
+
alignRight: 'Jobbra igazítás',
|
|
26
|
+
alignTop: 'Fentről igazítás',
|
|
27
|
+
anchor: 'Könyvjelző',
|
|
28
|
+
asBlock: 'Blokk szintű',
|
|
29
|
+
asInline: 'Sor szintű',
|
|
30
|
+
asLink: 'Linkként',
|
|
31
|
+
audio: 'Hang',
|
|
32
|
+
audioGallery: 'Hanggaléria',
|
|
33
|
+
audio_modal_file: 'Fájl feltöltés',
|
|
34
|
+
audio_modal_title: 'Hang beszúrása',
|
|
35
|
+
audio_modal_url: 'Hang URL',
|
|
36
|
+
autoSize: 'Automatikus méret',
|
|
37
|
+
backgroundColor: 'Háttérszín',
|
|
38
|
+
basic: 'Alapszintű',
|
|
39
|
+
blockStyle: 'Blokk stílus',
|
|
40
|
+
bold: 'Félkövér',
|
|
41
|
+
border: 'Körvonal',
|
|
42
|
+
border_all: 'Összes oldalon körvonal',
|
|
43
|
+
border_inside: 'Belső körvonal',
|
|
44
|
+
border_horizontal: 'Vízszintes körvonal',
|
|
45
|
+
border_vertical: 'Függőleges körvonal',
|
|
46
|
+
border_outside: 'Külső körvonal',
|
|
47
|
+
border_left: 'Bal oldali körvonal',
|
|
48
|
+
border_top: 'Felső körvonal',
|
|
49
|
+
border_right: 'Jobb oldali körvonal',
|
|
50
|
+
border_bottom: 'Alsó körvonal',
|
|
51
|
+
border_none: 'Nincs körvonal',
|
|
52
|
+
bulletedList: 'Pontozott lista',
|
|
53
|
+
cancel: 'Mégse',
|
|
54
|
+
caption: 'Képaláírás beszúrása',
|
|
55
|
+
cellProperties: 'Cella tulajdonságok',
|
|
56
|
+
center: 'Középre',
|
|
57
|
+
close: 'Bezárás',
|
|
58
|
+
codeView: 'Forráskód nézet',
|
|
59
|
+
color: 'Szín',
|
|
60
|
+
colorPicker: 'Színválasztó',
|
|
61
|
+
column: 'Oszlop',
|
|
62
|
+
comment: 'Megjegyzés',
|
|
63
|
+
commentAdd: 'Megjegyzés hozzáadása',
|
|
64
|
+
commentShow: 'Megjegyzés megjelenítése',
|
|
65
|
+
copy: 'Másolás',
|
|
66
|
+
copyFormat: 'Formázás másolása',
|
|
67
|
+
cut: 'Kivágás',
|
|
68
|
+
default: 'Alapértelmezett',
|
|
69
|
+
deleteColumn: 'Oszlop törlése',
|
|
70
|
+
deleteRow: 'Sor törlése',
|
|
71
|
+
dir_ltr: 'Balról jobbra',
|
|
72
|
+
dir_rtl: 'Jobbról balra',
|
|
73
|
+
download: 'Letöltés',
|
|
74
|
+
drag: 'Húzás',
|
|
75
|
+
drawing: 'Rajz',
|
|
76
|
+
drawing_modal_title: 'Rajz beszúrása',
|
|
77
|
+
edit: 'Szerkesztés',
|
|
78
|
+
embed: 'Beágyazás',
|
|
79
|
+
embed_modal_title: 'Beágyazás beszúrása',
|
|
80
|
+
embed_modal_source: 'Beágyazási forrás / URL',
|
|
81
|
+
exportPDF: 'PDF exportálása',
|
|
82
|
+
exportWord: 'Word exportálása',
|
|
83
|
+
find: 'Keresés',
|
|
84
|
+
decrease: 'Csökkentés',
|
|
85
|
+
increase: 'Növelés',
|
|
86
|
+
fileBrowser: 'Fájl böngésző',
|
|
87
|
+
fileGallery: 'Fájlgaléria',
|
|
88
|
+
fileUpload: 'Fájl feltöltés',
|
|
89
|
+
fixedColumnWidth: 'Rögzített oszlopszélesség',
|
|
90
|
+
font: 'Betűtípus',
|
|
91
|
+
fontColor: 'Betűszín',
|
|
92
|
+
fontSize: 'Betűméret',
|
|
93
|
+
formats: 'Formátumok',
|
|
94
|
+
fullScreen: 'Teljes képernyő',
|
|
95
|
+
height: 'Magasság',
|
|
96
|
+
horizontalLine: 'Vízszintes vonal',
|
|
97
|
+
horizontalSplit: 'Vízszintes elválasztás',
|
|
98
|
+
hr_dashed: 'Szaggatott',
|
|
99
|
+
hr_dotted: 'Pontozott',
|
|
100
|
+
hr_solid: 'Folyamatos',
|
|
101
|
+
id: 'Azonosító',
|
|
102
|
+
image: 'Kép',
|
|
103
|
+
imageGallery: 'Képgalléria',
|
|
104
|
+
image_modal_altText: 'Alternatív szöveg',
|
|
105
|
+
image_modal_file: 'Fájl feltöltés',
|
|
106
|
+
image_modal_title: 'Kép beszúrása',
|
|
107
|
+
image_modal_url: 'Képhivatkozás',
|
|
108
|
+
importWord: 'Word importálása',
|
|
109
|
+
indent: 'Behúzás növelése',
|
|
110
|
+
inlineStyle: 'Inline stílus',
|
|
111
|
+
insertColumnAfter: 'Oszlop beszúrása utána',
|
|
112
|
+
insertColumnBefore: 'Oszlop beszúrása előtt',
|
|
113
|
+
insertRowAbove: 'Sor beszúrása fölötte',
|
|
114
|
+
insertRowBelow: 'Sor beszúrása alatta',
|
|
115
|
+
insertLine: 'Vonal beszúrása',
|
|
116
|
+
italic: 'Dőlt',
|
|
117
|
+
layout: 'Elrendezés',
|
|
118
|
+
left: 'Balra',
|
|
119
|
+
lineHeight: 'Sormagasság',
|
|
120
|
+
link: 'Hivatkozás',
|
|
121
|
+
link_modal_bookmark: 'Könyvjelző',
|
|
122
|
+
link_modal_downloadLinkCheck: 'Letöltési link',
|
|
123
|
+
link_modal_newWindowCheck: 'Új ablakban nyitás',
|
|
124
|
+
link_modal_text: 'Megjelenített szöveg',
|
|
125
|
+
link_modal_title: 'Link beszúrása',
|
|
126
|
+
link_modal_url: 'Link URL',
|
|
127
|
+
link_modal_relAttribute: 'Rel attribútum',
|
|
128
|
+
list: 'Lista',
|
|
129
|
+
math: 'Matematika',
|
|
130
|
+
math_modal_fontSizeLabel: 'Betűméret',
|
|
131
|
+
math_modal_inputLabel: 'Matematikai jelölések',
|
|
132
|
+
math_modal_previewLabel: 'Előnézet',
|
|
133
|
+
math_modal_title: 'Matematika',
|
|
134
|
+
maxSize: 'Maximális méret',
|
|
135
|
+
mediaGallery: 'Média galéria',
|
|
136
|
+
mention: 'Említés',
|
|
137
|
+
menu_bordered: 'Keretezett',
|
|
138
|
+
menu_code: 'Kód',
|
|
139
|
+
menu_neon: 'Neon',
|
|
140
|
+
menu_shadow: 'Árnyék',
|
|
141
|
+
menu_spaced: 'Ritkított',
|
|
142
|
+
menu_translucent: 'Áttetsző',
|
|
143
|
+
mergeCells: 'Cellák egyesítése',
|
|
144
|
+
minSize: 'Minimális méret',
|
|
145
|
+
mirrorHorizontal: 'Vízszintes tükrözés',
|
|
146
|
+
mirrorVertical: 'Függőleges tükrözés',
|
|
147
|
+
newDocument: 'Új dokumentum',
|
|
148
|
+
numberedList: 'Számozott lista',
|
|
149
|
+
outdent: 'Behúzás csökkentése',
|
|
150
|
+
pageBreak: 'Oldaltörés',
|
|
151
|
+
pageDown: 'Oldal lefelé',
|
|
152
|
+
pageNumber: 'Oldalszám',
|
|
153
|
+
pageUp: 'Oldal felfelé',
|
|
154
|
+
paragraphStyle: 'Bekezdés stílus',
|
|
155
|
+
preview: 'Előnézet',
|
|
156
|
+
print: 'Nyomtatás',
|
|
157
|
+
proportion: 'Méretkorlátok megtartása',
|
|
158
|
+
ratio: 'Képarány',
|
|
159
|
+
redo: 'Újra',
|
|
160
|
+
remove: 'Eltávolítás',
|
|
161
|
+
removeFormat: 'Formázás törlése',
|
|
162
|
+
replace: 'Csere',
|
|
163
|
+
replaceAll: 'Összes csere',
|
|
164
|
+
resize100: 'Zoom 100%',
|
|
165
|
+
resize25: 'Zoom 25%',
|
|
166
|
+
resize50: 'Zoom 50%',
|
|
167
|
+
resize75: 'Zoom 75%',
|
|
168
|
+
resize: 'Átméretezés',
|
|
169
|
+
revert: 'Visszaállítás',
|
|
170
|
+
revisionHistory: 'Módosítási előzmények',
|
|
171
|
+
right: 'Jobbra',
|
|
172
|
+
rotateLeft: 'Balra forgatás',
|
|
173
|
+
rotateRight: 'Jobbra forgatás',
|
|
174
|
+
row: 'Sor',
|
|
175
|
+
save: 'Mentés',
|
|
176
|
+
search: 'Keresés',
|
|
177
|
+
selectAll: 'Mindet kijelöl',
|
|
178
|
+
showBlocks: 'Blokkok megjelenítése',
|
|
179
|
+
size: 'Méret',
|
|
180
|
+
splitCells: 'Cellák szétválasztása',
|
|
181
|
+
strike: 'Áthúzott',
|
|
182
|
+
submitButton: 'Küldés',
|
|
183
|
+
subscript: 'Alsó index',
|
|
184
|
+
superscript: 'Felső index',
|
|
185
|
+
table: 'Táblázat',
|
|
186
|
+
tableHeader: 'Táblázat fejléc',
|
|
187
|
+
tableProperties: 'Táblázat tulajdonságok',
|
|
188
|
+
tags: 'Címkék',
|
|
189
|
+
tag_blockquote: 'Idézet',
|
|
190
|
+
tag_div: 'Normál (DIV)',
|
|
191
|
+
tag_h: 'Fejléc',
|
|
192
|
+
tag_p: 'Bekezdés',
|
|
193
|
+
tag_pre: 'Kód',
|
|
194
|
+
template: 'Minta',
|
|
195
|
+
textStyle: 'Karakterstílus',
|
|
196
|
+
title: 'Cím',
|
|
197
|
+
underline: 'Aláhúzott',
|
|
198
|
+
undo: 'Visszavonás',
|
|
199
|
+
unmergeCells: 'Cellák egyesítésének visszavonása',
|
|
200
|
+
unlink: 'Link eltávolítása',
|
|
201
|
+
verticalSplit: 'Függőleges elválasztás',
|
|
202
|
+
video: 'Videó',
|
|
203
|
+
videoGallery: 'Videó galéria',
|
|
204
|
+
video_modal_file: 'Fájl feltöltés',
|
|
205
|
+
video_modal_title: 'Videó beszúrása',
|
|
206
|
+
video_modal_url: 'Beágyazható URL, YouTube/Vimeo',
|
|
207
|
+
width: 'Szélesség',
|
|
208
|
+
message_copy_success: 'Vágólapra másolva',
|
|
209
|
+
message_copy_fail: 'A másolás sikertelen. Kérjük, másolja kézzel.'
|
|
210
|
+
};
|
|
211
|
+
|
|
212
|
+
if (typeof noGlobal === 'undefined') {
|
|
213
|
+
if (!window.SUNEDITOR_LANG) {
|
|
214
|
+
Object.defineProperty(window, 'SUNEDITOR_LANG', {
|
|
215
|
+
enumerable: true,
|
|
216
|
+
writable: false,
|
|
217
|
+
configurable: false,
|
|
218
|
+
value: {}
|
|
219
|
+
});
|
|
220
|
+
}
|
|
221
|
+
Object.defineProperty(window.SUNEDITOR_LANG, 'hu', {
|
|
222
|
+
enumerable: true,
|
|
223
|
+
writable: true,
|
|
224
|
+
configurable: true,
|
|
225
|
+
value: lang
|
|
226
|
+
});
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
return lang;
|
|
230
|
+
});
|
package/src/langs/index.js
CHANGED
|
@@ -4,11 +4,14 @@ import da from './da';
|
|
|
4
4
|
import de from './de';
|
|
5
5
|
import en from './en';
|
|
6
6
|
import es from './es';
|
|
7
|
+
import fa from './fa';
|
|
7
8
|
import fr from './fr';
|
|
8
9
|
import he from './he';
|
|
10
|
+
import hu from './hu';
|
|
9
11
|
import it from './it';
|
|
10
12
|
import ja from './ja';
|
|
11
13
|
import ko from './ko';
|
|
14
|
+
import km from './km';
|
|
12
15
|
import lv from './lv';
|
|
13
16
|
import nl from './nl';
|
|
14
17
|
import pl from './pl';
|
|
@@ -16,9 +19,10 @@ import pt_br from './pt_br';
|
|
|
16
19
|
import ro from './ro';
|
|
17
20
|
import ru from './ru';
|
|
18
21
|
import se from './se';
|
|
19
|
-
import
|
|
22
|
+
import tr from './tr';
|
|
23
|
+
import uk from './uk';
|
|
20
24
|
import ur from './ur';
|
|
21
25
|
import zh_cn from './zh_cn';
|
|
22
26
|
|
|
23
|
-
export { ckb, cs, da, de, en, es, fr, he, it, ja, ko, lv, nl, pl, pt_br, ro, ru, se,
|
|
24
|
-
export default { ckb, cs, da, de, en, es, fr, he, it, ja, ko, lv, nl, pl, pt_br, ro, ru, se,
|
|
27
|
+
export { ckb, cs, da, de, en, es, fa, fr, he, hu, it, ja, ko, km, lv, nl, pl, pt_br, ro, ru, se, tr, uk, ur, zh_cn };
|
|
28
|
+
export default { ckb, cs, da, de, en, es, fa, fr, he, hu, it, ja, ko, km, lv, nl, pl, pt_br, ro, ru, se, tr, uk, ur, zh_cn };
|
package/src/langs/it.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// Italy
|
|
2
|
+
// 이탈리아어
|
|
1
3
|
(function (global, factory) {
|
|
2
4
|
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
3
5
|
module.exports = global.document
|
|
@@ -15,29 +17,75 @@
|
|
|
15
17
|
const lang = {
|
|
16
18
|
code: 'it',
|
|
17
19
|
align: 'Allinea',
|
|
20
|
+
alignBottom: 'Allinea in basso',
|
|
18
21
|
alignCenter: 'Allinea al centro',
|
|
19
22
|
alignJustify: 'Giustifica testo',
|
|
20
23
|
alignLeft: 'Allinea a sinistra',
|
|
24
|
+
alignMiddle: 'Allinea al centro',
|
|
21
25
|
alignRight: 'Allinea a destra',
|
|
26
|
+
alignTop: 'Allinea in alto',
|
|
27
|
+
anchor: 'Ancora',
|
|
28
|
+
asBlock: 'Come blocco',
|
|
29
|
+
asInline: 'Come in linea',
|
|
30
|
+
asLink: 'Come collegamento',
|
|
22
31
|
audio: 'Audio',
|
|
32
|
+
audioGallery: 'Galleria audio',
|
|
23
33
|
audio_modal_file: 'Seleziona da file',
|
|
24
34
|
audio_modal_title: 'Inserisci audio',
|
|
25
35
|
audio_modal_url: 'Indirizzo audio',
|
|
26
36
|
autoSize: 'Ridimensione automatica',
|
|
27
37
|
backgroundColor: 'Colore sottolineatura',
|
|
28
38
|
basic: 'Da impostazione',
|
|
39
|
+
blockStyle: 'Stile blocco',
|
|
29
40
|
bold: 'Grassetto',
|
|
41
|
+
border: 'Bordo',
|
|
42
|
+
border_all: 'Bordo tutto',
|
|
43
|
+
border_inside: 'Bordo interno',
|
|
44
|
+
border_horizontal: 'Bordo interno',
|
|
45
|
+
border_vertical: 'Bordo verticale',
|
|
46
|
+
border_outside: 'Bordo esterno',
|
|
47
|
+
border_left: 'Bordo sinistro',
|
|
48
|
+
border_top: 'Bordo superiore',
|
|
49
|
+
border_right: 'Bordo destro',
|
|
50
|
+
border_bottom: 'Bordo inferiore',
|
|
51
|
+
border_none: 'Nessuno bordo',
|
|
30
52
|
bulletedList: 'Elenco puntato',
|
|
53
|
+
cancel: 'Annulla',
|
|
31
54
|
caption: 'Inserisci didascalia',
|
|
55
|
+
cellProperties: 'Proprietà cella',
|
|
32
56
|
center: 'Centrato',
|
|
33
57
|
close: 'Chiudi',
|
|
34
58
|
codeView: 'Visualizza codice',
|
|
59
|
+
color: 'Colore',
|
|
60
|
+
colorPicker: 'Selettore colore',
|
|
61
|
+
column: 'Colonna',
|
|
62
|
+
comment: 'Commenti',
|
|
63
|
+
commentAdd: 'Aggiungi commento',
|
|
64
|
+
commentShow: 'Mostra commenti',
|
|
65
|
+
copy: 'Copia',
|
|
66
|
+
copyFormat: 'Colora Formattazione',
|
|
67
|
+
cut: 'Taglia',
|
|
35
68
|
default: 'Predefinita',
|
|
36
69
|
deleteColumn: 'Cancella colonna',
|
|
37
70
|
deleteRow: 'Cancella riga',
|
|
38
71
|
dir_ltr: 'Da sinistra a destra',
|
|
39
72
|
dir_rtl: 'Da destra a sinistra',
|
|
73
|
+
download: 'Scarica',
|
|
74
|
+
drag: 'Scarica',
|
|
75
|
+
drawing: 'Disegno',
|
|
76
|
+
drawing_modal_title: 'Disegno',
|
|
40
77
|
edit: 'Modifica',
|
|
78
|
+
embed: 'Incorpora',
|
|
79
|
+
embed_modal_title: 'Incorpora',
|
|
80
|
+
embed_modal_source: 'Incorpora origine / URL',
|
|
81
|
+
exportPDF: 'Esporta in PDF',
|
|
82
|
+
exportWord: 'Esporta in Word',
|
|
83
|
+
find: 'Trova',
|
|
84
|
+
decrease: 'Diminuisci',
|
|
85
|
+
increase: 'Aumenta',
|
|
86
|
+
fileBrowser: 'Browser file',
|
|
87
|
+
fileGallery: 'Galleria file',
|
|
88
|
+
fileUpload: 'Caricamento file',
|
|
41
89
|
fixedColumnWidth: 'Larghezza delle colonne fissa',
|
|
42
90
|
font: 'Font',
|
|
43
91
|
fontColor: 'Colore testo',
|
|
@@ -50,17 +98,21 @@
|
|
|
50
98
|
hr_dashed: 'Trattini',
|
|
51
99
|
hr_dotted: 'Puntini',
|
|
52
100
|
hr_solid: 'Linea continua',
|
|
101
|
+
id: 'ID',
|
|
53
102
|
image: 'Immagine',
|
|
54
103
|
imageGallery: 'Galleria di immagini',
|
|
55
104
|
image_modal_altText: 'Testo alternativo (ALT)',
|
|
56
105
|
image_modal_file: 'Seleziona da file',
|
|
57
106
|
image_modal_title: 'Inserisci immagine',
|
|
58
107
|
image_modal_url: 'Indirizzo immagine',
|
|
108
|
+
importWord: 'Importa da Word',
|
|
59
109
|
indent: 'Aumenta rientro',
|
|
110
|
+
inlineStyle: 'Stile in linea',
|
|
60
111
|
insertColumnAfter: 'Inserisci colonna dopo',
|
|
61
112
|
insertColumnBefore: 'Inserisci colonna prima',
|
|
62
113
|
insertRowAbove: 'Inserisci riga sopra',
|
|
63
114
|
insertRowBelow: 'Inserisci riga sotto',
|
|
115
|
+
insertLine: 'Inserisci riga',
|
|
64
116
|
italic: 'Corsivo',
|
|
65
117
|
layout: 'Modello',
|
|
66
118
|
left: 'Sinistra',
|
|
@@ -72,6 +124,7 @@
|
|
|
72
124
|
link_modal_text: 'Testo da visualizzare',
|
|
73
125
|
link_modal_title: 'Inserisci un link',
|
|
74
126
|
link_modal_url: 'Indirizzo',
|
|
127
|
+
link_modal_relAttribute: 'Attributo rel',
|
|
75
128
|
list: 'Elenco',
|
|
76
129
|
math: 'Formula matematica',
|
|
77
130
|
math_modal_fontSizeLabel: 'Grandezza testo',
|
|
@@ -79,6 +132,7 @@
|
|
|
79
132
|
math_modal_previewLabel: 'Anteprima',
|
|
80
133
|
math_modal_title: 'Matematica',
|
|
81
134
|
maxSize: 'Dimensione massima',
|
|
135
|
+
mediaGallery: 'Galleria multimediale',
|
|
82
136
|
mention: 'Menzione',
|
|
83
137
|
menu_bordered: 'Bordato',
|
|
84
138
|
menu_code: 'Codice',
|
|
@@ -90,8 +144,13 @@
|
|
|
90
144
|
minSize: 'Dimensione minima',
|
|
91
145
|
mirrorHorizontal: 'Capovolgi orizzontalmente',
|
|
92
146
|
mirrorVertical: 'Capovolgi verticalmente',
|
|
147
|
+
newDocument: 'Nuovo documento',
|
|
93
148
|
numberedList: 'Elenco numerato',
|
|
94
149
|
outdent: 'Riduci rientro',
|
|
150
|
+
pageBreak: 'Interruzione di pagina',
|
|
151
|
+
pageDown: 'Pagina giù',
|
|
152
|
+
pageNumber: 'Numero di pagina',
|
|
153
|
+
pageUp: 'Pagina su',
|
|
95
154
|
paragraphStyle: 'Stile paragrafo',
|
|
96
155
|
preview: 'Anteprima',
|
|
97
156
|
print: 'Stampa',
|
|
@@ -100,17 +159,22 @@
|
|
|
100
159
|
redo: 'Ripristina',
|
|
101
160
|
remove: 'Rimuovi',
|
|
102
161
|
removeFormat: 'Rimuovi formattazione',
|
|
162
|
+
replace: 'Sostituisci',
|
|
163
|
+
replaceAll: 'Sostituisci tutto',
|
|
103
164
|
resize100: 'Ridimensiona 100%',
|
|
104
165
|
resize25: 'Ridimensiona 25%',
|
|
105
166
|
resize50: 'Ridimensiona 50%',
|
|
106
167
|
resize75: 'Ridimensiona 75%',
|
|
107
168
|
resize: 'Ridimensiona',
|
|
108
169
|
revert: 'Annulla',
|
|
170
|
+
revisionHistory: 'Cronologia revisioni',
|
|
109
171
|
right: 'Destra',
|
|
110
172
|
rotateLeft: 'Ruota a sinistra',
|
|
111
173
|
rotateRight: 'Ruota a destra',
|
|
174
|
+
row: 'Riga',
|
|
112
175
|
save: 'Salva',
|
|
113
176
|
search: 'Ricerca',
|
|
177
|
+
selectAll: 'Seleziona tutto',
|
|
114
178
|
showBlocks: 'Visualizza blocchi',
|
|
115
179
|
size: 'Dimensioni',
|
|
116
180
|
splitCells: 'Dividi celle',
|
|
@@ -120,6 +184,7 @@
|
|
|
120
184
|
superscript: 'Pedice',
|
|
121
185
|
table: 'Tabella',
|
|
122
186
|
tableHeader: 'Intestazione tabella',
|
|
187
|
+
tableProperties: 'Proprietà tabella',
|
|
123
188
|
tags: 'tag',
|
|
124
189
|
tag_blockquote: 'Citazione',
|
|
125
190
|
tag_div: 'Normale (DIV)',
|
|
@@ -131,13 +196,17 @@
|
|
|
131
196
|
title: 'Titolo',
|
|
132
197
|
underline: 'Sottolineato',
|
|
133
198
|
undo: 'Annulla',
|
|
199
|
+
unmergeCells: 'Annulla unione celle',
|
|
134
200
|
unlink: 'Elimina link',
|
|
135
201
|
verticalSplit: 'Separa verticalmente',
|
|
136
202
|
video: 'Video',
|
|
203
|
+
videoGallery: 'Galleria video',
|
|
137
204
|
video_modal_file: 'Seleziona da file',
|
|
138
205
|
video_modal_title: 'Inserisci video',
|
|
139
206
|
video_modal_url: 'Indirizzo video di embed, YouTube/Vimeo',
|
|
140
|
-
width: 'Larghezza'
|
|
207
|
+
width: 'Larghezza',
|
|
208
|
+
message_copy_success: 'Copiato negli appunti',
|
|
209
|
+
message_copy_fail: 'Copia non riuscita. Copia manuale richiesta.'
|
|
141
210
|
};
|
|
142
211
|
|
|
143
212
|
if (typeof noGlobal === typeof undefined) {
|