@ckeditor/ckeditor5-core 34.1.0 → 35.0.1
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 +311 -0
- package/LICENSE.md +4 -0
- package/lang/contexts.json +2 -1
- package/lang/translations/af.po +4 -0
- package/lang/translations/ar.po +8 -4
- package/lang/translations/ast.po +4 -0
- package/lang/translations/az.po +4 -0
- package/lang/translations/bg.po +9 -5
- package/lang/translations/bn.po +49 -0
- package/lang/translations/bs.po +4 -0
- package/lang/translations/ca.po +8 -4
- package/lang/translations/cs.po +4 -0
- package/lang/translations/da.po +4 -0
- package/lang/translations/de-ch.po +4 -0
- package/lang/translations/de.po +4 -0
- package/lang/translations/el.po +4 -0
- package/lang/translations/en-au.po +4 -0
- package/lang/translations/en-gb.po +4 -0
- package/lang/translations/en.po +4 -0
- package/lang/translations/eo.po +4 -0
- package/lang/translations/es.po +5 -1
- package/lang/translations/et.po +5 -1
- package/lang/translations/eu.po +4 -0
- package/lang/translations/fa.po +4 -0
- package/lang/translations/fi.po +6 -2
- package/lang/translations/fr.po +6 -2
- package/lang/translations/gl.po +4 -0
- package/lang/translations/gu.po +4 -0
- package/lang/translations/he.po +7 -3
- package/lang/translations/hi.po +5 -1
- package/lang/translations/hr.po +4 -0
- package/lang/translations/hu.po +4 -0
- package/lang/translations/id.po +6 -2
- package/lang/translations/it.po +5 -1
- package/lang/translations/ja.po +7 -3
- package/lang/translations/jv.po +4 -0
- package/lang/translations/km.po +4 -0
- package/lang/translations/kn.po +4 -0
- package/lang/translations/ko.po +5 -1
- package/lang/translations/ku.po +4 -0
- package/lang/translations/lt.po +7 -3
- package/lang/translations/lv.po +4 -0
- package/lang/translations/ms.po +10 -6
- package/lang/translations/nb.po +4 -0
- package/lang/translations/ne.po +4 -0
- package/lang/translations/nl.po +4 -0
- package/lang/translations/no.po +4 -0
- package/lang/translations/oc.po +4 -0
- package/lang/translations/pl.po +4 -0
- package/lang/translations/pt-br.po +5 -1
- package/lang/translations/pt.po +9 -5
- package/lang/translations/ro.po +4 -0
- package/lang/translations/ru.po +4 -0
- package/lang/translations/si.po +4 -0
- package/lang/translations/sk.po +4 -0
- package/lang/translations/sl.po +4 -0
- package/lang/translations/sq.po +4 -0
- package/lang/translations/sr-latn.po +4 -0
- package/lang/translations/sr.po +4 -0
- package/lang/translations/sv.po +8 -4
- package/lang/translations/th.po +7 -3
- package/lang/translations/tk.po +4 -0
- package/lang/translations/tr.po +5 -1
- package/lang/translations/tt.po +4 -0
- package/lang/translations/ug.po +4 -0
- package/lang/translations/uk.po +5 -1
- package/lang/translations/ur.po +4 -0
- package/lang/translations/uz.po +4 -0
- package/lang/translations/vi.po +5 -1
- package/lang/translations/zh-cn.po +4 -0
- package/lang/translations/zh.po +4 -0
- package/package.json +19 -18
- package/src/editor/editor.js +4 -4
- package/src/editor/editorconfig.jsdoc +18 -5
- package/src/editor/utils/elementapimixin.js +19 -2
- package/src/plugincollection.js +1 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
Changelog
|
|
2
|
+
=========
|
|
3
|
+
|
|
4
|
+
All changes in the package are documented in the main repository. See: https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md.
|
|
5
|
+
|
|
6
|
+
Changes for the past releases are available below.
|
|
7
|
+
|
|
8
|
+
## [19.0.0](https://github.com/ckeditor/ckeditor5-core/compare/v18.0.0...v19.0.0) (2020-04-29)
|
|
9
|
+
|
|
10
|
+
Internal changes only (updated dependencies, documentation, etc.).
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## [18.0.0](https://github.com/ckeditor/ckeditor5-core/compare/v17.0.0...v18.0.0) (2020-03-19)
|
|
14
|
+
|
|
15
|
+
### Other changes
|
|
16
|
+
|
|
17
|
+
* Updated translations. ([c898ffc](https://github.com/ckeditor/ckeditor5-core/commit/c898ffc))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [17.0.0](https://github.com/ckeditor/ckeditor5-core/compare/v16.0.0...v17.0.0) (2020-02-19)
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* Introduced the concept of editor contexts and context plugins. Contexts provide a common, higher-level environment for solutions which use multiple editors and/or plugins that work outside an editor. Closes [ckeditor/ckeditor5#5891](https://github.com/ckeditor/ckeditor5/issues/5891). ([672e55e](https://github.com/ckeditor/ckeditor5-core/commit/672e55e))
|
|
25
|
+
* Added vertical alignment icons. Moved horizontal alignment icons form `@ckeditor/ckeditor5-alignment` (see [ckeditor/ckeditor5-table#227](https://github.com/ckeditor/ckeditor5-table/issues/227)). ([ada4a79](https://github.com/ckeditor/ckeditor5-core/commit/ada4a79))
|
|
26
|
+
* Introduced `Plugin#isEnabled`, `Plugin#forceDisabled()` and `Plugin#clearForceDisabled()`. ([7449450](https://github.com/ckeditor/ckeditor5-core/commit/7449450))
|
|
27
|
+
|
|
28
|
+
### Other changes
|
|
29
|
+
|
|
30
|
+
* Updated translations. ([6a2b584](https://github.com/ckeditor/ckeditor5-core/commit/6a2b584))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [16.0.0](https://github.com/ckeditor/ckeditor5-core/compare/v15.0.0...v16.0.0) (2019-12-04)
|
|
34
|
+
|
|
35
|
+
### Other changes
|
|
36
|
+
|
|
37
|
+
* Updated translations. ([6d8950e](https://github.com/ckeditor/ckeditor5-core/commit/6d8950e))
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
## [15.0.0](https://github.com/ckeditor/ckeditor5-core/compare/v12.3.0...v15.0.0) (2019-10-23)
|
|
41
|
+
|
|
42
|
+
### Other changes
|
|
43
|
+
|
|
44
|
+
* Added custom error handling to the `editor.execute()` method. Part of [ckeditor/ckeditor5#1304](https://github.com/ckeditor/ckeditor5/issues/1304). ([c1babca](https://github.com/ckeditor/ckeditor5-core/commit/c1babca))
|
|
45
|
+
* Updated translations. ([a7d36a8](https://github.com/ckeditor/ckeditor5-core/commit/a7d36a8))
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
## [12.3.0](https://github.com/ckeditor/ckeditor5-core/compare/v12.2.1...v12.3.0) (2019-08-26)
|
|
49
|
+
|
|
50
|
+
### Features
|
|
51
|
+
|
|
52
|
+
* Allowed configuration of the editor content language via `conifg.language`. See [ckeditor/ckeditor5#1151](https://github.com/ckeditor/ckeditor5/issues/1151). ([22079dd](https://github.com/ckeditor/ckeditor5-core/commit/22079dd))
|
|
53
|
+
* Introduced a `secureSourceElement()` utility that prevents from initialising more than one editor on the same DOM element. See [ckeditor/ckeditor5#746](https://github.com/ckeditor/ckeditor5/issues/746). ([6a59058](https://github.com/ckeditor/ckeditor5-core/commit/6a59058))
|
|
54
|
+
|
|
55
|
+
### Other changes
|
|
56
|
+
|
|
57
|
+
* The issue tracker for this package was moved to https://github.com/ckeditor/ckeditor5/issues. See [ckeditor/ckeditor5#1988](https://github.com/ckeditor/ckeditor5/issues/1988). ([6d72325](https://github.com/ckeditor/ckeditor5-core/commit/6d72325))
|
|
58
|
+
* Updated translations. ([e29d56e](https://github.com/ckeditor/ckeditor5-core/commit/e29d56e))
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
## [12.2.1](https://github.com/ckeditor/ckeditor5-core/compare/v12.2.0...v12.2.1) (2019-07-10)
|
|
62
|
+
|
|
63
|
+
Internal changes only (updated dependencies, documentation, etc.).
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
## [12.2.0](https://github.com/ckeditor/ckeditor5-core/compare/v12.1.1...v12.2.0) (2019-07-04)
|
|
67
|
+
|
|
68
|
+
### Features
|
|
69
|
+
|
|
70
|
+
* Added an editor instance reference to the native editable DOM element under the `ckeditorInstance` property. Closes [ckeditor/ckeditor5#1838](https://github.com/ckeditor/ckeditor5/issues/1838). ([fa94600](https://github.com/ckeditor/ckeditor5-core/commit/fa94600))
|
|
71
|
+
|
|
72
|
+
Implemented the `EditorUI#setEditableElement()` method.
|
|
73
|
+
Deprecated the `EditorUI#_editableElements` property.
|
|
74
|
+
* Introduced `MultiCommand` which acts as a composite command – it can group multiple commands under the hood. ([ebcbd01](https://github.com/ckeditor/ckeditor5-core/commit/ebcbd01))
|
|
75
|
+
|
|
76
|
+
### Other changes
|
|
77
|
+
|
|
78
|
+
* Introduce the `editor-wrong-element` error thrown when the editor is created over a wrong element. Closes [ckeditor/ckeditor5#1591](https://github.com/ckeditor/ckeditor5/issues/1591). ([9945fc6](https://github.com/ckeditor/ckeditor5-core/commit/9945fc6))
|
|
79
|
+
* Updated translations. ([43f5b6e](https://github.com/ckeditor/ckeditor5-core/commit/43f5b6e))
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
## [12.1.1](https://github.com/ckeditor/ckeditor5-core/compare/v12.1.0...v12.1.1) (2019-06-05)
|
|
83
|
+
|
|
84
|
+
### Other changes
|
|
85
|
+
|
|
86
|
+
* Updated translations. ([ed6bd3c](https://github.com/ckeditor/ckeditor5-core/commit/ed6bd3c))
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
## [12.1.0](https://github.com/ckeditor/ckeditor5-core/compare/v12.0.0...v12.1.0) (2019-04-10)
|
|
90
|
+
|
|
91
|
+
### Features
|
|
92
|
+
|
|
93
|
+
* Introduced `Command#disable()` and `Command#enable()`. Closes [#165](https://github.com/ckeditor/ckeditor5-core/issues/165). ([030ca2b](https://github.com/ckeditor/ckeditor5-core/commit/030ca2b))
|
|
94
|
+
|
|
95
|
+
### Other changes
|
|
96
|
+
|
|
97
|
+
* Optimized icons. ([a5f8d34](https://github.com/ckeditor/ckeditor5-core/commit/a5f8d34))
|
|
98
|
+
* Updated translations. ([2dedc43](https://github.com/ckeditor/ckeditor5-core/commit/2dedc43))
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
## [12.0.0](https://github.com/ckeditor/ckeditor5-core/compare/v11.1.0...v12.0.0) (2019-02-28)
|
|
102
|
+
|
|
103
|
+
### Bug fixes
|
|
104
|
+
|
|
105
|
+
* Fixed memory leaks during editor initialization and destruction. Created helpers for testing memory usage. Closes [ckeditor/ckeditor5#1341](https://github.com/ckeditor/ckeditor5/issues/1341). ([11ca135](https://github.com/ckeditor/ckeditor5-core/commit/11ca135))
|
|
106
|
+
|
|
107
|
+
### Other changes
|
|
108
|
+
|
|
109
|
+
* Editor UI classes API refactoring. See breaking changes. Closes [ckeditor/ckeditor5#1449](https://github.com/ckeditor/ckeditor5/issues/1449). ([aca1ff1](https://github.com/ckeditor/ckeditor5-core/commit/aca1ff1))
|
|
110
|
+
* Remove `editor#pluginsReady` event. Closes [ckeditor/ckeditor5#1477](https://github.com/ckeditor/ckeditor5/issues/1477). ([6d63538](https://github.com/ckeditor/ckeditor5-core/commit/6d63538))
|
|
111
|
+
* The `Editor#getData()` method now accepts `options.trim` parameter. By default it will now return an empty string when the editor is empty (instead of returning `'<p> </p>'` as before). ([4f8abd1](https://github.com/ckeditor/ckeditor5-core/commit/4f8abd1))
|
|
112
|
+
* Throw an error from `editor.plugins.get()` if the plugin is not loaded. Closes [#148](https://github.com/ckeditor/ckeditor5-core/issues/148). ([a56b47a](https://github.com/ckeditor/ckeditor5-core/commit/a56b47a))
|
|
113
|
+
* Updated translations. ([4cf6f4f](https://github.com/ckeditor/ckeditor5-core/commit/4cf6f4f)) ([a8367a5](https://github.com/ckeditor/ckeditor5-core/commit/a8367a5)) ([0e09317](https://github.com/ckeditor/ckeditor5-core/commit/0e09317))
|
|
114
|
+
|
|
115
|
+
### BREAKING CHANGES
|
|
116
|
+
|
|
117
|
+
* Upgraded minimal versions of Node to `8.0.0` and npm to `5.7.1`. See: [ckeditor/ckeditor5#1507](https://github.com/ckeditor/ckeditor5/issues/1507). ([612ea3c](https://github.com/ckeditor/ckeditor5-cloud-services/commit/612ea3c))
|
|
118
|
+
* The `Editor#getData()` method now returns an empty string by default when editor content is empty (instead of returning `'<p> </p>'` as before).
|
|
119
|
+
* The `editor#pluginsReady` event was removed. Use plugin `afterInit()` method instead.
|
|
120
|
+
* Removed `EditorWithUI#element` property. The `EditorUI#element` property should be used instead.
|
|
121
|
+
* Removed `EditorWithUI#uiReady` event. The `EditorUI#ready` event should be used instead.
|
|
122
|
+
* Removed `view` parameter in `EditorUI` constructor. Only subclasses should use it without passing it further to `EditorUI`.
|
|
123
|
+
* Removed `EditorUI#view` property. The `view` property from subclasses (like `ClassicEditorUI#view`) should be used directly instead.
|
|
124
|
+
* The `editor.plugins.get()` will now throw an error if the plugin is not loaded. Use `editor.plugins.has()` to check if plugin is available.
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
## [11.1.0](https://github.com/ckeditor/ckeditor5-core/compare/v11.0.1...v11.1.0) (2018-12-05)
|
|
128
|
+
|
|
129
|
+
### Features
|
|
130
|
+
|
|
131
|
+
* Implemented the `config.extraPlugins` option. Closes [#146](https://github.com/ckeditor/ckeditor5-core/issues/146). ([4b5c3d4](https://github.com/ckeditor/ckeditor5-core/commit/4b5c3d4))
|
|
132
|
+
|
|
133
|
+
### Other changes
|
|
134
|
+
|
|
135
|
+
* Improved SVG icons size. See [ckeditor/ckeditor5-theme-lark#206](https://github.com/ckeditor/ckeditor5-theme-lark/issues/206). ([c4795fb](https://github.com/ckeditor/ckeditor5-core/commit/c4795fb))
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
## [11.0.1](https://github.com/ckeditor/ckeditor5-core/compare/v11.0.0...v11.0.1) (2018-10-08)
|
|
139
|
+
|
|
140
|
+
### Other changes
|
|
141
|
+
|
|
142
|
+
* Updated translations. ([873d193](https://github.com/ckeditor/ckeditor5-core/commit/873d193))
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
## [11.0.0](https://github.com/ckeditor/ckeditor5-core/compare/v10.1.0...v11.0.0) (2018-07-18)
|
|
146
|
+
|
|
147
|
+
### Features
|
|
148
|
+
|
|
149
|
+
* Added the observable `Editor#state` property. Closes [#124](https://github.com/ckeditor/ckeditor5-core/issues/124). ([ec89d8d](https://github.com/ckeditor/ckeditor5-core/commit/ec89d8d))
|
|
150
|
+
* Imported the module providing the `CKEDITOR_VERSION` global constant in the `Editor` class (see [ckeditor/ckeditor5#1005](https://github.com/ckeditor/ckeditor5/issues/1005)). ([a1a9144](https://github.com/ckeditor/ckeditor5-core/commit/a1a9144))
|
|
151
|
+
* Introduced the `#element` property to the `EditorWithUI` interface. The `#element` property from the `ElementApi` interface has been renamed to `#sourceElement`. Most editors implement both interfaces, which ultimately means that the old `editor.element` property is now called `editor.sourceElement` and there's a new `editor.element` property with a new meaning. Closes [#64](https://github.com/ckeditor/ckeditor5-core/issues/64). ([eb43b63](https://github.com/ckeditor/ckeditor5-core/commit/eb43b63))
|
|
152
|
+
* Introduced the `EditorUI#update` event. Closes [#130](https://github.com/ckeditor/ckeditor5-core/issues/130). ([734166a](https://github.com/ckeditor/ckeditor5-core/commit/734166a))
|
|
153
|
+
|
|
154
|
+
### Bug fixes
|
|
155
|
+
|
|
156
|
+
* Editor#destroy waits for the initialization. Closes [#134](https://github.com/ckeditor/ckeditor5-core/issues/134). ([ad1da26](https://github.com/ckeditor/ckeditor5-core/commit/ad1da26))
|
|
157
|
+
* The `ClassicTestEditor` should not render its UI in the `constructor()`. Closes [#137](https://github.com/ckeditor/ckeditor5-core/issues/137). ([46fdc36](https://github.com/ckeditor/ckeditor5-core/commit/46fdc36))
|
|
158
|
+
|
|
159
|
+
### Other changes
|
|
160
|
+
|
|
161
|
+
* Refreshed the pilcrow icon (see [ckeditor/ckeditor5-ui#394](https://github.com/ckeditor/ckeditor5-ui/issues/394)). ([ce33acb](https://github.com/ckeditor/ckeditor5-core/commit/ce33acb))
|
|
162
|
+
* Split `Editor.build` into `Editor.builtinPlugins` and `Editor.defaultConfig`. Closes [#140](https://github.com/ckeditor/ckeditor5-core/issues/140). ([c13ec79](https://github.com/ckeditor/ckeditor5-core/commit/c13ec79))
|
|
163
|
+
* Updated translations. ([ba21a12](https://github.com/ckeditor/ckeditor5-core/commit/ba21a12))
|
|
164
|
+
|
|
165
|
+
### BREAKING CHANGES
|
|
166
|
+
|
|
167
|
+
* `Editor.build` was split to `Editor.builtinPlugins` and `Editor.defaultConfig`.
|
|
168
|
+
* The `editor.element` property was renamed to `editor.sourceElement`.
|
|
169
|
+
* The `editor.updateElement()` method was renamed to `editor.updateSourceElement()`.
|
|
170
|
+
* The `EditorUI` is now a class (no longer an interface).
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
## [10.1.0](https://github.com/ckeditor/ckeditor5-core/compare/v10.0.0...v10.1.0) (2018-06-21)
|
|
174
|
+
|
|
175
|
+
### Features
|
|
176
|
+
|
|
177
|
+
* Introduced `PendingActions` plugin. Closes [#126](https://github.com/ckeditor/ckeditor5-core/issues/126). ([e1af648](https://github.com/ckeditor/ckeditor5-core/commit/e1af648))
|
|
178
|
+
|
|
179
|
+
### Other changes
|
|
180
|
+
|
|
181
|
+
* Updated translations.
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
## [10.0.0](https://github.com/ckeditor/ckeditor5-core/compare/v1.0.0-beta.4...v10.0.0) (2018-04-25)
|
|
185
|
+
|
|
186
|
+
### Other changes
|
|
187
|
+
|
|
188
|
+
* Changed the license to GPL2+ only. See [ckeditor/ckeditor5#991](https://github.com/ckeditor/ckeditor5/issues/991). ([0ccf614](https://github.com/ckeditor/ckeditor5-core/commit/0ccf614))
|
|
189
|
+
|
|
190
|
+
### BREAKING CHANGES
|
|
191
|
+
|
|
192
|
+
* The license under which CKEditor 5 is released has been changed from a triple GPL, LGPL and MPL license to a GPL2+ only. See [ckeditor/ckeditor5#991](https://github.com/ckeditor/ckeditor5/issues/991) for more information.
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
## [1.0.0-beta.4](https://github.com/ckeditor/ckeditor5-core/compare/v1.0.0-beta.2...v1.0.0-beta.4) (2018-04-19)
|
|
196
|
+
|
|
197
|
+
Internal changes only (updated dependencies, documentation, etc.).
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
## [1.0.0-beta.2](https://github.com/ckeditor/ckeditor5-core/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2018-04-10)
|
|
201
|
+
|
|
202
|
+
### Other changes
|
|
203
|
+
|
|
204
|
+
* Made the check and cancel icons thicker and fill-friendly (see [ckeditor/ckeditor5#810](https://github.com/ckeditor/ckeditor5/issues/810)). ([6584541](https://github.com/ckeditor/ckeditor5-core/commit/6584541))
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
## [1.0.0-beta.1](https://github.com/ckeditor/ckeditor5-core/compare/v1.0.0-alpha.2...v1.0.0-beta.1) (2018-03-15)
|
|
208
|
+
|
|
209
|
+
### Other changes
|
|
210
|
+
|
|
211
|
+
* Moved `EditingController`, `DataController` and `EditingKeystrokeHandler` from `StandardEditor` to the `Editor` class. Closes [#110](https://github.com/ckeditor/ckeditor5-core/issues/110). ([5a2031e](https://github.com/ckeditor/ckeditor5-core/commit/5a2031e))
|
|
212
|
+
* Removed the `StandardEditor` class in favor of `DataInterface` and `ElementInterface` mixins. Added `EditorWithUI` interface. Closes [#115](https://github.com/ckeditor/ckeditor5-core/issues/115). Closes [#113](https://github.com/ckeditor/ckeditor5-core/issues/113). Closes https://github.com/ckeditor/ckeditor5/issues/303. ([fe81992](https://github.com/ckeditor/ckeditor5-core/commit/fe81992))
|
|
213
|
+
* `Command` should listen to `model.Document#event:change`. ([912570d](https://github.com/ckeditor/ckeditor5-core/commit/912570d))
|
|
214
|
+
* Changed `config.lang` to `config.language` to align to the naming convention. ([8720973](https://github.com/ckeditor/ckeditor5-core/commit/8720973))
|
|
215
|
+
* Removed `loadDataFromElement()` method from `ElementApiMixin`. Closes [#120](https://github.com/ckeditor/ckeditor5-core/issues/120). ([4976e10](https://github.com/ckeditor/ckeditor5-core/commit/4976e10))
|
|
216
|
+
|
|
217
|
+
### BREAKING CHANGES
|
|
218
|
+
|
|
219
|
+
* The `StandardEditor` class was removed. Use `Editor` class with `DataInterface` and `ElementInterface` mixins.
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
## [1.0.0-alpha.2](https://github.com/ckeditor/ckeditor5-core/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2017-11-14)
|
|
223
|
+
|
|
224
|
+
### Other changes
|
|
225
|
+
|
|
226
|
+
* Updated translations. ([1003fa4](https://github.com/ckeditor/ckeditor5-core/commit/1003fa4))
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
## [1.0.0-alpha.1](https://github.com/ckeditor/ckeditor5-core/compare/v0.9.0...v1.0.0-alpha.1) (2017-10-03)
|
|
230
|
+
|
|
231
|
+
### Features
|
|
232
|
+
|
|
233
|
+
* The `StandardEditor` should automatically update the contents of its source textarea upon submission of the form. Closes https://github.com/ckeditor/ckeditor5/issues/544. ([ce46fde](https://github.com/ckeditor/ckeditor5-core/commit/ce46fde))
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
## [0.9.0](https://github.com/ckeditor/ckeditor5-core/compare/v0.8.1...v0.9.0) (2017-09-03)
|
|
237
|
+
|
|
238
|
+
### Bug fixes
|
|
239
|
+
|
|
240
|
+
* `EditingKeystrokeHandler` should prevent default action only for commands. Closes [#90](https://github.com/ckeditor/ckeditor5-core/issues/90). ([82ff39a](https://github.com/ckeditor/ckeditor5-core/commit/82ff39a))
|
|
241
|
+
* `ToggleAttributeCommand` should listen to reliable events in order to determine its state. Closes [#50](https://github.com/ckeditor/ckeditor5-core/issues/50). ([6816505](https://github.com/ckeditor/ckeditor5-core/commit/6816505))
|
|
242
|
+
* SVG icons should not define own fill if controlled by the styles. Closes [#79](https://github.com/ckeditor/ckeditor5-core/issues/79). ([fadf5ec](https://github.com/ckeditor/ckeditor5-core/commit/fadf5ec))
|
|
243
|
+
|
|
244
|
+
### Features
|
|
245
|
+
|
|
246
|
+
* `EditingKeystrokeHandler` should support priorities and proper cancelling. Closes [#101](https://github.com/ckeditor/ckeditor5-core/issues/101). ([c74b9a3](https://github.com/ckeditor/ckeditor5-core/commit/c74b9a3))
|
|
247
|
+
* `Editor#destroy()` will destroy all loaded plugins. Closes [#86](https://github.com/ckeditor/ckeditor5-core/issues/86). ([77e5217](https://github.com/ckeditor/ckeditor5-core/commit/77e5217))
|
|
248
|
+
|
|
249
|
+
Added default implementation for `Plugin#destroy()`. Introduced `PluginCollection#destroy()` method which calls `Plugin#destroy()` for every loaded plugin.
|
|
250
|
+
* `PluginCollection` will warn if the user wants to load two or more plugins with the same name. Closes [#85](https://github.com/ckeditor/ckeditor5-core/issues/85). ([e00a282](https://github.com/ckeditor/ckeditor5-core/commit/e00a282))
|
|
251
|
+
* Introduced `Editor#isReadOnly` property which disables all commands and prevents from modifying the document. Closes [#96](https://github.com/ckeditor/ckeditor5-core/issues/96). Closes https://github.com/ckeditor/ckeditor5/issues/492. ([1ca5608](https://github.com/ckeditor/ckeditor5-core/commit/1ca5608))
|
|
252
|
+
|
|
253
|
+
### Other changes
|
|
254
|
+
|
|
255
|
+
* Bound `EditingController#isReadOnly` to the editor. Closes [#98](https://github.com/ckeditor/ckeditor5-core/issues/98). ([ec02906](https://github.com/ckeditor/ckeditor5-core/commit/ec02906))
|
|
256
|
+
* Cleaned up SVG icons. ([ffac7e7](https://github.com/ckeditor/ckeditor5-core/commit/ffac7e7))
|
|
257
|
+
* Introduced `PluginInterface`. A plugin doesn't need to inherit directly from the `Plugin` class, as long as it implements some minimal interface. See [#78](https://github.com/ckeditor/ckeditor5-core/issues/78). ([f476f34](https://github.com/ckeditor/ckeditor5-core/commit/f476f34))
|
|
258
|
+
* Removed `ToggleAttributeCommand` class as well as other helpers from the `core/command` namespace. Closes [#14](https://github.com/ckeditor/ckeditor5-core/issues/14). ([7c68581](https://github.com/ckeditor/ckeditor5-core/commit/7c68581))
|
|
259
|
+
* The command API has been redesigned. The `Command` methods are now public and consistent. Commands can be used in a standalone mode (without the editor). The `CommandCollection` was introduced and replaced the `Map` of commands used in `editor.commands`. Closes [#88](https://github.com/ckeditor/ckeditor5-core/issues/88). ([b76983b](https://github.com/ckeditor/ckeditor5-core/commit/b76983b))
|
|
260
|
+
|
|
261
|
+
Besides changes mentioned in this point and in the "Breaking changes" section, other minor changes were done:
|
|
262
|
+
|
|
263
|
+
* `Editor#execute()` now accepts multiple command arguments.
|
|
264
|
+
* `Command#value` property was standardized.
|
|
265
|
+
|
|
266
|
+
### BREAKING CHANGES
|
|
267
|
+
|
|
268
|
+
* The `ToggleAttributeCommand` was moved to the `ckeditor5-basic-styles` package as `AttributeCommand` and the other command helpers to `ckeditor5-engine` as `Schema` methods.
|
|
269
|
+
* The `Command`'s protected `_doExecute()` and `_checkEnabled()` methods have been replaced by public `execute()` and `refresh()` methods.
|
|
270
|
+
* The `Command`'s `refreshState` event was removed and one should use `change:isEnabled` in order to control and override its state.
|
|
271
|
+
* The `core/command/command` module has been moved to the root directory (so the `Command` class is `core/command~Command` now).
|
|
272
|
+
* The `Command#refresh()` method is now automatically called on `editor.document#changesDone`.
|
|
273
|
+
* The `editor.commands` map was replaced by a `CommandCollection` instance so `editor.commands.set()` calls need to be replaced with `editor.commands.add()`.
|
|
274
|
+
|
|
275
|
+
### NOTE
|
|
276
|
+
|
|
277
|
+
* Plugin naming convention has changed.
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
## [0.8.1](https://github.com/ckeditor/ckeditor5-core/compare/v0.8.0...v0.8.1) (2017-05-07)
|
|
281
|
+
|
|
282
|
+
### Other changes
|
|
283
|
+
|
|
284
|
+
* Updated translations. ([993596a](https://github.com/ckeditor/ckeditor5-core/commit/993596a))
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
## [0.8.0](https://github.com/ckeditor/ckeditor5-core/compare/v0.7.0...v0.8.0) (2017-04-05)
|
|
288
|
+
|
|
289
|
+
### Bug fixes
|
|
290
|
+
|
|
291
|
+
* This time, we introduced support for `config.removePlugins` for real (we said that we did this in the previous release, but we didn't). Closes [#49](https://github.com/ckeditor/ckeditor5-core/issues/49). ([5834fed](https://github.com/ckeditor/ckeditor5-core/commit/5834fed))
|
|
292
|
+
|
|
293
|
+
### Features
|
|
294
|
+
|
|
295
|
+
* Added support for building plugins and default configs into `Editor` classes. Closes [#67](https://github.com/ckeditor/ckeditor5-core/issues/67). ([a1fa64f](https://github.com/ckeditor/ckeditor5-core/commit/a1fa64f))
|
|
296
|
+
|
|
297
|
+
### Other changes
|
|
298
|
+
|
|
299
|
+
* Updated translations. ([1296b03](https://github.com/ckeditor/ckeditor5-core/commit/1296b03))
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
## [0.7.0](https://github.com/ckeditor/ckeditor5-core/compare/v0.6.0...v0.7.0) (2017-03-06)
|
|
303
|
+
|
|
304
|
+
### Features
|
|
305
|
+
|
|
306
|
+
* Added support for loading plugins by name and the `config.removePlugins` option. Closes [#49](https://github.com/ckeditor/ckeditor5/issues/49). ([dfee52e](https://github.com/ckeditor/ckeditor5-core/commit/dfee52e))
|
|
307
|
+
* Added the "low-vision" icon. Closes [#68](https://github.com/ckeditor/ckeditor5/issues/68). ([4c3d306](https://github.com/ckeditor/ckeditor5-core/commit/4c3d306))
|
|
308
|
+
|
|
309
|
+
### Other changes
|
|
310
|
+
|
|
311
|
+
* Uploaded translations. ([a39e84b](https://github.com/ckeditor/ckeditor5-core/commit/a39e84b))
|
package/LICENSE.md
CHANGED
|
@@ -11,6 +11,10 @@ Sources of Intellectual Property Included in CKEditor
|
|
|
11
11
|
|
|
12
12
|
Where not otherwise indicated, all CKEditor content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, CKEditor will incorporate work done by developers outside of CKSource with their express permission.
|
|
13
13
|
|
|
14
|
+
The following libraries are included in CKEditor under the [MIT license](https://opensource.org/licenses/MIT):
|
|
15
|
+
|
|
16
|
+
* lodash - Copyright (c) JS Foundation and other contributors https://js.foundation/. Based on Underscore.js, copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors http://underscorejs.org/.
|
|
17
|
+
|
|
14
18
|
Trademarks
|
|
15
19
|
----------
|
|
16
20
|
|
package/lang/contexts.json
CHANGED
|
@@ -5,5 +5,6 @@
|
|
|
5
5
|
"Save": "Label for the Save button.",
|
|
6
6
|
"Show more items": "Label of a toolbar button which reveals more toolbar items.",
|
|
7
7
|
"%0 of %1": "Label for an ‘X of Y’ status of a typical next/previous navigation. For instance, ‘Page 5 of 20’ or 'Search result 5 of 20'.",
|
|
8
|
-
"Cannot upload file:": "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
8
|
+
"Cannot upload file:": "A generic error message displayed on upload failure. The file name is concatenated to this text.",
|
|
9
|
+
"Rich Text Editor. Editing area: %0": "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
9
10
|
}
|
package/lang/translations/af.po
CHANGED
|
@@ -43,3 +43,7 @@ msgstr "%0 van %1"
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "Lêer nie opgelaai nie:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr ""
|
package/lang/translations/ar.po
CHANGED
|
@@ -22,11 +22,11 @@ msgstr "إلغاء"
|
|
|
22
22
|
|
|
23
23
|
msgctxt "The label used by a button next to the color palette in the color picker that removes the color (resets it to an empty value, example usages in font color or table properties)."
|
|
24
24
|
msgid "Remove color"
|
|
25
|
-
msgstr ""
|
|
25
|
+
msgstr "إزالة اللون"
|
|
26
26
|
|
|
27
27
|
msgctxt "The label used by a button next to the color palette in the color picker that restores the default value if the default table properties are specified."
|
|
28
28
|
msgid "Restore default"
|
|
29
|
-
msgstr ""
|
|
29
|
+
msgstr "استعادة الافتراضي"
|
|
30
30
|
|
|
31
31
|
msgctxt "Label for the Save button."
|
|
32
32
|
msgid "Save"
|
|
@@ -34,12 +34,16 @@ msgstr "حفظ"
|
|
|
34
34
|
|
|
35
35
|
msgctxt "Label of a toolbar button which reveals more toolbar items."
|
|
36
36
|
msgid "Show more items"
|
|
37
|
-
msgstr ""
|
|
37
|
+
msgstr "عرض المزيد من العناصر"
|
|
38
38
|
|
|
39
39
|
msgctxt "Label for an ‘X of Y’ status of a typical next/previous navigation. For instance, ‘Page 5 of 20’ or 'Search result 5 of 20'."
|
|
40
40
|
msgid "%0 of %1"
|
|
41
|
-
msgstr ""
|
|
41
|
+
msgstr "%0 من %1"
|
|
42
42
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "لا يمكن رفع الملف:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr "محرر النصوص المنسّقة. منطقة التحرير: %0"
|
package/lang/translations/ast.po
CHANGED
|
@@ -43,3 +43,7 @@ msgstr ""
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr ""
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr ""
|
package/lang/translations/az.po
CHANGED
|
@@ -43,3 +43,7 @@ msgstr "%1-dən %0"
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "Fayl yüklənə bilmir"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr ""
|
package/lang/translations/bg.po
CHANGED
|
@@ -22,11 +22,11 @@ msgstr "Отказ"
|
|
|
22
22
|
|
|
23
23
|
msgctxt "The label used by a button next to the color palette in the color picker that removes the color (resets it to an empty value, example usages in font color or table properties)."
|
|
24
24
|
msgid "Remove color"
|
|
25
|
-
msgstr ""
|
|
25
|
+
msgstr "Премахни цвят"
|
|
26
26
|
|
|
27
27
|
msgctxt "The label used by a button next to the color palette in the color picker that restores the default value if the default table properties are specified."
|
|
28
28
|
msgid "Restore default"
|
|
29
|
-
msgstr ""
|
|
29
|
+
msgstr "Възстанови първоначалните настройки"
|
|
30
30
|
|
|
31
31
|
msgctxt "Label for the Save button."
|
|
32
32
|
msgid "Save"
|
|
@@ -34,12 +34,16 @@ msgstr "Запазване"
|
|
|
34
34
|
|
|
35
35
|
msgctxt "Label of a toolbar button which reveals more toolbar items."
|
|
36
36
|
msgid "Show more items"
|
|
37
|
-
msgstr ""
|
|
37
|
+
msgstr "Покажи повече единици"
|
|
38
38
|
|
|
39
39
|
msgctxt "Label for an ‘X of Y’ status of a typical next/previous navigation. For instance, ‘Page 5 of 20’ or 'Search result 5 of 20'."
|
|
40
40
|
msgid "%0 of %1"
|
|
41
|
-
msgstr ""
|
|
41
|
+
msgstr "%0 от %1"
|
|
42
42
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
|
-
msgstr ""
|
|
45
|
+
msgstr "Не може да качи файл:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr "Rich Text Editor. Зона за редактиране: %0"
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Bengali (https://www.transifex.com/ckeditor/teams/11143/bn/)\n"
|
|
16
|
+
"Language: bn\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "Label for the Cancel button."
|
|
20
|
+
msgid "Cancel"
|
|
21
|
+
msgstr "বাতিল করুন"
|
|
22
|
+
|
|
23
|
+
msgctxt "The label used by a button next to the color palette in the color picker that removes the color (resets it to an empty value, example usages in font color or table properties)."
|
|
24
|
+
msgid "Remove color"
|
|
25
|
+
msgstr "রং মুছে ফেলুন"
|
|
26
|
+
|
|
27
|
+
msgctxt "The label used by a button next to the color palette in the color picker that restores the default value if the default table properties are specified."
|
|
28
|
+
msgid "Restore default"
|
|
29
|
+
msgstr "পূর্বাবস্থায় ফিরিয়ে আনুন"
|
|
30
|
+
|
|
31
|
+
msgctxt "Label for the Save button."
|
|
32
|
+
msgid "Save"
|
|
33
|
+
msgstr "সংরক্ষণ করুন"
|
|
34
|
+
|
|
35
|
+
msgctxt "Label of a toolbar button which reveals more toolbar items."
|
|
36
|
+
msgid "Show more items"
|
|
37
|
+
msgstr "আরও আইটেম দেখান"
|
|
38
|
+
|
|
39
|
+
msgctxt "Label for an ‘X of Y’ status of a typical next/previous navigation. For instance, ‘Page 5 of 20’ or 'Search result 5 of 20'."
|
|
40
|
+
msgid "%0 of %1"
|
|
41
|
+
msgstr "%0 এর %1"
|
|
42
|
+
|
|
43
|
+
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
|
+
msgid "Cannot upload file:"
|
|
45
|
+
msgstr "ফাইল আপলোড করা যাবে নাঃ"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr "রিচ টেক্সট এডিটর। সম্পাদনার ক্ষেত্র: %0"
|
package/lang/translations/bs.po
CHANGED
|
@@ -43,3 +43,7 @@ msgstr "%0 od %1"
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "Nije moguće učitati fajl:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr ""
|
package/lang/translations/ca.po
CHANGED
|
@@ -22,11 +22,11 @@ msgstr "Cancel·lar"
|
|
|
22
22
|
|
|
23
23
|
msgctxt "The label used by a button next to the color palette in the color picker that removes the color (resets it to an empty value, example usages in font color or table properties)."
|
|
24
24
|
msgid "Remove color"
|
|
25
|
-
msgstr ""
|
|
25
|
+
msgstr "Eliminar el color"
|
|
26
26
|
|
|
27
27
|
msgctxt "The label used by a button next to the color palette in the color picker that restores the default value if the default table properties are specified."
|
|
28
28
|
msgid "Restore default"
|
|
29
|
-
msgstr ""
|
|
29
|
+
msgstr "Restaurar el valor predeterminat"
|
|
30
30
|
|
|
31
31
|
msgctxt "Label for the Save button."
|
|
32
32
|
msgid "Save"
|
|
@@ -34,12 +34,16 @@ msgstr "Desar"
|
|
|
34
34
|
|
|
35
35
|
msgctxt "Label of a toolbar button which reveals more toolbar items."
|
|
36
36
|
msgid "Show more items"
|
|
37
|
-
msgstr ""
|
|
37
|
+
msgstr "Mostrar més elements"
|
|
38
38
|
|
|
39
39
|
msgctxt "Label for an ‘X of Y’ status of a typical next/previous navigation. For instance, ‘Page 5 of 20’ or 'Search result 5 of 20'."
|
|
40
40
|
msgid "%0 of %1"
|
|
41
|
-
msgstr ""
|
|
41
|
+
msgstr "%0 de %1"
|
|
42
42
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "No es pot pujar l'arxiu:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr "Editor de text enriquit. Àrea d'edició: %0"
|
package/lang/translations/cs.po
CHANGED
|
@@ -43,3 +43,7 @@ msgstr "%0 z %1"
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "Soubor nelze nahrát:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr "Editační oblast rich text editoru: %0"
|
package/lang/translations/da.po
CHANGED
|
@@ -43,3 +43,7 @@ msgstr "%0 af %1"
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "Kan ikke uploade fil:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr "Rich text redigering. Redigeringsområde: %0"
|
|
@@ -43,3 +43,7 @@ msgstr ""
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "Datei kann nicht hochgeladen werden:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr ""
|
package/lang/translations/de.po
CHANGED
|
@@ -43,3 +43,7 @@ msgstr "%0 von %1"
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "Die Datei kann nicht hochgeladen werden:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr "Rich Text Editor. Bearbeitungsbereich: %0"
|
package/lang/translations/el.po
CHANGED
|
@@ -43,3 +43,7 @@ msgstr "%0 από %1"
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "Αδύνατη η αποστολή του αρχείου:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr "Πρόγραμμα επεξεργασίας εμπλουτισμένου κειμένου. Περιοχή επεξεργασίας: %0"
|
|
@@ -43,3 +43,7 @@ msgstr "%0 of %1"
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "Cannot upload file:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr ""
|
|
@@ -43,3 +43,7 @@ msgstr "%0 of %1"
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "Cannot upload file:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr ""
|
package/lang/translations/en.po
CHANGED
|
@@ -43,3 +43,7 @@ msgstr "%0 of %1"
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "Cannot upload file:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr "Rich Text Editor. Editing area: %0"
|
package/lang/translations/eo.po
CHANGED
|
@@ -43,3 +43,7 @@ msgstr ""
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr ""
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr ""
|
package/lang/translations/es.po
CHANGED
|
@@ -14,7 +14,7 @@ msgid ""
|
|
|
14
14
|
msgstr ""
|
|
15
15
|
"Language-Team: Spanish (https://www.transifex.com/ckeditor/teams/11143/es/)\n"
|
|
16
16
|
"Language: es\n"
|
|
17
|
-
"Plural-Forms: nplurals=
|
|
17
|
+
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
18
18
|
|
|
19
19
|
msgctxt "Label for the Cancel button."
|
|
20
20
|
msgid "Cancel"
|
|
@@ -43,3 +43,7 @@ msgstr "%0 de %1"
|
|
|
43
43
|
msgctxt "A generic error message displayed on upload failure. The file name is concatenated to this text."
|
|
44
44
|
msgid "Cannot upload file:"
|
|
45
45
|
msgstr "No se pudo cargar el archivo:"
|
|
46
|
+
|
|
47
|
+
msgctxt "Accessible label of the specific editing area of the editor acting as a root of the entire application."
|
|
48
|
+
msgid "Rich Text Editor. Editing area: %0"
|
|
49
|
+
msgstr "Editor de texto enriquecido. Área de edición: %0"
|