diff options
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/videos/+video-edit/shared/video-edit.component.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/videos/+video-edit/shared/video-edit.component.html b/client/src/app/videos/+video-edit/shared/video-edit.component.html index 69f306519..46869268c 100644 --- a/client/src/app/videos/+video-edit/shared/video-edit.component.html +++ b/client/src/app/videos/+video-edit/shared/video-edit.component.html | |||
@@ -155,7 +155,7 @@ | |||
155 | [href]="videoCaption.captionPath" | 155 | [href]="videoCaption.captionPath" |
156 | >{{ videoCaption.language.label }}</a> | 156 | >{{ videoCaption.language.label }}</a> |
157 | 157 | ||
158 | <div class="caption-entry-state">Already uploaded ✔</div> | 158 | <div i18n class="caption-entry-state">Already uploaded ✔</div> |
159 | 159 | ||
160 | <span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Delete</span> | 160 | <span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Delete</span> |
161 | </ng-container> | 161 | </ng-container> |
@@ -163,7 +163,7 @@ | |||
163 | <ng-container *ngIf="videoCaption.action === 'CREATE'"> | 163 | <ng-container *ngIf="videoCaption.action === 'CREATE'"> |
164 | <span class="caption-entry-label">{{ videoCaption.language.label }}</span> | 164 | <span class="caption-entry-label">{{ videoCaption.language.label }}</span> |
165 | 165 | ||
166 | <div class="caption-entry-state caption-entry-state-create">Will be created on update</div> | 166 | <div i18n class="caption-entry-state caption-entry-state-create">Will be created on update</div> |
167 | 167 | ||
168 | <span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Cancel create</span> | 168 | <span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Cancel create</span> |
169 | </ng-container> | 169 | </ng-container> |
@@ -171,14 +171,14 @@ | |||
171 | <ng-container *ngIf="videoCaption.action === 'REMOVE'"> | 171 | <ng-container *ngIf="videoCaption.action === 'REMOVE'"> |
172 | <span class="caption-entry-label">{{ videoCaption.language.label }}</span> | 172 | <span class="caption-entry-label">{{ videoCaption.language.label }}</span> |
173 | 173 | ||
174 | <div class="caption-entry-state caption-entry-state-delete">Will be deleted on update</div> | 174 | <div i18n class="caption-entry-state caption-entry-state-delete">Will be deleted on update</div> |
175 | 175 | ||
176 | <span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Cancel deletion</span> | 176 | <span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Cancel deletion</span> |
177 | </ng-container> | 177 | </ng-container> |
178 | </div> | 178 | </div> |
179 | </div> | 179 | </div> |
180 | 180 | ||
181 | <div class="no-caption" *ngIf="videoCaptions?.length === 0"> | 181 | <div i18n class="no-caption" *ngIf="videoCaptions?.length === 0"> |
182 | No captions for now. | 182 | No captions for now. |
183 | </div> | 183 | </div> |
184 | 184 | ||