diff options
Diffstat (limited to 'src/view/screens/Moderation.tsx')
-rw-r--r-- | src/view/screens/Moderation.tsx | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/view/screens/Moderation.tsx b/src/view/screens/Moderation.tsx index fe1e5a28c..947970466 100644 --- a/src/view/screens/Moderation.tsx +++ b/src/view/screens/Moderation.tsx @@ -200,7 +200,7 @@ function PwiOptOut() { style={{flexDirection: 'row', alignItems: 'center', paddingRight: 14}}> <ToggleButton type="default-light" - label={_(msg`Limit the visibility of my account`)} + label={_(msg`Limit the visibility of my account to logged-out users`)} labelType="lg" isSelected={isOptedOut} onPress={canToggle ? onToggleOptOut : undefined} @@ -218,15 +218,19 @@ function PwiOptOut() { }}> <Text style={pal.textLight}> <Trans> - Your profile and content will not be visible to anyone visiting the - Bluesky app without an account. Enabling this will not make your - profile private. + Your profile and posts will not be visible to people visiting the + Bluesky app or website without having an account and being logged + in. </Trans> </Text> <Text style={[pal.textLight, {fontWeight: '500'}]}> <Trans> - Note: Third-party apps that display Bluesky content may not respect - this setting. + Note: Bluesky is an open and public network, and enabling this will + not make your profile private or limit the ability of logged in + users to see your posts. This setting only limits the visibility of + posts on the Bluesky app and website; third-party apps that display + Bluesky content may not respect this setting, and could show your + content to logged-out users. </Trans> </Text> <TextLink |