From 5411da31d1070654e4c4b80ad3ad6889b048a4db Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Mon, 23 Mar 2020 23:43:51 +0100 Subject: 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. --- .../my-account-danger-zone.component.html | 4 ++-- .../my-account-danger-zone.component.scss | 1 + .../my-account-danger-zone.component.ts | 2 +- .../my-account-video-settings.component.html | 26 ++++++++++++++++------ 4 files changed, 23 insertions(+), 10 deletions(-) (limited to 'client/src/app/+my-account/my-account-settings') diff --git a/client/src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html b/client/src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html index dd9b56585..6e22abeed 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html +++ b/client/src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html @@ -1,5 +1,5 @@
-

Once you delete your account, there is no going back.

+

Once you delete your account, there is no going back. You will be asked to confirm this action.

-
\ No newline at end of file + diff --git a/client/src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.scss b/client/src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.scss index 0ca310468..7f7806732 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.scss +++ b/client/src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.scss @@ -7,5 +7,6 @@ button { @include peertube-button; @include grey-button; + @include disable-outline; } } \ No newline at end of file diff --git a/client/src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts b/client/src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts index 41021c592..25d862867 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts +++ b/client/src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts @@ -24,7 +24,7 @@ export class MyAccountDangerZoneComponent { async deleteMe () { const res = await this.confirmService.confirmWithInput( - this.i18n('Are you sure you want to delete your account? This will delete all your data, including channels, videos etc.'), + this.i18n('Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.'), this.i18n('Type your username to confirm'), this.user.username, this.i18n('Delete your account'), 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 @@
+ inputName="webTorrentEnabled" formControlName="webTorrentEnabled" [recommended]="true" + i18n-labelText labelText="Help share videos being played" + > + + The sharing system 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. + +
+ i18n-labelText labelText="Automatically play videos" + > + + When on a video page, directly start playing the video. + +
+ i18n-labelText labelText="Automatically start playing the next video" + > + + When a video ends, follow up with the next suggested video. + +
-- cgit v1.2.3