aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-03-23 23:43:51 +0100
committerRigel Kent <sendmemail@rigelk.eu>2020-03-23 23:43:53 +0100
commit5411da31d1070654e4c4b80ad3ad6889b048a4db (patch)
tree5a7d09243bac71d27f8007f3dac21d3e8035b773 /client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html
parent5a390259b24cb7a4350a0c95380bd362e4542d83 (diff)
downloadPeerTube-5411da31d1070654e4c4b80ad3ad6889b048a4db.tar.gz
PeerTube-5411da31d1070654e4c4b80ad3ad6889b048a4db.tar.zst
PeerTube-5411da31d1070654e4c4b80ad3ad6889b048a4db.zip
Describe user video settings checkboxes, put emphasis on p2p
Also improve more info links about p2p and privacy in PeerTube, present in the privacy concern notice and in the video settings.
Diffstat (limited to 'client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html')
-rw-r--r--client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html26
1 files changed, 19 insertions, 7 deletions
diff --git a/client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html b/client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html
index f17829127..7f4437b19 100644
--- a/client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html
+++ b/client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html
@@ -39,23 +39,35 @@
39 39
40 <div class="form-group"> 40 <div class="form-group">
41 <my-peertube-checkbox 41 <my-peertube-checkbox
42 inputName="webTorrentEnabled" formControlName="webTorrentEnabled" 42 inputName="webTorrentEnabled" formControlName="webTorrentEnabled" [recommended]="true"
43 i18n-labelText labelText="Use P2P to exchange parts of the video with others" 43 i18n-labelText labelText="Help share videos being played"
44 ></my-peertube-checkbox> 44 >
45 <ng-container ngProjectAs="description">
46 <span i18n>The <a routerLink="/about/peertube" fragment="privacy">sharing system</a> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.</span>
47 </ng-container>
48 </my-peertube-checkbox>
45 </div> 49 </div>
46 50
47 <div class="form-group"> 51 <div class="form-group">
48 <my-peertube-checkbox 52 <my-peertube-checkbox
49 inputName="autoPlayVideo" formControlName="autoPlayVideo" 53 inputName="autoPlayVideo" formControlName="autoPlayVideo"
50 i18n-labelText labelText="Automatically plays video" 54 i18n-labelText labelText="Automatically play videos"
51 ></my-peertube-checkbox> 55 >
56 <ng-container ngProjectAs="description">
57 <span i18n>When on a video page, directly start playing the video.</span>
58 </ng-container>
59 </my-peertube-checkbox>
52 </div> 60 </div>
53 61
54 <div class="form-group"> 62 <div class="form-group">
55 <my-peertube-checkbox 63 <my-peertube-checkbox
56 inputName="autoPlayNextVideo" formControlName="autoPlayNextVideo" 64 inputName="autoPlayNextVideo" formControlName="autoPlayNextVideo"
57 i18n-labelText labelText="Automatically starts playing next video" 65 i18n-labelText labelText="Automatically start playing the next video"
58 ></my-peertube-checkbox> 66 >
67 <ng-container ngProjectAs="description">
68 <span i18n>When a video ends, follow up with the next suggested video.</span>
69 </ng-container>
70 </my-peertube-checkbox>
59 </div> 71 </div>
60 72
61 <input *ngIf="!reactiveUpdate" type="submit" i18n-value value="Save" [disabled]="!form.valid"> 73 <input *ngIf="!reactiveUpdate" type="submit" i18n-value value="Save" [disabled]="!form.valid">