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