aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-05-03 15:11:29 +0200
committerChocobozzz <me@florianbigard.com>2022-05-03 15:21:42 +0200
commit39e68a3254242bd410ffc20b7f74b442a07b390f (patch)
tree3ad74189343796d52c8fd5c1825ac648dff15ea1 /client/src/app/+videos/+video-edit
parent26e3e98ff0e222a9fb9226938ac6902af77921bd (diff)
downloadPeerTube-39e68a3254242bd410ffc20b7f74b442a07b390f.tar.gz
PeerTube-39e68a3254242bd410ffc20b7f74b442a07b390f.tar.zst
PeerTube-39e68a3254242bd410ffc20b7f74b442a07b390f.zip
Add session informations in live modal
Diffstat (limited to 'client/src/app/+videos/+video-edit')
-rw-r--r--client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts b/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts
index 725120d16..d81f577b2 100644
--- a/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts
+++ b/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts
@@ -154,7 +154,7 @@ export class VideoGoLiveComponent extends VideoSend implements OnInit, AfterView
154 154
155 getNormalLiveDescription () { 155 getNormalLiveDescription () {
156 if (this.isReplayAllowed()) { 156 if (this.isReplayAllowed()) {
157 return $localize`Stream only once and save a replay of your live` 157 return $localize`Stream only once, replay will replace your live`
158 } 158 }
159 159
160 return $localize`Stream only once` 160 return $localize`Stream only once`
@@ -162,7 +162,7 @@ export class VideoGoLiveComponent extends VideoSend implements OnInit, AfterView
162 162
163 getPermanentLiveDescription () { 163 getPermanentLiveDescription () {
164 if (this.isReplayAllowed()) { 164 if (this.isReplayAllowed()) {
165 return $localize`Stream multiple times, replays can't be saved` 165 return $localize`Stream multiple times, replays will be separate videos`
166 } 166 }
167 167
168 return $localize`Stream multiple times using the same URL` 168 return $localize`Stream multiple times using the same URL`