Added custom translation support

This commit is contained in:
mpetrov 2025-01-13 18:26:35 +02:00
parent 34bd41ff4e
commit 0699de9484
5 changed files with 6 additions and 6 deletions

View File

@ -18,5 +18,5 @@
<a *ngFor="let subEntity of subEntities" class="tb-entity-chip" <a *ngFor="let subEntity of subEntities" class="tb-entity-chip"
routerLink="{{entityDetailsPrefixUrl}}/{{subEntity.id.id}}" (click)="$event.stopPropagation();"> routerLink="{{entityDetailsPrefixUrl}}/{{subEntity.id.id}}" (click)="$event.stopPropagation();">
{{ subEntity.name }} {{ subEntity.name | customTranslate }}
</a> </a>

View File

@ -118,7 +118,7 @@
<mat-header-cell *matHeaderCellDef mat-sort-header style="width: 33%"> {{ 'relation.to-entity-name' | translate }} </mat-header-cell> <mat-header-cell *matHeaderCellDef mat-sort-header style="width: 33%"> {{ 'relation.to-entity-name' | translate }} </mat-header-cell>
<mat-cell *matCellDef="let relation"> <mat-cell *matCellDef="let relation">
<a class="link" [routerLink]="relation.entityURL"> <a class="link" [routerLink]="relation.entityURL">
{{ relation.toName }} {{ relation.toName | customTranslate }}
</a> </a>
</mat-cell> </mat-cell>
</ng-container> </ng-container>
@ -132,7 +132,7 @@
<mat-header-cell *matHeaderCellDef mat-sort-header style="width: 33%"> {{ 'relation.from-entity-name' | translate }} </mat-header-cell> <mat-header-cell *matHeaderCellDef mat-sort-header style="width: 33%"> {{ 'relation.from-entity-name' | translate }} </mat-header-cell>
<mat-cell *matCellDef="let relation"> <mat-cell *matCellDef="let relation">
<a class="link" [routerLink]="relation.entityURL"> <a class="link" [routerLink]="relation.entityURL">
{{ relation.fromName }} {{ relation.fromName | customTranslate }}
</a> </a>
</mat-cell> </mat-cell>
</ng-container> </ng-container>

View File

@ -49,7 +49,7 @@
<div class="tb-link-icon-container"> <div class="tb-link-icon-container">
<tb-icon color="primary">{{ docLink.icon }}</tb-icon> <tb-icon color="primary">{{ docLink.icon }}</tb-icon>
</div> </div>
<div class="tb-link-text">{{ docLink.name }}</div> <div class="tb-link-text">{{ docLink.name | customTranslate }}</div>
</div> </div>
</div> </div>
<div class="tb-edit-buttons flex flex-row items-center justify-start"> <div class="tb-edit-buttons flex flex-row items-center justify-start">

View File

@ -34,7 +34,7 @@
<div class="tb-link-icon-container"> <div class="tb-link-icon-container">
<tb-icon color="primary">{{ docLink.icon }}</tb-icon> <tb-icon color="primary">{{ docLink.icon }}</tb-icon>
</div> </div>
<div class="tb-link-text">{{ docLink.name }}</div> <div class="tb-link-text">{{ docLink.name | customTranslate }}</div>
</div> </div>
</a> </a>
</mat-grid-tile> </mat-grid-tile>

View File

@ -15,7 +15,7 @@
limitations under the License. limitations under the License.
--> -->
<h2 mat-dialog-title tbTruncateWithTooltip>{{data.title}}</h2> <h2 mat-dialog-title tbTruncateWithTooltip>{{data.title | customTranslate}}</h2>
<div mat-dialog-content [innerHTML]="data.message | safe: 'html'"></div> <div mat-dialog-content [innerHTML]="data.message | safe: 'html'"></div>
<div mat-dialog-actions class="flex items-center justify-end"> <div mat-dialog-actions class="flex items-center justify-end">
<button mat-button color="primary" [mat-dialog-close]="false">{{data.cancel}}</button> <button mat-button color="primary" [mat-dialog-close]="false">{{data.cancel}}</button>