@porscheinformatik/clr-addons 19.15.0 → 19.15.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.
@@ -5314,9 +5314,10 @@ class ClrViewEditSection {
5314
5314
  }
5315
5315
  constructor(cdr) {
5316
5316
  this.cdr = cdr;
5317
- this._saveText = 'Save';
5317
+ this.commonStrings = inject(ClrCommonStringsService);
5318
+ this._saveText = this.commonStrings.keys.apply;
5318
5319
  this._preventSave = false;
5319
- this._cancelText = 'Cancel';
5320
+ this._cancelText = this.commonStrings.keys.cancel;
5320
5321
  this._editable = true;
5321
5322
  this._editIcon = 'pencil';
5322
5323
  this._isCollapsible = false;