aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/shared/information/video-alert.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+videos/+video-watch/shared/information/video-alert.component.html')
-rw-r--r--client/src/app/+videos/+video-watch/shared/information/video-alert.component.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/client/src/app/+videos/+video-watch/shared/information/video-alert.component.html b/client/src/app/+videos/+video-watch/shared/information/video-alert.component.html
new file mode 100644
index 000000000..3480d3656
--- /dev/null
+++ b/client/src/app/+videos/+video-watch/shared/information/video-alert.component.html
@@ -0,0 +1,24 @@
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
9<div i18n class="alert alert-info" *ngIf="hasVideoScheduledPublication()">
10 This video will be published on {{ video.scheduledUpdate.updateAt | date: 'full' }}.
11</div>
12
13<div i18n class="alert alert-info" *ngIf="isWaitingForLive()">
14 This live has not started yet.
15</div>
16
17<div i18n class="alert alert-info" *ngIf="isLiveEnded()">
18 This live has ended.
19</div>
20
21<div class="alert alert-danger" *ngIf="video?.blacklisted">
22 <div class="blocked-label" i18n>This video is blocked.</div>
23 {{ video.blockedReason }}
24</div>