From de4079f6110ebd8903f09b6faa6de30e301e055f Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Tue, 7 Nov 2023 18:41:51 +0100 Subject: [PATCH] www: edit from andreas feedback --- www/app/[domain]/transcripts/shareLink.tsx | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/www/app/[domain]/transcripts/shareLink.tsx b/www/app/[domain]/transcripts/shareLink.tsx index 44c57053..82ef52c9 100644 --- a/www/app/[domain]/transcripts/shareLink.tsx +++ b/www/app/[domain]/transcripts/shareLink.tsx @@ -65,13 +65,15 @@ const ShareLink = (props: ShareLinkProps) => { {requireLogin && (

{shareMode === "private" && ( -

This transcript is only accessible by you.

+

This transcript is private and can only be accessed by you.

)} {shareMode === "semi-private" && ( -

This transcript is accessible by any authenticated users.

+

+ This transcript is secure. Only authenticated users can access it. +

)} {shareMode === "public" && ( -

This transcript is accessible by anyone.

+

This transcript is public. Everyone can access it.

)} {isOwner && api && ( @@ -80,7 +82,7 @@ const ShareLink = (props: ShareLinkProps) => { className="select-search--top select-search" options={[ { name: "Private", value: "private" }, - { name: "Semi-private", value: "semi-private" }, + { name: "Secure", value: "semi-private" }, { name: "Public", value: "public" }, ]} value={shareMode} @@ -94,14 +96,14 @@ const ShareLink = (props: ShareLinkProps) => { <> {privacyEnabled ? (

- You can share this link with others. Anyone with the link will - have access to the page, including the full audio recording, for - the next 7 days. + Share this link to grant others access to this page. The link + includes the full audio recording and is valid for the next 7 + days.

) : (

- You can share this link with others. Anyone with the link will - have access to the page, including the full audio recording. + Share this link to allow others to view this page and listen to + the full audio recording.

)}