@schneideress/dashboardframework 0.0.126 → 0.0.127

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.
@@ -1633,15 +1633,15 @@ var RAWidgetContainer = /** @class */ (function () {
1633
1633
  if (typeof (titleLineEnabled) != 'undefined') {
1634
1634
  this.enableTitleLine = titleLineEnabled;
1635
1635
  }
1636
- this.editText = this.translateService.translate('Common.edit').length > 5 ? (this.translateService.translate('Common.edit').substring(0, 5) + '...') : this.translateService.translate('Common.edit');
1636
+ this.editText = this.translateService.translate('Common.edit').length > 6 ? (this.translateService.translate('Common.edit').substring(0, 6) + '...') : this.translateService.translate('Common.edit');
1637
1637
  this.editToolTipValue = this.translateService.translate('Common.edit');
1638
- this.copyText = this.translateService.translate('Common.copy').length > 5 ? (this.translateService.translate('Common.copy').substring(0, 5) + '...') : this.translateService.translate('Common.copy');
1638
+ this.copyText = this.translateService.translate('Common.copy').length > 6 ? (this.translateService.translate('Common.copy').substring(0, 6) + '...') : this.translateService.translate('Common.copy');
1639
1639
  this.copyToolTipValue = this.translateService.translate('Common.copy');
1640
- this.moveText = this.translateService.translate('Common.move').length > 5 ? (this.translateService.translate('Common.move').substring(0, 5) + '...') : this.translateService.translate('Common.move');
1640
+ this.moveText = this.translateService.translate('Common.move').length > 6 ? (this.translateService.translate('Common.move').substring(0, 6) + '...') : this.translateService.translate('Common.move');
1641
1641
  this.moveToolTipValue = this.translateService.translate('Common.move');
1642
- this.excelText = this.translateService.translate('Common.excel').length > 5 ? (this.translateService.translate('Common.excel').substring(0, 5) + '...') : this.translateService.translate('Common.excel');
1642
+ this.excelText = this.translateService.translate('Common.excel').length > 6 ? (this.translateService.translate('Common.excel').substring(0, 6) + '...') : this.translateService.translate('Common.excel');
1643
1643
  this.excelToolTipValue = this.translateService.translate('Common.excel');
1644
- this.deleteText = this.translateService.translate('Common.delete').length > 5 ? (this.translateService.translate('Common.delete').substring(0, 5) + '...') : this.translateService.translate('Common.delete');
1644
+ this.deleteText = this.translateService.translate('Common.delete').length > 6 ? (this.translateService.translate('Common.delete').substring(0, 6) + '...') : this.translateService.translate('Common.delete');
1645
1645
  this.deleteToolTipValue = this.translateService.translate('Common.delete');
1646
1646
  widgetContainer.isWidgetLoaded = true;
1647
1647
  widgetConfigFilter.appConfig = this.appConfig;