diff options
author | surfdude29 <149612116+surfdude29@users.noreply.github.com> | 2024-03-19 20:11:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 13:11:48 -0700 |
commit | 69f8ea80f82a1d93914f8c2f04b99bc0e4ec932e (patch) | |
tree | f1a74aa4e4630dc556ced2411afed921e7d44364 /src/view/screens/Settings/index.tsx | |
parent | 5bec5877172ac0f18c3c1bebec7ad6c46ca0ae39 (diff) | |
download | voidsky-69f8ea80f82a1d93914f8c2f04b99bc0e4ec932e.tar.zst |
Fix typos and clarify two `accessibilityHint`s (#2923)
* Clarify accessibilityHint in Settings * Fix typo in ModerationMutedAccounts.tsx * Fix typo in ModerationBlockedAccounts.tsx * fix lint error in ModerationMutedAccounts.tsx * try again * fix lint error in index.tsx * try again * Update index.tsx * Update index.tsx --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/view/screens/Settings/index.tsx')
-rw-r--r-- | src/view/screens/Settings/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/screens/Settings/index.tsx b/src/view/screens/Settings/index.tsx index 465007777..7e808f910 100644 --- a/src/view/screens/Settings/index.tsx +++ b/src/view/screens/Settings/index.tsx @@ -711,7 +711,7 @@ export function SettingsScreen({}: Props) { accessibilityRole="button" accessibilityLabel={_(msg`Change handle`)} accessibilityHint={_( - msg`Opens modal for choosing or creating a new Bluesky username`, + msg`Opens modal for choosing a new Bluesky handle`, )}> <View style={[styles.iconContainer, pal.btn]}> <FontAwesomeIcon @@ -772,7 +772,7 @@ export function SettingsScreen({}: Props) { accessibilityRole="button" accessibilityLabel={_(msg`Export my data`)} accessibilityHint={_( - msg`Opens modal for downloading Bluesky account data (repository)`, + msg`Opens modal for downloading your Bluesky account data (repository)`, )}> <View style={[styles.iconContainer, pal.btn]}> <FontAwesomeIcon |