ckeditor5 29.2.0 → 32.0.0
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/CHANGELOG.md +653 -16
- package/LICENSE.md +2 -2
- package/README.md +6 -6
- package/build/ckeditor5-dll.js +3 -3
- package/build/ckeditor5-dll.manifest.json +237 -222
- package/build/translations/ar.js +1 -1
- package/build/translations/bs.js +1 -0
- package/build/translations/cs.js +1 -1
- package/build/translations/da.js +1 -1
- package/build/translations/el.js +1 -1
- package/build/translations/es.js +1 -1
- package/build/translations/fa.js +1 -1
- package/build/translations/he.js +1 -1
- package/build/translations/id.js +1 -1
- package/build/translations/ko.js +1 -1
- package/build/translations/ne.js +1 -1
- package/build/translations/nl.js +1 -1
- package/build/translations/no.js +1 -1
- package/build/translations/pt-br.js +1 -1
- package/build/translations/sk.js +1 -1
- package/build/translations/sr-latn.js +1 -1
- package/build/translations/sr.js +1 -1
- package/build/translations/tk.js +1 -1
- package/build/translations/ug.js +1 -1
- package/build/translations/uz.js +1 -0
- package/build/translations/zh-cn.js +1 -1
- package/build/translations/zh.js +1 -1
- package/package.json +14 -14
- package/src/clipboard.js +1 -1
- package/src/core.js +1 -1
- package/src/engine.js +1 -1
- package/src/enter.js +1 -1
- package/src/paragraph.js +1 -1
- package/src/select-all.js +1 -1
- package/src/typing.js +1 -1
- package/src/ui.js +1 -1
- package/src/undo.js +1 -1
- package/src/upload.js +1 -1
- package/src/utils.js +1 -1
- package/src/widget.js +1 -1
|
@@ -5,283 +5,298 @@
|
|
|
5
5
|
"id": "./src/clipboard.js",
|
|
6
6
|
"buildMeta": {
|
|
7
7
|
"exportsType": "namespace",
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
"sideEffectFree": true
|
|
9
|
+
},
|
|
10
|
+
"exports": [
|
|
11
|
+
"Clipboard",
|
|
12
|
+
"ClipboardPipeline",
|
|
13
|
+
"DragDrop",
|
|
14
|
+
"PastePlainText"
|
|
15
|
+
]
|
|
15
16
|
},
|
|
16
17
|
"./core.js": {
|
|
17
18
|
"id": "./src/core.js",
|
|
18
19
|
"buildMeta": {
|
|
19
20
|
"exportsType": "namespace",
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
21
|
+
"sideEffectFree": true
|
|
22
|
+
},
|
|
23
|
+
"exports": [
|
|
24
|
+
"Command",
|
|
25
|
+
"Context",
|
|
26
|
+
"ContextPlugin",
|
|
27
|
+
"DataApiMixin",
|
|
28
|
+
"Editor",
|
|
29
|
+
"EditorUI",
|
|
30
|
+
"ElementApiMixin",
|
|
31
|
+
"MultiCommand",
|
|
32
|
+
"PendingActions",
|
|
33
|
+
"Plugin",
|
|
34
|
+
"attachToForm",
|
|
35
|
+
"icons",
|
|
36
|
+
"secureSourceElement"
|
|
37
|
+
]
|
|
36
38
|
},
|
|
37
39
|
"./engine.js": {
|
|
38
40
|
"id": "./src/engine.js",
|
|
39
41
|
"buildMeta": {
|
|
40
42
|
"exportsType": "namespace",
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
43
|
+
"sideEffectFree": true
|
|
44
|
+
},
|
|
45
|
+
"exports": [
|
|
46
|
+
"ClickObserver",
|
|
47
|
+
"Conversion",
|
|
48
|
+
"DataController",
|
|
49
|
+
"DocumentSelection",
|
|
50
|
+
"DomConverter",
|
|
51
|
+
"DomEventData",
|
|
52
|
+
"DomEventObserver",
|
|
53
|
+
"DowncastWriter",
|
|
54
|
+
"EditingController",
|
|
55
|
+
"Element",
|
|
56
|
+
"HtmlDataProcessor",
|
|
57
|
+
"InsertOperation",
|
|
58
|
+
"LivePosition",
|
|
59
|
+
"LiveRange",
|
|
60
|
+
"MarkerOperation",
|
|
61
|
+
"Matcher",
|
|
62
|
+
"Model",
|
|
63
|
+
"MouseObserver",
|
|
64
|
+
"Observer",
|
|
65
|
+
"OperationFactory",
|
|
66
|
+
"Range",
|
|
67
|
+
"Renderer",
|
|
68
|
+
"StylesProcessor",
|
|
69
|
+
"TreeWalker",
|
|
70
|
+
"UpcastWriter",
|
|
71
|
+
"ViewDocument",
|
|
72
|
+
"addBackgroundRules",
|
|
73
|
+
"addBorderRules",
|
|
74
|
+
"addMarginRules",
|
|
75
|
+
"addPaddingRules",
|
|
76
|
+
"disablePlaceholder",
|
|
77
|
+
"enablePlaceholder",
|
|
78
|
+
"getBoxSidesShorthandValue",
|
|
79
|
+
"getBoxSidesValueReducer",
|
|
80
|
+
"getBoxSidesValues",
|
|
81
|
+
"getFillerOffset",
|
|
82
|
+
"getPositionShorthandNormalizer",
|
|
83
|
+
"getShorthandValues",
|
|
84
|
+
"hidePlaceholder",
|
|
85
|
+
"isAttachment",
|
|
86
|
+
"isColor",
|
|
87
|
+
"isLength",
|
|
88
|
+
"isLineStyle",
|
|
89
|
+
"isPercentage",
|
|
90
|
+
"isPosition",
|
|
91
|
+
"isRepeat",
|
|
92
|
+
"isURL",
|
|
93
|
+
"needsPlaceholder",
|
|
94
|
+
"showPlaceholder",
|
|
95
|
+
"transformSets"
|
|
96
|
+
]
|
|
94
97
|
},
|
|
95
98
|
"./enter.js": {
|
|
96
99
|
"id": "./src/enter.js",
|
|
97
100
|
"buildMeta": {
|
|
98
101
|
"exportsType": "namespace",
|
|
99
|
-
"
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
"sideEffectFree": true
|
|
103
|
+
},
|
|
104
|
+
"exports": [
|
|
105
|
+
"Enter",
|
|
106
|
+
"ShiftEnter"
|
|
107
|
+
]
|
|
104
108
|
},
|
|
105
109
|
"./paragraph.js": {
|
|
106
110
|
"id": "./src/paragraph.js",
|
|
107
111
|
"buildMeta": {
|
|
108
112
|
"exportsType": "namespace",
|
|
109
|
-
"
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
113
|
+
"sideEffectFree": true
|
|
114
|
+
},
|
|
115
|
+
"exports": [
|
|
116
|
+
"Paragraph",
|
|
117
|
+
"ParagraphButtonUI"
|
|
118
|
+
]
|
|
114
119
|
},
|
|
115
120
|
"./select-all.js": {
|
|
116
121
|
"id": "./src/select-all.js",
|
|
117
122
|
"buildMeta": {
|
|
118
123
|
"exportsType": "namespace",
|
|
119
|
-
"
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
124
|
+
"sideEffectFree": true
|
|
125
|
+
},
|
|
126
|
+
"exports": [
|
|
127
|
+
"SelectAll",
|
|
128
|
+
"SelectAllEditing",
|
|
129
|
+
"SelectAllUI"
|
|
130
|
+
]
|
|
125
131
|
},
|
|
126
132
|
"./typing.js": {
|
|
127
133
|
"id": "./src/typing.js",
|
|
128
134
|
"buildMeta": {
|
|
129
135
|
"exportsType": "namespace",
|
|
130
|
-
"
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
136
|
+
"sideEffectFree": true
|
|
137
|
+
},
|
|
138
|
+
"exports": [
|
|
139
|
+
"Delete",
|
|
140
|
+
"Input",
|
|
141
|
+
"TextTransformation",
|
|
142
|
+
"TextWatcher",
|
|
143
|
+
"TwoStepCaretMovement",
|
|
144
|
+
"Typing",
|
|
145
|
+
"findAttributeRange",
|
|
146
|
+
"getLastTextLine",
|
|
147
|
+
"inlineHighlight",
|
|
148
|
+
"isNonTypingKeystroke"
|
|
149
|
+
]
|
|
143
150
|
},
|
|
144
151
|
"./ui.js": {
|
|
145
152
|
"id": "./src/ui.js",
|
|
146
153
|
"buildMeta": {
|
|
147
154
|
"exportsType": "namespace",
|
|
148
|
-
"
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
155
|
+
"sideEffectFree": true
|
|
156
|
+
},
|
|
157
|
+
"exports": [
|
|
158
|
+
"BalloonPanelView",
|
|
159
|
+
"BalloonToolbar",
|
|
160
|
+
"BlockToolbar",
|
|
161
|
+
"BodyCollection",
|
|
162
|
+
"BoxedEditorUIView",
|
|
163
|
+
"ButtonView",
|
|
164
|
+
"ColorGridView",
|
|
165
|
+
"ColorTileView",
|
|
166
|
+
"ContextualBalloon",
|
|
167
|
+
"DropdownButtonView",
|
|
168
|
+
"EditorUIView",
|
|
169
|
+
"FocusCycler",
|
|
170
|
+
"FormHeaderView",
|
|
171
|
+
"IconView",
|
|
172
|
+
"IframeView",
|
|
173
|
+
"InlineEditableUIView",
|
|
174
|
+
"InputNumberView",
|
|
175
|
+
"InputTextView",
|
|
176
|
+
"InputView",
|
|
177
|
+
"LabelView",
|
|
178
|
+
"LabeledFieldView",
|
|
179
|
+
"ListItemView",
|
|
180
|
+
"ListView",
|
|
181
|
+
"Model",
|
|
182
|
+
"Notification",
|
|
183
|
+
"SplitButtonView",
|
|
184
|
+
"StickyPanelView",
|
|
185
|
+
"SwitchButtonView",
|
|
186
|
+
"Template",
|
|
187
|
+
"ToolbarSeparatorView",
|
|
188
|
+
"ToolbarView",
|
|
189
|
+
"TooltipView",
|
|
190
|
+
"View",
|
|
191
|
+
"ViewCollection",
|
|
192
|
+
"addListToDropdown",
|
|
193
|
+
"addToolbarToDropdown",
|
|
194
|
+
"clickOutsideHandler",
|
|
195
|
+
"createDropdown",
|
|
196
|
+
"createLabeledDropdown",
|
|
197
|
+
"createLabeledInputNumber",
|
|
198
|
+
"createLabeledInputText",
|
|
199
|
+
"enableToolbarKeyboardFocus",
|
|
200
|
+
"getLocalizedColorOptions",
|
|
201
|
+
"injectCssTransitionDisabler",
|
|
202
|
+
"normalizeColorOptions",
|
|
203
|
+
"normalizeSingleColorDefinition",
|
|
204
|
+
"normalizeToolbarConfig",
|
|
205
|
+
"submitHandler"
|
|
206
|
+
]
|
|
196
207
|
},
|
|
197
208
|
"./undo.js": {
|
|
198
209
|
"id": "./src/undo.js",
|
|
199
210
|
"buildMeta": {
|
|
200
211
|
"exportsType": "namespace",
|
|
201
|
-
"
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
212
|
+
"sideEffectFree": true
|
|
213
|
+
},
|
|
214
|
+
"exports": [
|
|
215
|
+
"Undo",
|
|
216
|
+
"UndoEditing",
|
|
217
|
+
"UndoUi"
|
|
218
|
+
]
|
|
207
219
|
},
|
|
208
220
|
"./upload.js": {
|
|
209
221
|
"id": "./src/upload.js",
|
|
210
222
|
"buildMeta": {
|
|
211
223
|
"exportsType": "namespace",
|
|
212
|
-
"
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
224
|
+
"sideEffectFree": true
|
|
225
|
+
},
|
|
226
|
+
"exports": [
|
|
227
|
+
"Base64UploadAdapter",
|
|
228
|
+
"FileDialogButtonView",
|
|
229
|
+
"FileRepository",
|
|
230
|
+
"SimpleUploadAdapter"
|
|
231
|
+
]
|
|
219
232
|
},
|
|
220
233
|
"./utils.js": {
|
|
221
234
|
"id": "./src/utils.js",
|
|
222
235
|
"buildMeta": {
|
|
223
236
|
"exportsType": "namespace",
|
|
224
|
-
"
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
237
|
+
"sideEffectFree": true
|
|
238
|
+
},
|
|
239
|
+
"exports": [
|
|
240
|
+
"CKEditorError",
|
|
241
|
+
"Collection",
|
|
242
|
+
"DomEmitterMixin",
|
|
243
|
+
"ElementReplacer",
|
|
244
|
+
"EmitterMixin",
|
|
245
|
+
"FocusTracker",
|
|
246
|
+
"KeystrokeHandler",
|
|
247
|
+
"Locale",
|
|
248
|
+
"ObservableMixin",
|
|
249
|
+
"Rect",
|
|
250
|
+
"ResizeObserver",
|
|
251
|
+
"createElement",
|
|
252
|
+
"diff",
|
|
253
|
+
"env",
|
|
254
|
+
"first",
|
|
255
|
+
"getCode",
|
|
256
|
+
"getDataFromElement",
|
|
257
|
+
"getEnvKeystrokeText",
|
|
258
|
+
"getLanguageDirection",
|
|
259
|
+
"getLocalizedArrowKeyCodeDirection",
|
|
260
|
+
"global",
|
|
261
|
+
"isArrowKeyCode",
|
|
262
|
+
"isForwardArrowKeyCode",
|
|
263
|
+
"isVisible",
|
|
264
|
+
"keyCodes",
|
|
265
|
+
"logError",
|
|
266
|
+
"logWarning",
|
|
267
|
+
"mix",
|
|
268
|
+
"parseKeystroke",
|
|
269
|
+
"priorities",
|
|
270
|
+
"setDataInElement",
|
|
271
|
+
"toArray",
|
|
272
|
+
"toMap",
|
|
273
|
+
"toUnit",
|
|
274
|
+
"uid",
|
|
275
|
+
"version"
|
|
276
|
+
]
|
|
262
277
|
},
|
|
263
278
|
"./widget.js": {
|
|
264
279
|
"id": "./src/widget.js",
|
|
265
280
|
"buildMeta": {
|
|
266
281
|
"exportsType": "namespace",
|
|
267
|
-
"
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
282
|
+
"sideEffectFree": true
|
|
283
|
+
},
|
|
284
|
+
"exports": [
|
|
285
|
+
"WIDGET_CLASS_NAME",
|
|
286
|
+
"WIDGET_SELECTED_CLASS_NAME",
|
|
287
|
+
"Widget",
|
|
288
|
+
"WidgetResize",
|
|
289
|
+
"WidgetToolbarRepository",
|
|
290
|
+
"WidgetTypeAround",
|
|
291
|
+
"findOptimalInsertionRange",
|
|
292
|
+
"getLabel",
|
|
293
|
+
"isWidget",
|
|
294
|
+
"setHighlightHandling",
|
|
295
|
+
"setLabel",
|
|
296
|
+
"toWidget",
|
|
297
|
+
"toWidgetEditable",
|
|
298
|
+
"viewToModelPositionOutsideModelElement"
|
|
299
|
+
]
|
|
285
300
|
}
|
|
286
301
|
}
|
|
287
302
|
}
|
package/build/translations/ar.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e){const o=e.ar=e.ar||{};o.dictionary=Object.assign(o.dictionary||{},{"%0 of %1":"",Aquamarine:"",Black:"",Blue:"",Cancel:"إلغاء","Dim grey":"","Dropdown toolbar":"","Edit block":"","Editor toolbar":"",Green:"",Grey:"","Light blue":"","Light green":"","Light grey":"",Next:"",Orange:"",Previous:"",Purple:"",Red:"",Redo:"إعادة","Remove color":"","Restore default":"","Rich Text Editor":"معالج نصوص","Rich Text Editor, %0":"معالج نصوص، 0
|
|
1
|
+
!function(e){const o=e.ar=e.ar||{};o.dictionary=Object.assign(o.dictionary||{},{"%0 of %1":"",Aquamarine:"",Black:"",Blue:"",Cancel:"إلغاء","Dim grey":"","Dropdown toolbar":"","Edit block":"","Editor toolbar":"",Green:"",Grey:"","Light blue":"","Light green":"","Light grey":"",Next:"",Orange:"",Previous:"",Purple:"",Red:"",Redo:"إعادة","Remove color":"","Restore default":"","Rich Text Editor":"معالج نصوص","Rich Text Editor, %0":"معالج نصوص، %0",Save:"حفظ","Show more items":"",Turquoise:"",Undo:"تراجع","Upload in progress":"جاري الرفع",White:"",Yellow:""}),o.getPluralForm=function(e){return 0==e?0:1==e?1:2==e?2:e%100>=3&&e%100<=10?3:e%100>=11&&e%100<=99?4:5}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(o){const i=o.bs=o.bs||{};i.dictionary=Object.assign(i.dictionary||{},{"%0 of %1":"%0 od %1",Cancel:"Poništi","Remove color":"Ukloni boju","Restore default":"Vrati na zadano",Save:"Sačuvaj","Show more items":"Prikaži više stavki"}),i.getPluralForm=function(o){return o%10==1&&o%100!=11?0:o%10>=2&&o%10<=4&&(o%100<10||o%100>=20)?1:2}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
package/build/translations/cs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(
|
|
1
|
+
!function(o){const e=o.cs=o.cs||{};e.dictionary=Object.assign(e.dictionary||{},{"%0 of %1":"%0 z %1",Aquamarine:"Akvamarínová",Black:"Černá",Blue:"Modrá",Cancel:"Zrušit","Dim grey":"Tmavě šedá","Dropdown toolbar":"Rozbalovací panel nástrojů","Edit block":"Upravit blok","Editor toolbar":"Panel nástrojů editoru",Green:"Zelená",Grey:"Šedá","Insert paragraph after block":"Vložte odstavec za blok","Insert paragraph before block":"Vložte odstavec před blok","Light blue":"Světle modrá","Light green":"Světle zelená","Light grey":"Světle šedá",Next:"Další",Orange:"Oranžová",Previous:"Předchozí",Purple:"Fialová",Red:"Červená",Redo:"Znovu","Remove color":"Odstranit barvu","Restore default":"Obnovit výchozí","Rich Text Editor":"Textový editor","Rich Text Editor, %0":"Textový editor, %0",Save:"Uložit","Select all":"Vybrat vše","Show more items":"Zobrazit další položky",Turquoise:"Tyrkysová",Undo:"Zpět","Upload in progress":"Probíhá nahrávání",White:"Bílá","Widget toolbar":"Panel nástrojů ovládacího prvku",Yellow:"Žlutá"}),e.getPluralForm=function(o){return 1==o&&o%1==0?0:o>=2&&o<=4&&o%1==0?1:o%1!=0?2:3}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
package/build/translations/da.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(
|
|
1
|
+
!function(e){const r=e.da=e.da||{};r.dictionary=Object.assign(r.dictionary||{},{"%0 of %1":"%0 af %1",Aquamarine:"Marineblå",Black:"Sort",Blue:"Blå",Cancel:"Annullér","Dim grey":"Dunkel grå","Dropdown toolbar":"Dropdown værktøjslinje","Edit block":"Redigér blok","Editor toolbar":"Editor værktøjslinje",Green:"Grøn",Grey:"Grå","Insert paragraph after block":"","Insert paragraph before block":"","Light blue":"Lys blå","Light green":"Lys grøn","Light grey":"Lys grå",Next:"Næste",Orange:"Orange",Previous:"Forrige",Purple:"Lilla",Red:"Rød",Redo:"Gentag","Remove color":"Fjern farve","Restore default":"Nulstil","Rich Text Editor":"Wysiwyg editor","Rich Text Editor, %0":"Wysiwyg editor, %0",Save:"Gem","Select all":"Vælg alt","Show more items":"Vis flere emner",Turquoise:"Turkis",Undo:"Fortryd","Upload in progress":"Upload i gang",White:"Hvid","Widget toolbar":"Widget værktøjslinje",Yellow:"Gyl"}),r.getPluralForm=function(e){return 1!=e}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
package/build/translations/el.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e){const o=e.el=e.el||{};o.dictionary=Object.assign(o.dictionary||{},{"%0 of %1":"",Aquamarine:"",Black:"",Blue:"",Cancel:"Ακύρωση","Dim grey":"","Dropdown toolbar":"","Edit block":"","Editor toolbar":"",Green:"",Grey:"","Light blue":"","Light green":"","Light grey":"",Next:"",Orange:"",Previous:"",Purple:"",Red:"",Redo:"Επανάληψη","Remove color":"","Restore default":"","Rich Text Editor":"Επεξεργαστής Πλούσιου Κειμένου","Rich Text Editor, %0":"Επεξεργαστής Πλούσιου Κειμένου, 0
|
|
1
|
+
!function(e){const o=e.el=e.el||{};o.dictionary=Object.assign(o.dictionary||{},{"%0 of %1":"",Aquamarine:"",Black:"",Blue:"",Cancel:"Ακύρωση","Dim grey":"","Dropdown toolbar":"","Edit block":"","Editor toolbar":"",Green:"",Grey:"","Light blue":"","Light green":"","Light grey":"",Next:"",Orange:"",Previous:"",Purple:"",Red:"",Redo:"Επανάληψη","Remove color":"","Restore default":"","Rich Text Editor":"Επεξεργαστής Πλούσιου Κειμένου","Rich Text Editor, %0":"Επεξεργαστής Πλούσιου Κειμένου, %0",Save:"Αποθήκευση","Show more items":"",Turquoise:"",Undo:"Αναίρεση",White:"",Yellow:""}),o.getPluralForm=function(e){return 1!=e}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
package/build/translations/es.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e){const r=e.es=e.es||{};r.dictionary=Object.assign(r.dictionary||{},{"%0 of %1":"%0 de %1",Aquamarine:"Aguamarina",Black:"Negro",Blue:"Azul",Cancel:"Cancelar","Dim grey":"Gris Oscuro","Dropdown toolbar":"Barra de herramientas desplegable","Edit block":"Cuadro de edición","Editor toolbar":"Barra de herramientas de edición",Green:"Verde",Grey:"Gris","Insert paragraph after block":"","Insert paragraph before block":"","Light blue":"Azul Claro","Light green":"Verde Claro","Light grey":"Gris Claro",Next:"Siguiente",Orange:"Anaranjado",Previous:"Anterior",Purple:"Morado",Red:"Rojo",Redo:"Rehacer","Remove color":"Quitar color","Restore default":"Restaurar valores predeterminados","Rich Text Editor":"Editor de Texto Enriquecido","Rich Text Editor, %0":"Editor de Texto Enriquecido, %0",Save:"Guardar","Select all":"Seleccionar todo","Show more items":"Mostrar más elementos",Turquoise:"Turquesa",Undo:"Deshacer","Upload in progress":"Subida en progreso",White:"Blanco","Widget toolbar":"Barra de herramientas del widget",Yellow:"Amarillo"}),r.getPluralForm=function(e){return 1!=e}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
|
1
|
+
!function(e){const r=e.es=e.es||{};r.dictionary=Object.assign(r.dictionary||{},{"%0 of %1":"%0 de %1",Aquamarine:"Aguamarina",Black:"Negro",Blue:"Azul",Cancel:"Cancelar","Dim grey":"Gris Oscuro","Dropdown toolbar":"Barra de herramientas desplegable","Edit block":"Cuadro de edición","Editor toolbar":"Barra de herramientas de edición",Green:"Verde",Grey:"Gris","Insert paragraph after block":"Insertar párrafo después del bloque","Insert paragraph before block":"Insertar párrafo antes del bloque","Light blue":"Azul Claro","Light green":"Verde Claro","Light grey":"Gris Claro",Next:"Siguiente",Orange:"Anaranjado",Previous:"Anterior",Purple:"Morado",Red:"Rojo",Redo:"Rehacer","Remove color":"Quitar color","Restore default":"Restaurar valores predeterminados","Rich Text Editor":"Editor de Texto Enriquecido","Rich Text Editor, %0":"Editor de Texto Enriquecido, %0",Save:"Guardar","Select all":"Seleccionar todo","Show more items":"Mostrar más elementos",Turquoise:"Turquesa",Undo:"Deshacer","Upload in progress":"Subida en progreso",White:"Blanco","Widget toolbar":"Barra de herramientas del widget",Yellow:"Amarillo"}),r.getPluralForm=function(e){return 1!=e}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
package/build/translations/fa.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e){const o=e.fa=e.fa||{};o.dictionary=Object.assign(o.dictionary||{},{"%0 of %1":"0
|
|
1
|
+
!function(e){const o=e.fa=e.fa||{};o.dictionary=Object.assign(o.dictionary||{},{"%0 of %1":"%0 از %1",Aquamarine:"زمرد کبود",Black:"سیاه",Blue:"آبی",Cancel:"لغو","Dim grey":"خاکستری تیره","Dropdown toolbar":"نوارابزار کشویی","Edit block":"ویرایش قطعه","Editor toolbar":"نوارابزار ویرایشگر",Green:"سبز",Grey:"خاکستری","Insert paragraph after block":"درج پاراگراف بعد از بلوک","Insert paragraph before block":"درج پاراگراف قبل از بلوک","Light blue":"آبی روشن","Light green":"سبز روشن","Light grey":"خاکستری روشن",Next:"بعدی",Orange:"نارنجی",Previous:"قبلی",Purple:"بنفش",Red:"قرمز",Redo:"باز انجام","Remove color":"حذف رنگ","Restore default":"","Rich Text Editor":"ویرایشگر متن غنی","Rich Text Editor, %0":"ویرایشگر متن غنی، %0",Save:"ذخیره","Select all":"انتخاب همه","Show more items":"نمایش گزینههای بیشتر",Turquoise:"فیروزه ای",Undo:"بازگردانی","Upload in progress":"آپلود در حال انجام",White:"سفید","Widget toolbar":"نوار ابزار ویجت",Yellow:"زرد"}),o.getPluralForm=function(e){return e>1}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
package/build/translations/he.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e){const o=e.he=e.he||{};o.dictionary=Object.assign(o.dictionary||{},{"%0 of %1":"0
|
|
1
|
+
!function(e){const o=e.he=e.he||{};o.dictionary=Object.assign(o.dictionary||{},{"%0 of %1":"%0 מתוך %1",Aquamarine:"",Black:"",Blue:"",Cancel:"ביטול","Dim grey":"","Dropdown toolbar":"סרגל כלים נפתח","Edit block":"הגדרות בלוק","Editor toolbar":"סרגל הכלים",Green:"",Grey:"","Insert paragraph after block":"","Insert paragraph before block":"","Light blue":"","Light green":"","Light grey":"",Next:"הבא",Orange:"",Previous:"הקודם",Purple:"",Red:"",Redo:"ביצוע מחדש","Remove color":"","Restore default":"","Rich Text Editor":"עורך טקסט עשיר","Rich Text Editor, %0":"עורך טקסט עשיר, %0",Save:"שמירה","Show more items":"הצד פריטים נוספים",Turquoise:"",Undo:"ביטול","Upload in progress":"העלאה מתבצעת",White:"","Widget toolbar":"סרגל יישומון",Yellow:""}),o.getPluralForm=function(e){return 1==e&&e%1==0?0:2==e&&e%1==0?1:e%10==0&&e%1==0&&e>10?2:3}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
package/build/translations/id.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(a){const e=a.id=a.id||{};e.dictionary=Object.assign(e.dictionary||{},{"%0 of %1":"%0 dari %1",Aquamarine:"Biru laut",Black:"Hitam",Blue:"Biru",Cancel:"Batal","Dim grey":"Kelabu gelap","Dropdown toolbar":"Alat dropdown","Edit block":"Sunting blok","Editor toolbar":"Alat editor",Green:"Hijau",Grey:"Kelabu","Insert paragraph after block":"","Insert paragraph before block":"","Light blue":"Biru terang","Light green":"Hijau terang","Light grey":"Kelabu terang",Next:"Berikutnya",Orange:"Jingga",Previous:"Sebelumnya",Purple:"Ungu",Red:"Merah",Redo:"Lakukan lagi","Remove color":"Hapus warna","Restore default":"","Rich Text Editor":"Editor Teks Kaya","Rich Text Editor, %0":"Editor Teks Kaya, %0",Save:"Simpan","Show more items":"",Turquoise:"Turkish",Undo:"Batal","Upload in progress":"Sedang mengunggah",White:"Putih","Widget toolbar":"Alat widget",Yellow:"Kuning"}),e.getPluralForm=function(a){return 0}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
|
1
|
+
!function(a){const e=a.id=a.id||{};e.dictionary=Object.assign(e.dictionary||{},{"%0 of %1":"%0 dari %1",Aquamarine:"Biru laut",Black:"Hitam",Blue:"Biru",Cancel:"Batal","Dim grey":"Kelabu gelap","Dropdown toolbar":"Alat dropdown","Edit block":"Sunting blok","Editor toolbar":"Alat editor",Green:"Hijau",Grey:"Kelabu","Insert paragraph after block":"","Insert paragraph before block":"","Light blue":"Biru terang","Light green":"Hijau terang","Light grey":"Kelabu terang",Next:"Berikutnya",Orange:"Jingga",Previous:"Sebelumnya",Purple:"Ungu",Red:"Merah",Redo:"Lakukan lagi","Remove color":"Hapus warna","Restore default":"","Rich Text Editor":"Editor Teks Kaya","Rich Text Editor, %0":"Editor Teks Kaya, %0",Save:"Simpan","Select all":"Pilih semua","Show more items":"",Turquoise:"Turkish",Undo:"Batal","Upload in progress":"Sedang mengunggah",White:"Putih","Widget toolbar":"Alat widget",Yellow:"Kuning"}),e.getPluralForm=function(a){return 0}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
package/build/translations/ko.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e){const o=e.ko=e.ko||{};o.dictionary=Object.assign(o.dictionary||{},{"%0 of %1":"0
|
|
1
|
+
!function(e){const o=e.ko=e.ko||{};o.dictionary=Object.assign(o.dictionary||{},{"%0 of %1":"%0 / %1",Aquamarine:"연한 청록색",Black:"검은색",Blue:"파랑색",Cancel:"취소","Dim grey":"진한 회색","Dropdown toolbar":"드롭다운 툴바","Edit block":"편집 영역","Editor toolbar":"에디터 툴바",Green:"초록색",Grey:"회색","Insert paragraph after block":"","Insert paragraph before block":"","Light blue":"연한 파랑색","Light green":"밝은 초록색","Light grey":"밝은 회색",Next:"다음",Orange:"주황색",Previous:"이전",Purple:"보라색",Red:"빨간색",Redo:"다시 실행","Remove color":"색깔 제거","Restore default":"","Rich Text Editor":"리치 텍스트 편집기","Rich Text Editor, %0":"리치 텍스트 편집기, %0",Save:"저장","Select all":"전체 선택","Show more items":"더보기",Turquoise:"청록색",Undo:"실행 취소","Upload in progress":"업로드 진행 중",White:"흰색","Widget toolbar":"위젯 툴바",Yellow:"노랑색"}),o.getPluralForm=function(e){return 0}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
package/build/translations/ne.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e){const o=e.ne=e.ne||{};o.dictionary=Object.assign(o.dictionary||{},{"%0 of %1":"
|
|
1
|
+
!function(e){const o=e.ne=e.ne||{};o.dictionary=Object.assign(o.dictionary||{},{"%0 of %1":"%0 मध्ये %1",Aquamarine:"अव्कवामरिन",Black:"कालो",Blue:"निलो",Cancel:"रद्द गर्नुहोस्","Dim grey":"धमिलो खैरो","Dropdown toolbar":"","Edit block":"ब्लक सम्पादन गर्न","Editor toolbar":"",Green:"हरियो",Grey:"खैरो","Light blue":"हल्का निलो","Light green":"हल्का हरियो","Light grey":"हल्का खैरो",Next:"अर्को",Orange:"सुन्तला रंग",Previous:"अघिल्लो",Purple:"बैंगनी रंग",Red:"रातो",Redo:"रिडु","Remove color":"रंग हटाउन","Restore default":"","Rich Text Editor":"धनी पाठ सम्पादक","Rich Text Editor, %0":"धनी पाठ सम्पादक, %0",Save:"सुरक्षित गर्नुहोस्","Show more items":"",Turquoise:"त्रकोइस",Undo:"पूर्ववत","Upload in progress":"अपलोड हुदैछ",White:"सेतो",Yellow:"पहेंलो"}),o.getPluralForm=function(e){return 1!=e}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|