@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.
@@ -1839,15 +1839,15 @@
1839
1839
  if (typeof (titleLineEnabled) != 'undefined') {
1840
1840
  this.enableTitleLine = titleLineEnabled;
1841
1841
  }
1842
- this.editText = this.translateService.translate('Common.edit').length > 5 ? (this.translateService.translate('Common.edit').substring(0, 5) + '...') : this.translateService.translate('Common.edit');
1842
+ this.editText = this.translateService.translate('Common.edit').length > 6 ? (this.translateService.translate('Common.edit').substring(0, 6) + '...') : this.translateService.translate('Common.edit');
1843
1843
  this.editToolTipValue = this.translateService.translate('Common.edit');
1844
- this.copyText = this.translateService.translate('Common.copy').length > 5 ? (this.translateService.translate('Common.copy').substring(0, 5) + '...') : this.translateService.translate('Common.copy');
1844
+ this.copyText = this.translateService.translate('Common.copy').length > 6 ? (this.translateService.translate('Common.copy').substring(0, 6) + '...') : this.translateService.translate('Common.copy');
1845
1845
  this.copyToolTipValue = this.translateService.translate('Common.copy');
1846
- this.moveText = this.translateService.translate('Common.move').length > 5 ? (this.translateService.translate('Common.move').substring(0, 5) + '...') : this.translateService.translate('Common.move');
1846
+ this.moveText = this.translateService.translate('Common.move').length > 6 ? (this.translateService.translate('Common.move').substring(0, 6) + '...') : this.translateService.translate('Common.move');
1847
1847
  this.moveToolTipValue = this.translateService.translate('Common.move');
1848
- this.excelText = this.translateService.translate('Common.excel').length > 5 ? (this.translateService.translate('Common.excel').substring(0, 5) + '...') : this.translateService.translate('Common.excel');
1848
+ this.excelText = this.translateService.translate('Common.excel').length > 6 ? (this.translateService.translate('Common.excel').substring(0, 6) + '...') : this.translateService.translate('Common.excel');
1849
1849
  this.excelToolTipValue = this.translateService.translate('Common.excel');
1850
- this.deleteText = this.translateService.translate('Common.delete').length > 5 ? (this.translateService.translate('Common.delete').substring(0, 5) + '...') : this.translateService.translate('Common.delete');
1850
+ this.deleteText = this.translateService.translate('Common.delete').length > 6 ? (this.translateService.translate('Common.delete').substring(0, 6) + '...') : this.translateService.translate('Common.delete');
1851
1851
  this.deleteToolTipValue = this.translateService.translate('Common.delete');
1852
1852
  widgetContainer.isWidgetLoaded = true;
1853
1853
  widgetConfigFilter.appConfig = this.appConfig;