diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-07-02 20:52:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-02 10:52:40 -0700 |
commit | dbfb9dad2f69533c79d9104d3a584791e3cf0384 (patch) | |
tree | 41893adaf2f0a84cc787f2dd0aa15de111442bd7 /src/screens/Settings | |
parent | 9d44673acbe38081e4116e29805d441a17a16804 (diff) | |
download | voidsky-dbfb9dad2f69533c79d9104d3a584791e3cf0384.tar.zst |
fix label for activity notifs (#8599)
Diffstat (limited to 'src/screens/Settings')
-rw-r--r-- | src/screens/Settings/NotificationSettings/index.tsx | 2 | ||||
-rw-r--r-- | src/screens/Settings/PrivacyAndSecuritySettings.tsx | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/screens/Settings/NotificationSettings/index.tsx b/src/screens/Settings/NotificationSettings/index.tsx index df7c9a35b..a16d30061 100644 --- a/src/screens/Settings/NotificationSettings/index.tsx +++ b/src/screens/Settings/NotificationSettings/index.tsx @@ -184,7 +184,7 @@ export function NotificationSettingsScreen({}: Props) { /> </SettingsList.LinkItem> <SettingsList.LinkItem - label={_(msg`Settings for activity alerts`)} + label={_(msg`Settings for activity from others`)} to={{screen: 'ActivityNotificationSettings'}} contentContainerStyle={[a.align_start]}> <SettingsList.ItemIcon icon={BellRingingIcon} /> diff --git a/src/screens/Settings/PrivacyAndSecuritySettings.tsx b/src/screens/Settings/PrivacyAndSecuritySettings.tsx index a85ad8372..9cf83f479 100644 --- a/src/screens/Settings/PrivacyAndSecuritySettings.tsx +++ b/src/screens/Settings/PrivacyAndSecuritySettings.tsx @@ -81,7 +81,9 @@ export function PrivacyAndSecuritySettingsScreen({}: Props) { )} </SettingsList.LinkItem> <SettingsList.LinkItem - label={_(msg`Settings for activity alerts`)} + label={_( + msg`Settings for allowing others to be notified of your posts`, + )} to={{screen: 'ActivityPrivacySettings'}} contentContainerStyle={[a.align_start]}> <SettingsList.ItemIcon icon={BellRingingIcon} /> |