]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+my-account/my-account-video-channels/my-account-video-channels.component.ts
Add ability to schedule video publication
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-video-channels / my-account-video-channels.component.ts
index cff1041f6cabba119dfbde055c5ab570a225b3d4..6d1098865d6d8f9d67e78845564664e234466d58 100644 (file)
@@ -35,7 +35,7 @@ export class MyAccountVideoChannelsComponent implements OnInit {
   async deleteVideoChannel (videoChannel: VideoChannel) {
     const res = await this.confirmService.confirmWithInput(
       this.i18n(
-        'Do you really want to delete {{ videoChannelName }}? It will delete all videos uploaded in this channel too.',
+        'Do you really want to delete {{videoChannelName}}? It will delete all videos uploaded in this channel too.',
         { videoChannelName: videoChannel.displayName }
       ),
       this.i18n('Please type the name of the video channel to confirm'),
@@ -50,7 +50,7 @@ export class MyAccountVideoChannelsComponent implements OnInit {
           this.loadVideoChannels()
           this.notificationsService.success(
             this.i18n('Success'),
-            this.i18n('Video channel {{ videoChannelName } deleted.', { videoChannelName: videoChannel.displayName })
+            this.i18n('Video channel {{videoChannelName}} deleted.', { videoChannelName: videoChannel.displayName })
           )
         },