[ADF-2724] fix comments internationalization (#3195)

This commit is contained in:
Mario Romano
2018-04-16 13:05:09 +01:00
committed by Eugenio Romano
parent 68df6138c4
commit 8a0af2c5e4
24 changed files with 210 additions and 210 deletions

View File

@@ -1,10 +1,10 @@
<div class="adf-comments-container">
<div id="comment-header" class="adf-comments-header">
{{'ADF_TASK_LIST.DETAILS.COMMENTS.HEADER' | translate: { count: comments?.length} }}
{{'COMMENTS.HEADER' | translate: { count: comments?.length} }}
</div>
<div class="adf-comments-input-container" *ngIf="!isReadOnly()">
<mat-form-field class="adf-full-width">
<input matInput id="comment-input" placeholder="{{'ADF_TASK_LIST.DETAILS.COMMENTS.ADD' | translate}}" [(ngModel)]="message" (keyup.enter)="add()" (keyup.esc)="clear()">
<input matInput id="comment-input" placeholder="{{'COMMENTS.ADD' | translate}}" [(ngModel)]="message" (keyup.enter)="add()" (keyup.esc)="clear()">
</mat-form-field>
</div>