]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-watch/shared/information/video-alert.component.html
video: add video stranscoding_failed state
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / shared / information / video-alert.component.html
CommitLineData
2453589a
C
1<div i18n class="alert alert-warning" *ngIf="isVideoToImport()">
2 The video is being imported, it will be available when the import is finished.
3</div>
4
5<div i18n class="alert alert-warning" *ngIf="isVideoToTranscode()">
6 The video is being transcoded, it may not work properly.
7</div>
8
0305db28
JB
9<div i18n class="alert alert-warning" *ngIf="isVideoToMoveToExternalStorage()">
10 The video is being moved to an external server, it may not work properly.
11</div>
12
2453589a
C
13<div i18n class="alert alert-info" *ngIf="hasVideoScheduledPublication()">
14 This video will be published on {{ video.scheduledUpdate.updateAt | date: 'full' }}.
15</div>
16
17<div i18n class="alert alert-info" *ngIf="isWaitingForLive()">
18 This live has not started yet.
19</div>
20
21<div i18n class="alert alert-info" *ngIf="isLiveEnded()">
22 This live has ended.
23</div>
24
25<div class="alert alert-danger" *ngIf="video?.blacklisted">
26 <div class="blocked-label" i18n>This video is blocked.</div>
2760b454 27 {{ video.blacklistedReason }}
2453589a 28</div>