]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-watch/shared/information/video-alert.component.html
Bumped to version v5.2.1
[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.
dbd9fb44
C
3</div>
4
5<div i18n class="alert alert-warning" *ngIf="isVideoMoveToObjectStorageFailed()">
6 Move to external storage failed, this video may not work properly.
221ee1ad
C
7</div>
8
2453589a
C
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
c729caf6
C
17<div i18n class="alert alert-warning" *ngIf="isVideoToEdit()">
18 The video is being edited, it may not work properly.
19</div>
20
0305db28
JB
21<div i18n class="alert alert-warning" *ngIf="isVideoToMoveToExternalStorage()">
22 The video is being moved to an external server, it may not work properly.
23</div>
24
b13a0a48 25<div i18n class="alert pt-alert-primary" *ngIf="hasVideoScheduledPublication()">
2453589a
C
26 This video will be published on {{ video.scheduledUpdate.updateAt | date: 'full' }}.
27</div>
28
b13a0a48 29<div i18n class="alert pt-alert-primary" *ngIf="isWaitingForLive()">
2453589a
C
30 This live has not started yet.
31</div>
32
b13a0a48 33<div i18n class="alert pt-alert-primary" *ngIf="isLiveEnded()">
2453589a
C
34 This live has ended.
35</div>
36
5a2f775a
C
37<div i18n class="alert alert-warning" *ngIf="noPlaylistVideoFound">
38 There are no videos available in this playlist.
39</div>
40
2453589a
C
41<div class="alert alert-danger" *ngIf="video?.blacklisted">
42 <div class="blocked-label" i18n>This video is blocked.</div>
2760b454 43 {{ video.blacklistedReason }}
2453589a 44</div>