@syncfusion/ej2-image-editor 25.1.39 → 25.1.40

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.
@@ -19994,7 +19994,7 @@ var ImageEditor = /** @__PURE__ @class */ (function (_super) {
19994
19994
  var content = '';
19995
19995
  this.element.querySelector('#' + this.element.id + '_dialog').style.display = 'block';
19996
19996
  var headerObj;
19997
- var okObj = { key: 'OK' };
19997
+ var okObj = { key: 'DlgOK' };
19998
19998
  this.notify('toolbar', { prop: 'getLocaleText', onPropertyChange: false, value: { obj: okObj } });
19999
19999
  if (type === 'multi-select-image') {
20000
20000
  headerObj = { key: 'ImageErrorDialogHeader' };
@@ -20023,7 +20023,7 @@ var ImageEditor = /** @__PURE__ @class */ (function (_super) {
20023
20023
  close: this.dlgCloseBtnClick.bind(this),
20024
20024
  buttons: [
20025
20025
  { click: this.dlgCloseBtnClick.bind(this),
20026
- buttonModel: { content: okObj['value'], iconCss: 'e-icons e-close' }
20026
+ buttonModel: { content: okObj['value'] }
20027
20027
  }
20028
20028
  ]
20029
20029
  });
@@ -23292,13 +23292,14 @@ var ToolbarModule = /** @__PURE__ @class */ (function () {
23292
23292
  ConfirmDialogHeader: 'Confirm Save Changes',
23293
23293
  ConfirmDialogContent: 'Do you want to save the changes you made to the image?',
23294
23294
  AlertDialogHeader: 'Unsupported file',
23295
- AlertDialogContent: 'The dropped file is unsupported.',
23295
+ AlertDialogContent: 'The selected file is unsupported.',
23296
23296
  Yes: 'Yes',
23297
23297
  No: 'No',
23298
23298
  ImageErrorDialogHeader: 'Image Selection Error',
23299
23299
  ImageErrorDialogContent: 'Please select only one image to open.',
23300
23300
  Straighten: 'Straighten',
23301
23301
  NoOutline: 'No outline',
23302
+ DlgOK: 'OK'
23302
23303
  };
23303
23304
  this.l10n = new L10n('image-editor', this.defaultLocale, this.parent.locale);
23304
23305
  };