suneditor 3.0.0-alpha.2 → 3.0.0-alpha.20
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/.eslintrc.json +4 -3
- package/CONTRIBUTING.md +4 -2
- package/README.md +19 -11
- package/README_V3_TEMP.md +705 -0
- package/dist/suneditor.min.css +1 -0
- package/dist/suneditor.min.js +1 -0
- package/example.md +587 -0
- package/package.json +15 -9
- package/src/assets/icons/_default.js +166 -131
- package/src/assets/{suneditor-content.css → suneditor-contents.css} +182 -45
- package/src/assets/suneditor.css +1195 -556
- package/src/assets/variables.css +138 -0
- package/src/core/base/eventHandlers/handler_toolbar.js +35 -14
- package/src/core/base/eventHandlers/handler_ww_clipboard.js +29 -4
- package/src/core/base/eventHandlers/handler_ww_dragDrop.js +59 -15
- package/src/core/base/eventHandlers/handler_ww_key_input.js +426 -212
- package/src/core/base/eventHandlers/handler_ww_mouse.js +108 -32
- package/src/core/base/eventManager.js +540 -209
- package/src/core/base/events.js +616 -320
- package/src/core/base/history.js +93 -39
- package/src/core/class/char.js +29 -13
- package/src/core/class/component.js +332 -145
- package/src/core/class/format.js +671 -509
- package/src/core/class/html.js +504 -290
- package/src/core/class/menu.js +114 -47
- package/src/core/class/nodeTransform.js +111 -66
- package/src/core/class/offset.js +409 -105
- package/src/core/class/selection.js +220 -108
- package/src/core/class/shortcuts.js +68 -8
- package/src/core/class/toolbar.js +106 -116
- package/src/core/class/ui.js +330 -0
- package/src/core/class/viewer.js +178 -74
- package/src/core/editor.js +489 -384
- package/src/core/section/actives.js +118 -22
- package/src/core/section/constructor.js +504 -170
- 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/helper/converter.js +137 -19
- package/src/helper/dom/domCheck.js +294 -0
- package/src/helper/dom/domQuery.js +609 -0
- package/src/helper/dom/domUtils.js +533 -0
- package/src/helper/dom/index.js +12 -0
- package/src/helper/env.js +42 -19
- package/src/helper/index.js +7 -4
- package/src/helper/keyCodeMap.js +183 -0
- package/src/helper/numbers.js +8 -8
- package/src/helper/unicode.js +5 -5
- package/src/langs/ckb.js +69 -3
- package/src/langs/cs.js +67 -1
- package/src/langs/da.js +68 -2
- package/src/langs/de.js +68 -3
- package/src/langs/en.js +29 -1
- package/src/langs/es.js +68 -3
- package/src/langs/fa.js +70 -2
- package/src/langs/fr.js +68 -2
- package/src/langs/he.js +68 -3
- package/src/langs/hu.js +226 -0
- package/src/langs/index.js +3 -2
- package/src/langs/it.js +65 -0
- package/src/langs/ja.js +68 -3
- package/src/langs/ko.js +66 -1
- package/src/langs/lv.js +68 -3
- package/src/langs/nl.js +68 -3
- package/src/langs/pl.js +68 -3
- package/src/langs/pt_br.js +65 -0
- package/src/langs/ro.js +69 -4
- package/src/langs/ru.js +68 -3
- package/src/langs/se.js +68 -3
- package/src/langs/tr.js +68 -0
- package/src/langs/ua.js +68 -3
- package/src/langs/ur.js +71 -6
- package/src/langs/zh_cn.js +69 -4
- 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 +233 -136
- package/src/modules/Figure.js +913 -489
- package/src/modules/FileManager.js +141 -72
- package/src/modules/HueSlider.js +113 -61
- package/src/modules/Modal.js +292 -113
- package/src/modules/ModalAnchorEditor.js +380 -230
- 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 +226 -158
- package/src/plugins/command/list_bulleted.js +93 -47
- package/src/plugins/command/list_numbered.js +93 -47
- package/src/plugins/dropdown/align.js +66 -54
- package/src/plugins/dropdown/backgroundColor.js +76 -45
- package/src/plugins/dropdown/font.js +71 -47
- package/src/plugins/dropdown/fontColor.js +78 -46
- package/src/plugins/dropdown/formatBlock.js +74 -33
- package/src/plugins/dropdown/hr.js +102 -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 +1269 -777
- package/src/plugins/dropdown/template.js +38 -26
- package/src/plugins/dropdown/textStyle.js +43 -31
- package/src/plugins/field/mention.js +144 -82
- 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 +341 -169
- package/src/plugins/modal/drawing.js +530 -0
- package/src/plugins/modal/embed.js +886 -0
- package/src/plugins/modal/image.js +673 -358
- package/src/plugins/modal/link.js +100 -71
- package/src/plugins/modal/math.js +384 -168
- package/src/plugins/modal/video.js +693 -336
- package/src/plugins/popup/anchor.js +222 -0
- package/src/suneditor.js +54 -12
- package/src/themes/dark.css +85 -0
- package/src/typedef.js +86 -0
- package/types/assets/icons/_default.d.ts +152 -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 +377 -0
- package/types/core/base/events.d.ts +297 -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 +259 -0
- package/types/core/class/format.d.ts +615 -0
- package/types/core/class/html.d.ts +377 -0
- package/types/core/class/menu.d.ts +118 -0
- package/types/core/class/nodeTransform.d.ts +93 -0
- package/types/core/class/offset.d.ts +512 -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 +144 -0
- package/types/core/class/viewer.d.ts +140 -0
- package/types/core/editor.d.ts +606 -0
- package/types/core/section/actives.d.ts +46 -0
- package/types/core/section/constructor.d.ts +748 -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/helper/converter.d.ts +150 -0
- package/types/helper/dom/domCheck.d.ts +182 -0
- package/types/helper/dom/domQuery.d.ts +214 -0
- package/types/helper/dom/domUtils.d.ts +211 -0
- package/types/helper/dom/index.d.ts +9 -0
- package/types/helper/env.d.ts +149 -0
- package/types/helper/index.d.ts +163 -0
- package/types/helper/keyCodeMap.d.ts +110 -0
- package/types/helper/numbers.d.ts +43 -0
- package/types/helper/unicode.d.ts +28 -0
- package/types/index.d.ts +0 -0
- package/{typings/Lang.d.ts → types/langs/_Lang.d.ts} +170 -103
- package/types/langs/ckb.d.ts +384 -0
- package/types/langs/cs.d.ts +384 -0
- package/types/langs/da.d.ts +384 -0
- package/types/langs/de.d.ts +384 -0
- package/types/langs/en.d.ts +384 -0
- package/types/langs/es.d.ts +384 -0
- package/types/langs/fa.d.ts +384 -0
- package/types/langs/fr.d.ts +384 -0
- package/types/langs/he.d.ts +384 -0
- package/types/langs/hu.d.ts +384 -0
- package/types/langs/index.d.ts +48 -0
- package/types/langs/it.d.ts +384 -0
- package/types/langs/ja.d.ts +384 -0
- package/types/langs/ko.d.ts +384 -0
- package/types/langs/lv.d.ts +384 -0
- package/types/langs/nl.d.ts +384 -0
- package/types/langs/pl.d.ts +384 -0
- package/types/langs/pt_br.d.ts +384 -0
- package/types/langs/ro.d.ts +384 -0
- package/types/langs/ru.d.ts +384 -0
- package/types/langs/se.d.ts +384 -0
- package/types/langs/tr.d.ts +384 -0
- package/types/langs/ua.d.ts +384 -0
- package/types/langs/ur.d.ts +384 -0
- package/types/langs/zh_cn.d.ts +384 -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 +231 -0
- package/types/modules/Figure.d.ts +504 -0
- package/types/modules/FileManager.d.ts +202 -0
- package/types/modules/HueSlider.d.ts +136 -0
- package/types/modules/Modal.d.ts +117 -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 +56 -0
- package/types/plugins/command/list_numbered.d.ts +56 -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 +58 -0
- package/types/plugins/dropdown/hr.d.ts +81 -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 +579 -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-global.d.ts +144 -0
- 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/hu.js
ADDED
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
// Hungarian
|
|
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 requires 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: 'hu',
|
|
18
|
+
align: 'Igazítás',
|
|
19
|
+
alignBottom: 'Alulra igazítás',
|
|
20
|
+
alignCenter: 'Középre igazítás',
|
|
21
|
+
alignJustify: 'Sorkizárt',
|
|
22
|
+
alignLeft: 'Balra igazítás',
|
|
23
|
+
alignMiddle: 'Középre igazítás',
|
|
24
|
+
alignRight: 'Jobbra igazítás',
|
|
25
|
+
alignTop: 'Fentről igazítás',
|
|
26
|
+
anchor: 'Könyvjelző',
|
|
27
|
+
asBlock: 'Blokk szintű',
|
|
28
|
+
asInline: 'Sor szintű',
|
|
29
|
+
asLink: 'Linkként',
|
|
30
|
+
audio: 'Hang',
|
|
31
|
+
audioGallery: 'Hanggaléria',
|
|
32
|
+
audio_modal_file: 'Fájl feltöltés',
|
|
33
|
+
audio_modal_title: 'Hang beszúrása',
|
|
34
|
+
audio_modal_url: 'Hang URL',
|
|
35
|
+
autoSize: 'Automatikus méret',
|
|
36
|
+
backgroundColor: 'Háttérszín',
|
|
37
|
+
basic: 'Alapszintű',
|
|
38
|
+
blockStyle: 'Blokk stílus',
|
|
39
|
+
bold: 'Félkövér',
|
|
40
|
+
border: 'Körvonal',
|
|
41
|
+
border_all: 'Összes oldalon körvonal',
|
|
42
|
+
border_inside: 'Belső körvonal',
|
|
43
|
+
border_horizontal: 'Vízszintes körvonal',
|
|
44
|
+
border_vertical: 'Függőleges körvonal',
|
|
45
|
+
border_outside: 'Külső körvonal',
|
|
46
|
+
border_left: 'Bal oldali körvonal',
|
|
47
|
+
border_top: 'Felső körvonal',
|
|
48
|
+
border_right: 'Jobb oldali körvonal',
|
|
49
|
+
border_bottom: 'Alsó körvonal',
|
|
50
|
+
border_none: 'Nincs körvonal',
|
|
51
|
+
bulletedList: 'Pontozott lista',
|
|
52
|
+
cancel: 'Mégse',
|
|
53
|
+
caption: 'Képaláírás beszúrása',
|
|
54
|
+
cellProperties: 'Cella tulajdonságok',
|
|
55
|
+
center: 'Középre',
|
|
56
|
+
close: 'Bezárás',
|
|
57
|
+
codeView: 'Forráskód nézet',
|
|
58
|
+
color: 'Szín',
|
|
59
|
+
colorPicker: 'Színválasztó',
|
|
60
|
+
column: 'Oszlop',
|
|
61
|
+
comment: 'Megjegyzés',
|
|
62
|
+
commentAdd: 'Megjegyzés hozzáadása',
|
|
63
|
+
commentShow: 'Megjegyzés megjelenítése',
|
|
64
|
+
copy: 'Másolás',
|
|
65
|
+
copyFormat: 'Formázás másolása',
|
|
66
|
+
cut: 'Kivágás',
|
|
67
|
+
default: 'Alapértelmezett',
|
|
68
|
+
deleteColumn: 'Oszlop törlése',
|
|
69
|
+
deleteRow: 'Sor törlése',
|
|
70
|
+
dir_ltr: 'Balról jobbra',
|
|
71
|
+
dir_rtl: 'Jobbról balra',
|
|
72
|
+
download: 'Letöltés',
|
|
73
|
+
drag: 'Húzás',
|
|
74
|
+
drawing: 'Rajz',
|
|
75
|
+
drawing_modal_title: 'Rajz beszúrása',
|
|
76
|
+
edit: 'Szerkesztés',
|
|
77
|
+
embed: 'Beágyazás',
|
|
78
|
+
embed_modal_title: 'Beágyazás beszúrása',
|
|
79
|
+
embed_modal_source: 'Beágyazási forrás / URL',
|
|
80
|
+
exportPDF: 'PDF exportálása',
|
|
81
|
+
exportWord: 'Word exportálása',
|
|
82
|
+
find: 'Keresés',
|
|
83
|
+
decrease: 'Csökkentés',
|
|
84
|
+
increase: 'Növelés',
|
|
85
|
+
fileBrowser: 'Fájl böngésző',
|
|
86
|
+
fileGallery: 'Fájlgaléria',
|
|
87
|
+
fileUpload: 'Fájl feltöltés',
|
|
88
|
+
fixedColumnWidth: 'Rögzített oszlopszélesség',
|
|
89
|
+
font: 'Betűtípus',
|
|
90
|
+
fontColor: 'Betűszín',
|
|
91
|
+
fontSize: 'Betűméret',
|
|
92
|
+
formats: 'Formátumok',
|
|
93
|
+
fullScreen: 'Teljes képernyő',
|
|
94
|
+
height: 'Magasság',
|
|
95
|
+
horizontalLine: 'Vízszintes vonal',
|
|
96
|
+
horizontalSplit: 'Vízszintes elválasztás',
|
|
97
|
+
hr_dashed: 'Szaggatott',
|
|
98
|
+
hr_dotted: 'Pontozott',
|
|
99
|
+
hr_solid: 'Folyamatos',
|
|
100
|
+
id: 'Azonosító',
|
|
101
|
+
image: 'Kép',
|
|
102
|
+
imageGallery: 'Képgalléria',
|
|
103
|
+
image_modal_altText: 'Alternatív szöveg',
|
|
104
|
+
image_modal_file: 'Fájl feltöltés',
|
|
105
|
+
image_modal_title: 'Kép beszúrása',
|
|
106
|
+
image_modal_url: 'Képhivatkozás',
|
|
107
|
+
importWord: 'Word importálása',
|
|
108
|
+
indent: 'Behúzás növelése',
|
|
109
|
+
inlineStyle: 'Inline stílus',
|
|
110
|
+
insertColumnAfter: 'Oszlop beszúrása utána',
|
|
111
|
+
insertColumnBefore: 'Oszlop beszúrása előtt',
|
|
112
|
+
insertRowAbove: 'Sor beszúrása fölötte',
|
|
113
|
+
insertRowBelow: 'Sor beszúrása alatta',
|
|
114
|
+
insertLine: 'Vonal beszúrása',
|
|
115
|
+
italic: 'Dőlt',
|
|
116
|
+
layout: 'Elrendezés',
|
|
117
|
+
left: 'Balra',
|
|
118
|
+
lineHeight: 'Sormagasság',
|
|
119
|
+
link: 'Link',
|
|
120
|
+
link_modal_bookmark: 'Könyvjelző',
|
|
121
|
+
link_modal_downloadLinkCheck: 'Letöltési link',
|
|
122
|
+
link_modal_newWindowCheck: 'Új ablakban nyitás',
|
|
123
|
+
link_modal_text: 'Megjelenített szöveg',
|
|
124
|
+
link_modal_title: 'Link beszúrása',
|
|
125
|
+
link_modal_url: 'Link URL',
|
|
126
|
+
link_modal_relAttribute: 'Rel attribútum',
|
|
127
|
+
list: 'Lista',
|
|
128
|
+
math: 'Matematika',
|
|
129
|
+
math_modal_fontSizeLabel: 'Betűméret',
|
|
130
|
+
math_modal_inputLabel: 'Matematikai jelölések',
|
|
131
|
+
math_modal_previewLabel: 'Előnézet',
|
|
132
|
+
math_modal_title: 'Matematika',
|
|
133
|
+
maxSize: 'Maximális méret',
|
|
134
|
+
mediaGallery: 'Média galéria',
|
|
135
|
+
mention: 'Említés',
|
|
136
|
+
menu_bordered: 'Körvonalas',
|
|
137
|
+
menu_code: 'Kód',
|
|
138
|
+
menu_neon: 'Neon',
|
|
139
|
+
menu_shadow: 'Árnyék',
|
|
140
|
+
menu_spaced: 'Szellősebb',
|
|
141
|
+
menu_translucent: 'Áttetsző',
|
|
142
|
+
mergeCells: 'Cellák egyesítése',
|
|
143
|
+
minSize: 'Minimális méret',
|
|
144
|
+
mirrorHorizontal: 'Vízszintes tükrözés',
|
|
145
|
+
mirrorVertical: 'Függőleges tükrözés',
|
|
146
|
+
newDocument: 'Új dokumentum',
|
|
147
|
+
numberedList: 'Számozott lista',
|
|
148
|
+
outdent: 'Behúzás csökkentése',
|
|
149
|
+
pageBreak: 'Oldaltörés',
|
|
150
|
+
pageDown: 'Oldal lefelé',
|
|
151
|
+
pageNumber: 'Oldalszám',
|
|
152
|
+
pageUp: 'Oldal felfelé',
|
|
153
|
+
paragraphStyle: 'Bekezdés stílus',
|
|
154
|
+
preview: 'Előnézet',
|
|
155
|
+
print: 'Nyomtatás',
|
|
156
|
+
proportion: 'Méretkorlátok megtartása',
|
|
157
|
+
ratio: 'Képarány',
|
|
158
|
+
redo: 'Újra',
|
|
159
|
+
remove: 'Eltávolítás',
|
|
160
|
+
removeFormat: 'Formázás törlése',
|
|
161
|
+
replace: 'Csere',
|
|
162
|
+
replaceAll: 'Összes csere',
|
|
163
|
+
resize100: 'Zoom 100%',
|
|
164
|
+
resize25: 'Zoom 25%',
|
|
165
|
+
resize50: 'Zoom 50%',
|
|
166
|
+
resize75: 'Zoom 75%',
|
|
167
|
+
resize: 'Átméretezés',
|
|
168
|
+
revert: 'Visszaállítás',
|
|
169
|
+
revisionHistory: 'Módosítási előzmények',
|
|
170
|
+
right: 'Jobbra',
|
|
171
|
+
rotateLeft: 'Balra forgatás',
|
|
172
|
+
rotateRight: 'Jobbra forgatás',
|
|
173
|
+
row: 'Sor',
|
|
174
|
+
save: 'Mentés',
|
|
175
|
+
search: 'Keresés',
|
|
176
|
+
selectAll: 'Mindet kijelöl',
|
|
177
|
+
showBlocks: 'Blokkok megjelenítése',
|
|
178
|
+
size: 'Méret',
|
|
179
|
+
splitCells: 'Cellák szétválasztása',
|
|
180
|
+
strike: 'Áthúzott',
|
|
181
|
+
submitButton: 'Küldés',
|
|
182
|
+
subscript: 'Alsó index',
|
|
183
|
+
superscript: 'Felső index',
|
|
184
|
+
table: 'Táblázat',
|
|
185
|
+
tableHeader: 'Táblázat fejléc',
|
|
186
|
+
tableProperties: 'Táblázat tulajdonságok',
|
|
187
|
+
tags: 'Címkék',
|
|
188
|
+
tag_blockquote: 'Idézet',
|
|
189
|
+
tag_div: 'Normál (DIV)',
|
|
190
|
+
tag_h: 'Fejléc',
|
|
191
|
+
tag_p: 'Bekezdés',
|
|
192
|
+
tag_pre: 'Kód',
|
|
193
|
+
template: 'Minta',
|
|
194
|
+
textStyle: 'Szövegstílus',
|
|
195
|
+
title: 'Cím',
|
|
196
|
+
underline: 'Aláhúzott',
|
|
197
|
+
undo: 'Visszavonás',
|
|
198
|
+
unlink: 'Link eltávolítása',
|
|
199
|
+
verticalSplit: 'Függőleges elválasztás',
|
|
200
|
+
video: 'Videó',
|
|
201
|
+
videoGallery: 'Videó galéria',
|
|
202
|
+
video_modal_file: 'Fájl feltöltés',
|
|
203
|
+
video_modal_title: 'Videó beszúrása',
|
|
204
|
+
video_modal_url: 'Beágyazható URL, YouTube/Vimeo',
|
|
205
|
+
width: 'Szélesség'
|
|
206
|
+
};
|
|
207
|
+
|
|
208
|
+
if (typeof noGlobal === 'undefined') {
|
|
209
|
+
if (!window.SUNEDITOR_LANG) {
|
|
210
|
+
Object.defineProperty(window, 'SUNEDITOR_LANG', {
|
|
211
|
+
enumerable: true,
|
|
212
|
+
writable: false,
|
|
213
|
+
configurable: false,
|
|
214
|
+
value: {}
|
|
215
|
+
});
|
|
216
|
+
}
|
|
217
|
+
Object.defineProperty(window.SUNEDITOR_LANG, 'hu', {
|
|
218
|
+
enumerable: true,
|
|
219
|
+
writable: true,
|
|
220
|
+
configurable: true,
|
|
221
|
+
value: lang
|
|
222
|
+
});
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
return lang;
|
|
226
|
+
});
|
package/src/langs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ import en from './en';
|
|
|
6
6
|
import es from './es';
|
|
7
7
|
import fr from './fr';
|
|
8
8
|
import he from './he';
|
|
9
|
+
import hu from './hu';
|
|
9
10
|
import it from './it';
|
|
10
11
|
import ja from './ja';
|
|
11
12
|
import ko from './ko';
|
|
@@ -20,5 +21,5 @@ import ua from './ua';
|
|
|
20
21
|
import ur from './ur';
|
|
21
22
|
import zh_cn from './zh_cn';
|
|
22
23
|
|
|
23
|
-
export { ckb, cs, da, de, en, es, fr, he, it, ja, ko, lv, nl, pl, pt_br, ro, ru, se, ua, ur, zh_cn };
|
|
24
|
-
export default { ckb, cs, da, de, en, es, fr, he, it, ja, ko, lv, nl, pl, pt_br, ro, ru, se, ua, ur, zh_cn };
|
|
24
|
+
export { ckb, cs, da, de, en, es, fr, he, hu, it, ja, ko, lv, nl, pl, pt_br, ro, ru, se, ua, ur, zh_cn };
|
|
25
|
+
export default { ckb, cs, da, de, en, es, fr, he, hu, it, ja, ko, lv, nl, pl, pt_br, ro, ru, se, ua, ur, zh_cn };
|
package/src/langs/it.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
// Italy
|
|
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: 'it',
|
|
17
18
|
align: 'Allinea',
|
|
19
|
+
alignBottom: 'Allinea in basso',
|
|
18
20
|
alignCenter: 'Allinea al centro',
|
|
19
21
|
alignJustify: 'Giustifica testo',
|
|
20
22
|
alignLeft: 'Allinea a sinistra',
|
|
23
|
+
alignMiddle: 'Allinea al centro',
|
|
21
24
|
alignRight: 'Allinea a destra',
|
|
25
|
+
alignTop: 'Allinea in alto',
|
|
26
|
+
anchor: 'Ancora',
|
|
27
|
+
asBlock: 'Come blocco',
|
|
28
|
+
asInline: 'Come in linea',
|
|
29
|
+
asLink: 'Come collegamento',
|
|
22
30
|
audio: 'Audio',
|
|
31
|
+
audioGallery: 'Galleria audio',
|
|
23
32
|
audio_modal_file: 'Seleziona da file',
|
|
24
33
|
audio_modal_title: 'Inserisci audio',
|
|
25
34
|
audio_modal_url: 'Indirizzo audio',
|
|
26
35
|
autoSize: 'Ridimensione automatica',
|
|
27
36
|
backgroundColor: 'Colore sottolineatura',
|
|
28
37
|
basic: 'Da impostazione',
|
|
38
|
+
blockStyle: 'Stile blocco',
|
|
29
39
|
bold: 'Grassetto',
|
|
40
|
+
border: 'Bordo',
|
|
41
|
+
border_all: 'Bordo tutto',
|
|
42
|
+
border_inside: 'Bordo interno',
|
|
43
|
+
border_horizontal: 'Bordo interno',
|
|
44
|
+
border_vertical: 'Bordo verticale',
|
|
45
|
+
border_outside: 'Bordo esterno',
|
|
46
|
+
border_left: 'Bordo sinistro',
|
|
47
|
+
border_top: 'Bordo superiore',
|
|
48
|
+
border_right: 'Bordo destro',
|
|
49
|
+
border_bottom: 'Bordo inferiore',
|
|
50
|
+
border_none: 'Nessuno bordo',
|
|
30
51
|
bulletedList: 'Elenco puntato',
|
|
52
|
+
cancel: 'Annulla',
|
|
31
53
|
caption: 'Inserisci didascalia',
|
|
54
|
+
cellProperties: 'Proprietà cella',
|
|
32
55
|
center: 'Centrato',
|
|
33
56
|
close: 'Chiudi',
|
|
34
57
|
codeView: 'Visualizza codice',
|
|
58
|
+
color: 'Colore',
|
|
59
|
+
colorPicker: 'Selettore colore',
|
|
60
|
+
column: 'Colonna',
|
|
61
|
+
comment: 'Commenti',
|
|
62
|
+
commentAdd: 'Aggiungi commento',
|
|
63
|
+
commentShow: 'Mostra commenti',
|
|
64
|
+
copy: 'Copia',
|
|
65
|
+
copyFormat: 'Colora Formattazione',
|
|
66
|
+
cut: 'Taglia',
|
|
35
67
|
default: 'Predefinita',
|
|
36
68
|
deleteColumn: 'Cancella colonna',
|
|
37
69
|
deleteRow: 'Cancella riga',
|
|
38
70
|
dir_ltr: 'Da sinistra a destra',
|
|
39
71
|
dir_rtl: 'Da destra a sinistra',
|
|
72
|
+
download: 'Scarica',
|
|
73
|
+
drag: 'Scarica',
|
|
74
|
+
drawing: 'Disegno',
|
|
75
|
+
drawing_modal_title: 'Disegno',
|
|
40
76
|
edit: 'Modifica',
|
|
77
|
+
embed: 'Incorpora',
|
|
78
|
+
embed_modal_title: 'Incorpora',
|
|
79
|
+
embed_modal_source: 'Incorpora origine / URL',
|
|
80
|
+
exportPDF: 'Esporta in PDF',
|
|
81
|
+
exportWord: 'Esporta in Word',
|
|
82
|
+
find: 'Trova',
|
|
83
|
+
decrease: 'Diminuisci',
|
|
84
|
+
increase: 'Aumenta',
|
|
85
|
+
fileBrowser: 'Browser file',
|
|
86
|
+
fileGallery: 'Galleria file',
|
|
87
|
+
fileUpload: 'Caricamento file',
|
|
41
88
|
fixedColumnWidth: 'Larghezza delle colonne fissa',
|
|
42
89
|
font: 'Font',
|
|
43
90
|
fontColor: 'Colore testo',
|
|
@@ -50,17 +97,21 @@
|
|
|
50
97
|
hr_dashed: 'Trattini',
|
|
51
98
|
hr_dotted: 'Puntini',
|
|
52
99
|
hr_solid: 'Linea continua',
|
|
100
|
+
id: 'ID',
|
|
53
101
|
image: 'Immagine',
|
|
54
102
|
imageGallery: 'Galleria di immagini',
|
|
55
103
|
image_modal_altText: 'Testo alternativo (ALT)',
|
|
56
104
|
image_modal_file: 'Seleziona da file',
|
|
57
105
|
image_modal_title: 'Inserisci immagine',
|
|
58
106
|
image_modal_url: 'Indirizzo immagine',
|
|
107
|
+
importWord: 'Importa da Word',
|
|
59
108
|
indent: 'Aumenta rientro',
|
|
109
|
+
inlineStyle: 'Stile in linea',
|
|
60
110
|
insertColumnAfter: 'Inserisci colonna dopo',
|
|
61
111
|
insertColumnBefore: 'Inserisci colonna prima',
|
|
62
112
|
insertRowAbove: 'Inserisci riga sopra',
|
|
63
113
|
insertRowBelow: 'Inserisci riga sotto',
|
|
114
|
+
insertLine: 'Inserisci riga',
|
|
64
115
|
italic: 'Corsivo',
|
|
65
116
|
layout: 'Modello',
|
|
66
117
|
left: 'Sinistra',
|
|
@@ -72,6 +123,7 @@
|
|
|
72
123
|
link_modal_text: 'Testo da visualizzare',
|
|
73
124
|
link_modal_title: 'Inserisci un link',
|
|
74
125
|
link_modal_url: 'Indirizzo',
|
|
126
|
+
link_modal_relAttribute: 'Attributo rel',
|
|
75
127
|
list: 'Elenco',
|
|
76
128
|
math: 'Formula matematica',
|
|
77
129
|
math_modal_fontSizeLabel: 'Grandezza testo',
|
|
@@ -79,6 +131,7 @@
|
|
|
79
131
|
math_modal_previewLabel: 'Anteprima',
|
|
80
132
|
math_modal_title: 'Matematica',
|
|
81
133
|
maxSize: 'Dimensione massima',
|
|
134
|
+
mediaGallery: 'Galleria multimediale',
|
|
82
135
|
mention: 'Menzione',
|
|
83
136
|
menu_bordered: 'Bordato',
|
|
84
137
|
menu_code: 'Codice',
|
|
@@ -90,8 +143,13 @@
|
|
|
90
143
|
minSize: 'Dimensione minima',
|
|
91
144
|
mirrorHorizontal: 'Capovolgi orizzontalmente',
|
|
92
145
|
mirrorVertical: 'Capovolgi verticalmente',
|
|
146
|
+
newDocument: 'Nuovo documento',
|
|
93
147
|
numberedList: 'Elenco numerato',
|
|
94
148
|
outdent: 'Riduci rientro',
|
|
149
|
+
pageBreak: 'Interruzione di pagina',
|
|
150
|
+
pageDown: 'Pagina giù',
|
|
151
|
+
pageNumber: 'Numero di pagina',
|
|
152
|
+
pageUp: 'Pagina su',
|
|
95
153
|
paragraphStyle: 'Stile paragrafo',
|
|
96
154
|
preview: 'Anteprima',
|
|
97
155
|
print: 'Stampa',
|
|
@@ -100,17 +158,22 @@
|
|
|
100
158
|
redo: 'Ripristina',
|
|
101
159
|
remove: 'Rimuovi',
|
|
102
160
|
removeFormat: 'Rimuovi formattazione',
|
|
161
|
+
replace: 'Sostituisci',
|
|
162
|
+
replaceAll: 'Sostituisci tutto',
|
|
103
163
|
resize100: 'Ridimensiona 100%',
|
|
104
164
|
resize25: 'Ridimensiona 25%',
|
|
105
165
|
resize50: 'Ridimensiona 50%',
|
|
106
166
|
resize75: 'Ridimensiona 75%',
|
|
107
167
|
resize: 'Ridimensiona',
|
|
108
168
|
revert: 'Annulla',
|
|
169
|
+
revisionHistory: 'Cronologia revisioni',
|
|
109
170
|
right: 'Destra',
|
|
110
171
|
rotateLeft: 'Ruota a sinistra',
|
|
111
172
|
rotateRight: 'Ruota a destra',
|
|
173
|
+
row: 'Riga',
|
|
112
174
|
save: 'Salva',
|
|
113
175
|
search: 'Ricerca',
|
|
176
|
+
selectAll: 'Seleziona tutto',
|
|
114
177
|
showBlocks: 'Visualizza blocchi',
|
|
115
178
|
size: 'Dimensioni',
|
|
116
179
|
splitCells: 'Dividi celle',
|
|
@@ -120,6 +183,7 @@
|
|
|
120
183
|
superscript: 'Pedice',
|
|
121
184
|
table: 'Tabella',
|
|
122
185
|
tableHeader: 'Intestazione tabella',
|
|
186
|
+
tableProperties: 'Proprietà tabella',
|
|
123
187
|
tags: 'tag',
|
|
124
188
|
tag_blockquote: 'Citazione',
|
|
125
189
|
tag_div: 'Normale (DIV)',
|
|
@@ -134,6 +198,7 @@
|
|
|
134
198
|
unlink: 'Elimina link',
|
|
135
199
|
verticalSplit: 'Separa verticalmente',
|
|
136
200
|
video: 'Video',
|
|
201
|
+
videoGallery: 'Galleria video',
|
|
137
202
|
video_modal_file: 'Seleziona da file',
|
|
138
203
|
video_modal_title: 'Inserisci video',
|
|
139
204
|
video_modal_url: 'Indirizzo video di embed, YouTube/Vimeo',
|
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,12 +192,13 @@
|
|
|
128
192
|
tag_pre: 'コード',
|
|
129
193
|
template: 'テンプレート',
|
|
130
194
|
textStyle: 'テキストスタイル',
|
|
131
|
-
title: '
|
|
195
|
+
title: 'タイトル',
|
|
132
196
|
underline: '下線',
|
|
133
197
|
undo: '元に戻す',
|
|
134
198
|
unlink: 'リンク解除',
|
|
135
199
|
verticalSplit: '垂直分割',
|
|
136
200
|
video: '動画',
|
|
201
|
+
videoGallery: 'ビデオ ギャラリー',
|
|
137
202
|
video_modal_file: 'ファイルの選択',
|
|
138
203
|
video_modal_title: '動画を挿入',
|
|
139
204
|
video_modal_url: 'メディア埋め込みアドレス, YouTube/Vimeo',
|