Merge pull request #12439 from maxunbearable/fix/1534-custom-translation
Added custom translation support
This commit is contained in:
		
						commit
						2e221e7b9a
					
				@ -18,5 +18,5 @@
 | 
			
		||||
 | 
			
		||||
<a *ngFor="let subEntity of subEntities" class="tb-entity-chip"
 | 
			
		||||
   routerLink="{{entityDetailsPrefixUrl}}/{{subEntity.id.id}}" (click)="$event.stopPropagation();">
 | 
			
		||||
  {{ subEntity.name }}
 | 
			
		||||
  {{ subEntity.name | customTranslate }}
 | 
			
		||||
</a>
 | 
			
		||||
 | 
			
		||||
@ -118,7 +118,7 @@
 | 
			
		||||
          <mat-header-cell *matHeaderCellDef mat-sort-header style="width: 33%"> {{ 'relation.to-entity-name' | translate }} </mat-header-cell>
 | 
			
		||||
          <mat-cell *matCellDef="let relation">
 | 
			
		||||
            <a class="link" [routerLink]="relation.entityURL">
 | 
			
		||||
              {{ relation.toName }}
 | 
			
		||||
              {{ relation.toName | customTranslate }}
 | 
			
		||||
            </a>
 | 
			
		||||
          </mat-cell>
 | 
			
		||||
        </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-cell *matCellDef="let relation">
 | 
			
		||||
            <a class="link" [routerLink]="relation.entityURL">
 | 
			
		||||
              {{ relation.fromName }}
 | 
			
		||||
              {{ relation.fromName | customTranslate }}
 | 
			
		||||
            </a>
 | 
			
		||||
          </mat-cell>
 | 
			
		||||
        </ng-container>
 | 
			
		||||
 | 
			
		||||
@ -49,7 +49,7 @@
 | 
			
		||||
        <div class="tb-link-icon-container">
 | 
			
		||||
          <tb-icon color="primary">{{ docLink.icon }}</tb-icon>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="tb-link-text">{{ docLink.name }}</div>
 | 
			
		||||
        <div class="tb-link-text">{{ docLink.name | customTranslate }}</div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="tb-edit-buttons flex flex-row items-center justify-start">
 | 
			
		||||
 | 
			
		||||
@ -34,7 +34,7 @@
 | 
			
		||||
          <div class="tb-link-icon-container">
 | 
			
		||||
            <tb-icon color="primary">{{ docLink.icon }}</tb-icon>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div class="tb-link-text">{{ docLink.name }}</div>
 | 
			
		||||
          <div class="tb-link-text">{{ docLink.name | customTranslate }}</div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </a>
 | 
			
		||||
    </mat-grid-tile>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user