diff --git a/src/app/components/creator/_dialogs/content-edit/content-edit.component.html b/src/app/components/creator/_dialogs/content-edit/content-edit.component.html index dc9b531e49bc0741f3cb49b1cddc8e8ae09f4701..4739a783fe6e2c7533ec6fcd0e62c16d9be89fcc 100644 --- a/src/app/components/creator/_dialogs/content-edit/content-edit.component.html +++ b/src/app/components/creator/_dialogs/content-edit/content-edit.component.html @@ -1,9 +1,9 @@ <div fxLayout="column" fxLayoutAlign="center" fxLayoutGap="10px"> <mat-form-field> - <input matInput [(ngModel)]="content.subject" maxlength="20" placeholder="Thema" name="subject"/> + <input matInput [(ngModel)]="content.subject" maxlength="20" placeholder="{{'content.subject' | translate}}" name="subject"/> </mat-form-field> <mat-form-field> - <textarea matInput [(ngModel)]="content.body" rows="3" maxlength="100" placeholder="Inhalt" name="body"></textarea> + <textarea matInput [(ngModel)]="content.body" rows="3" maxlength="100" placeholder="{{'content.body' | translate}}" name="body"></textarea> </mat-form-field> <h4>{{'content.answers' | translate}}</h4> <mat-table [dataSource]="displayAnswers">