added new translation key

This commit is contained in:
Maksym Tsymbarov 2025-09-16 14:42:17 +03:00
parent 41d90b8e1b
commit da1252d868
3 changed files with 3 additions and 2 deletions

View File

@ -47,7 +47,7 @@
<table mat-table [dataSource]="source.timeseriesDatasource" [trackBy]="trackByRowTimestamp"
matSort [matSortActive]="source.pageLink.sortOrder.property" [matSortDirection]="source.pageLink.sortDirection()" matSortDisableClear>
<ng-container *ngIf="showTimestamp" [matColumnDef]="'0'">
<mat-header-cell *matHeaderCellDef mat-sort-header>{{ 'widgets.table.display-timestamp' | translate }}</mat-header-cell>
<mat-header-cell *matHeaderCellDef mat-sort-header>{{ 'widgets.table.timestamp-column-name' | translate }}</mat-header-cell>
<mat-cell *matCellDef="let row; let rowIndex = index"
[innerHTML]="cellContent(source, null, 0, row, row[0], rowIndex) | async"
[style]="cellStyle(source, null, 0, row, row[0], rowIndex) | async">

View File

@ -513,7 +513,7 @@ export class TimeseriesTableWidgetComponent extends PageComponent implements OnI
let title = '';
const header = this.sources[index].header.find(column => column.index.toString() === value);
if (value === '0') {
title = this.translate.instant('widgets.table.display-timestamp');
title = this.translate.instant('widgets.table.timestamp-column-name');
} else if (value === 'actions') {
title = 'Actions';
} else {

View File

@ -8973,6 +8973,7 @@
"show-empty-space-hidden-action": "Show empty space instead of hidden cell button action",
"dont-reserve-space-hidden-action": "Don't reserve space for hidden action buttons",
"display-timestamp": "Timestamp",
"timestamp-column-name":"Timestamp",
"display-pagination": "Display pagination",
"default-page-size": "Default page size",
"page-step-settings": "Page step settings",