]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts
Add more when deleting a video
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-miniature / video-actions-dropdown.component.ts
index feac79d4e82c1c2da0a84a4eaf20937737c3b718..790ae2a5e574e38c17a274ff378d354fefc4ec42 100644 (file)
@@ -177,9 +177,9 @@ export class VideoActionsDropdownComponent implements OnChanges {
   /* Action handlers */
 
   async unblockVideo () {
-    const confirmMessage = $localize`Do you really want to unblock this video? It will be available again in the videos list.`
+    const confirmMessage = $localize`Do you really want to unblock ${this.video.name}? It will be available again in the videos list.`
 
-    const res = await this.confirmService.confirm(confirmMessage, $localize`Unblock`)
+    const res = await this.confirmService.confirm(confirmMessage, $localize`Unblock ${this.video.name}`)
     if (res === false) return
 
     this.videoBlocklistService.unblockVideo(this.video.id)
@@ -200,12 +200,12 @@ export class VideoActionsDropdownComponent implements OnChanges {
   async removeVideo () {
     this.modalOpened.emit()
 
-    let message = $localize`Do you really want to delete this video?`
+    let message = $localize`Do you really want to delete ${this.video.name}?`
     if (this.video.isLive) {
       message += ' ' + $localize`The live stream will be automatically terminated.`
     }
 
-    const res = await this.confirmService.confirm(message, $localize`Delete`)
+    const res = await this.confirmService.confirm(message, $localize`Delete ${this.video.name}`)
     if (res === false) return
 
     this.videoService.removeVideo(this.video.id)
@@ -223,7 +223,7 @@ export class VideoActionsDropdownComponent implements OnChanges {
     this.redundancyService.addVideoRedundancy(this.video)
         .subscribe({
           next: () => {
-            const message = $localize`This video will be duplicated by your instance.`
+            const message = $localize`${this.video.name} will be duplicated by your instance.`
             this.notifier.success(message)
           },