aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-07-20 13:38:26 +0200
committerChocobozzz <me@florianbigard.com>2021-07-20 15:27:19 +0200
commit01af646261264befde7ce6ca5130fd07c0b23aa1 (patch)
tree4683c518bc1ce795b6d7628d9aaa246dee93fde3
parent4c7e60bc17ee5830399bac4aa273356903421b4c (diff)
downloadPeerTube-01af646261264befde7ce6ca5130fd07c0b23aa1.tar.gz
PeerTube-01af646261264befde7ce6ca5130fd07c0b23aa1.tar.zst
PeerTube-01af646261264befde7ce6ca5130fd07c0b23aa1.zip
Channel deletion consistency
-rw-r--r--client/src/app/+my-library/+my-video-channels/my-video-channels.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+my-library/+my-video-channels/my-video-channels.component.ts b/client/src/app/+my-library/+my-video-channels/my-video-channels.component.ts
index 67b3ee496..b6a2f592d 100644
--- a/client/src/app/+my-library/+my-video-channels/my-video-channels.component.ts
+++ b/client/src/app/+my-library/+my-video-channels/my-video-channels.component.ts
@@ -45,9 +45,9 @@ export class MyVideoChannelsComponent {
45It will delete ${videoChannel.videosCount} videos uploaded in this channel, and you will not be able to create another 45It will delete ${videoChannel.videosCount} videos uploaded in this channel, and you will not be able to create another
46channel with the same name (${videoChannel.name})!`, 46channel with the same name (${videoChannel.name})!`,
47 47
48 $localize`Please type the display name of the video channel (${videoChannel.displayName}) to confirm`, 48 $localize`Please type the name of the video channel (${videoChannel.name}) to confirm`,
49 49
50 videoChannel.displayName, 50 videoChannel.name,
51 51
52 $localize`Delete` 52 $localize`Delete`
53 ) 53 )