aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/shared/information/video-alert.component.html
blob: c6ffb1abdd23efbceab720ae7a6431359153531a (plain) (tree)
1
2
3
4
5
6
7
8

                                                                         



                                                                                 

      







                                                                                



                                                              



                                                                               













                                                                                      
                               
      
<div i18n class="alert alert-warning" *ngIf="isVideoTranscodingFailed()">
  Transcoding failed, this video may not work properly.
</div>

<div i18n class="alert alert-warning" *ngIf="isVideoMoveToObjectStorageFailed()">
  Move to external storage failed, this video may not work properly.
</div>

<div i18n class="alert alert-warning" *ngIf="isVideoToImport()">
  The video is being imported, it will be available when the import is finished.
</div>

<div i18n class="alert alert-warning" *ngIf="isVideoToTranscode()">
  The video is being transcoded, it may not work properly.
</div>

<div i18n class="alert alert-warning" *ngIf="isVideoToEdit()">
  The video is being edited, it may not work properly.
</div>

<div i18n class="alert alert-warning" *ngIf="isVideoToMoveToExternalStorage()">
  The video is being moved to an external server, it may not work properly.
</div>

<div i18n class="alert alert-info" *ngIf="hasVideoScheduledPublication()">
  This video will be published on {{ video.scheduledUpdate.updateAt | date: 'full' }}.
</div>

<div i18n class="alert alert-info" *ngIf="isWaitingForLive()">
  This live has not started yet.
</div>

<div i18n class="alert alert-info" *ngIf="isLiveEnded()">
  This live has ended.
</div>

<div class="alert alert-danger" *ngIf="video?.blacklisted">
  <div class="blocked-label" i18n>This video is blocked.</div>
  {{ video.blacklistedReason }}
</div>