@@ -132,6 +132,33 @@ export default class Editor {
132132 error : {
133133 system : string ;
134134 } ;
135+ field : {
136+ autocomplete : {
137+ noResults : string ;
138+ placeholder : string ;
139+ } ;
140+ tags : {
141+ addButton : string ;
142+ inputPlaceholder : string ;
143+ noResults : string ;
144+ placeholder : string ;
145+ } ;
146+ upload : {
147+ choose : string ;
148+ clear : string ;
149+ dragDrop : string ;
150+ noFile : string ;
151+ processing : string ;
152+ uploading : string ;
153+ } ;
154+ uploadMany : {
155+ choose : string ;
156+ dragDrop : string ;
157+ noFiles : string ;
158+ processing : string ;
159+ uploading : string ;
160+ } ;
161+ } ;
135162 multi : {
136163 info : string ;
137164 noMulti : string ;
@@ -221,6 +248,7 @@ export default class Editor {
221248 files : typeof publicApi . files ;
222249 get : typeof publicApi . get ;
223250 hide : typeof publicApi . hide ;
251+ i18n : typeof publicApi . i18n ;
224252 ids : typeof publicApi . ids ;
225253 inError : typeof publicApi . inError ;
226254 inline : typeof publicApi . inline ;
@@ -260,7 +288,6 @@ export default class Editor {
260288 processing : HTMLElement ;
261289 wrapper : HTMLElement ;
262290 } ;
263- protected i18n : typeof Editor . defaults . i18n ;
264291 protected _actionClass : typeof privateApi . _actionClass ;
265292 protected _ajax : typeof privateApi . _ajax ;
266293 protected _animate : typeof privateApi . _animate ;
@@ -272,6 +299,7 @@ export default class Editor {
272299 protected _crudArgs : typeof privateApi . _crudArgs ;
273300 protected _dataSource : typeof privateApi . _dataSource ;
274301 protected _displayReorder : typeof privateApi . _displayReorder ;
302+ protected _drawTitle : typeof privateApi . _drawTitle ;
275303 protected _edit : typeof privateApi . _edit ;
276304 protected _event : typeof privateApi . _event ;
277305 protected _eventName : typeof privateApi . _eventName ;
@@ -327,6 +355,33 @@ export default class Editor {
327355 error : {
328356 system : string ;
329357 } ;
358+ field : {
359+ autocomplete : {
360+ noResults : string ;
361+ placeholder : string ;
362+ } ;
363+ tags : {
364+ addButton : string ;
365+ inputPlaceholder : string ;
366+ noResults : string ;
367+ placeholder : string ;
368+ } ;
369+ upload : {
370+ choose : string ;
371+ clear : string ;
372+ dragDrop : string ;
373+ noFile : string ;
374+ processing : string ;
375+ uploading : string ;
376+ } ;
377+ uploadMany : {
378+ choose : string ;
379+ dragDrop : string ;
380+ noFiles : string ;
381+ processing : string ;
382+ uploading : string ;
383+ } ;
384+ } ;
330385 multi : {
331386 info : string ;
332387 noMulti : string ;
0 commit comments