aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-04-08 11:16:36 +0200
committerChocobozzz <me@florianbigard.com>2022-04-08 11:16:36 +0200
commit25fd0b59f6026a4bc1f05599ed2fd733e359d9a6 (patch)
tree1636cf1a5edda8467c8b7db478e513c84663f294
parent72dd3a7c26cf0ef7b0e1780afd7bdbf7fea1d2b1 (diff)
downloadPeerTube-25fd0b59f6026a4bc1f05599ed2fd733e359d9a6.tar.gz
PeerTube-25fd0b59f6026a4bc1f05599ed2fd733e359d9a6.tar.zst
PeerTube-25fd0b59f6026a4bc1f05599ed2fd733e359d9a6.zip
Prefer "publish" over "upload"
-rw-r--r--client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts b/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts
index 0a83215b9..7cb3d8300 100644
--- a/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts
+++ b/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts
@@ -119,7 +119,7 @@ export class VideoUploadComponent extends VideoSend implements OnInit, OnDestroy
119 const videoName = this.form.get('name').value 119 const videoName = this.form.get('name').value
120 120
121 if (this.videoUploaded) { 121 if (this.videoUploaded) {
122 this.metaService.setTitle($localize`Upload ${videoName}`) 122 this.metaService.setTitle($localize`Publish ${videoName}`)
123 } else if (this.isUploadingAudioFile || this.isUploadingVideo) { 123 } else if (this.isUploadingAudioFile || this.isUploadingVideo) {
124 this.metaService.setTitle(`${this.videoUploadPercents}% - ${videoName}`) 124 this.metaService.setTitle(`${this.videoUploadPercents}% - ${videoName}`)
125 } else { 125 } else {