Add i18n attributes
[oweals/peertube.git] / client / src / app / shared / forms / markdown-textarea.component.html
1 <div class="root" [ngStyle]="{ 'flex-direction': flexDirection }">
2   <textarea
3       [(ngModel)]="content" (ngModelChange)="onModelChange()"
4       [ngClass]="classes" [ngStyle]="{ width: textareaWidth, height: textareaHeight, 'margin-right': textareaMarginRight }"
5       id="description" name="description">
6   </textarea>
7
8   <tabset *ngIf="arePreviewsDisplayed()" class="previews">
9     <tab *ngIf="truncate !== undefined" i18n-heading heading="Truncated preview" [innerHTML]="truncatedPreviewHTML"></tab>
10     <tab i18n-heading heading="Complete preview" [innerHTML]="previewHTML"></tab>
11   </tabset>
12 </div>