@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.
@@ -19934,7 +19934,7 @@ let ImageEditor = ImageEditor_1 = class ImageEditor extends Component {
19934
19934
  let content = '';
19935
19935
  this.element.querySelector('#' + this.element.id + '_dialog').style.display = 'block';
19936
19936
  let headerObj;
19937
- const okObj = { key: 'OK' };
19937
+ const okObj = { key: 'DlgOK' };
19938
19938
  this.notify('toolbar', { prop: 'getLocaleText', onPropertyChange: false, value: { obj: okObj } });
19939
19939
  if (type === 'multi-select-image') {
19940
19940
  headerObj = { key: 'ImageErrorDialogHeader' };
@@ -19963,7 +19963,7 @@ let ImageEditor = ImageEditor_1 = class ImageEditor extends Component {
19963
19963
  close: this.dlgCloseBtnClick.bind(this),
19964
19964
  buttons: [
19965
19965
  { click: this.dlgCloseBtnClick.bind(this),
19966
- buttonModel: { content: okObj['value'], iconCss: 'e-icons e-close' }
19966
+ buttonModel: { content: okObj['value'] }
19967
19967
  }
19968
19968
  ]
19969
19969
  });
@@ -23230,13 +23230,14 @@ class ToolbarModule {
23230
23230
  ConfirmDialogHeader: 'Confirm Save Changes',
23231
23231
  ConfirmDialogContent: 'Do you want to save the changes you made to the image?',
23232
23232
  AlertDialogHeader: 'Unsupported file',
23233
- AlertDialogContent: 'The dropped file is unsupported.',
23233
+ AlertDialogContent: 'The selected file is unsupported.',
23234
23234
  Yes: 'Yes',
23235
23235
  No: 'No',
23236
23236
  ImageErrorDialogHeader: 'Image Selection Error',
23237
23237
  ImageErrorDialogContent: 'Please select only one image to open.',
23238
23238
  Straighten: 'Straighten',
23239
23239
  NoOutline: 'No outline',
23240
+ DlgOK: 'OK'
23240
23241
  };
23241
23242
  this.l10n = new L10n('image-editor', this.defaultLocale, this.parent.locale);
23242
23243
  }