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