diff options
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/Login/LoginForm.tsx | 2 | ||||
-rw-r--r-- | src/screens/Messages/components/ChatListItem.tsx | 2 | ||||
-rw-r--r-- | src/screens/Onboarding/Layout.tsx | 4 | ||||
-rw-r--r-- | src/screens/Profile/ErrorState.tsx | 2 | ||||
-rw-r--r-- | src/screens/Settings/AboutSettings.tsx | 2 | ||||
-rw-r--r-- | src/screens/Settings/AccountSettings.tsx | 2 | ||||
-rw-r--r-- | src/screens/Settings/AppIconSettings/index.tsx | 2 | ||||
-rw-r--r-- | src/screens/Settings/Settings.tsx | 4 | ||||
-rw-r--r-- | src/screens/Settings/components/ChangeHandleDialog.tsx | 2 | ||||
-rw-r--r-- | src/screens/StarterPack/Wizard/index.tsx | 2 | ||||
-rw-r--r-- | src/screens/VideoFeed/index.tsx | 4 |
11 files changed, 13 insertions, 15 deletions
diff --git a/src/screens/Login/LoginForm.tsx b/src/screens/Login/LoginForm.tsx index 701fb3d4a..86e541b3e 100644 --- a/src/screens/Login/LoginForm.tsx +++ b/src/screens/Login/LoginForm.tsx @@ -232,7 +232,7 @@ export const LoginForm = ({ onSubmitEditing={onPressNext} blurOnSubmit={false} // HACK: https://github.com/facebook/react-native/issues/21911#issuecomment-558343069 Keyboard blur behavior is now handled in onSubmitEditing editable={!isProcessing} - accessibilityHint={_(msg`Input your password`)} + accessibilityHint={_(msg`Enter your password`)} /> <Button testID="forgotPasswordButton" diff --git a/src/screens/Messages/components/ChatListItem.tsx b/src/screens/Messages/components/ChatListItem.tsx index a64e9e549..ad97497f4 100644 --- a/src/screens/Messages/components/ChatListItem.tsx +++ b/src/screens/Messages/components/ChatListItem.tsx @@ -281,7 +281,7 @@ function ChatListItemReady({ !isDeletedAccount ? _(msg`Go to conversation with ${profile.handle}`) : _( - msg`This conversation is with a deleted or a deactivated account. Press for options.`, + msg`This conversation is with a deleted or a deactivated account. Press for options`, ) } accessibilityActions={ diff --git a/src/screens/Onboarding/Layout.tsx b/src/screens/Onboarding/Layout.tsx index bdc1664f6..16c37358f 100644 --- a/src/screens/Onboarding/Layout.tsx +++ b/src/screens/Onboarding/Layout.tsx @@ -53,9 +53,7 @@ export function Layout({children}: React.PropsWithChildren<{}>) { aria-role="dialog" aria-label={dialogLabel} accessibilityLabel={dialogLabel} - accessibilityHint={_( - msg`The following steps will help customize your Bluesky experience.`, - )} + accessibilityHint={_(msg`Customizes your Bluesky experience`)} style={[ // @ts-ignore web only -prf isWeb ? a.fixed : a.absolute, diff --git a/src/screens/Profile/ErrorState.tsx b/src/screens/Profile/ErrorState.tsx index 97ce35bb2..b473435fc 100644 --- a/src/screens/Profile/ErrorState.tsx +++ b/src/screens/Profile/ErrorState.tsx @@ -60,7 +60,7 @@ export function ErrorState({error}: {error: string}) { color="secondary" variant="solid" label={_(msg`Go Back`)} - accessibilityHint="Return to previous page" + accessibilityHint="Returns to previous page" onPress={onPressBack}> <ButtonText> <Trans>Go Back</Trans> diff --git a/src/screens/Settings/AboutSettings.tsx b/src/screens/Settings/AboutSettings.tsx index 02976bb3c..92ba2c1be 100644 --- a/src/screens/Settings/AboutSettings.tsx +++ b/src/screens/Settings/AboutSettings.tsx @@ -65,7 +65,7 @@ export function AboutSettingsScreen({}: Props) { </SettingsList.LinkItem> <SettingsList.PressableItem label={_(msg`Version ${appVersion}`)} - accessibilityHint={_(msg`Copy build version to clipboard`)} + accessibilityHint={_(msg`Copies build version to clipboard`)} onPress={() => { setStringAsync( `Build version: ${appVersion}; Bundle info: ${bundleInfo}; Bundle date: ${BUNDLE_DATE}; Platform: ${Platform.OS}; Platform version: ${Platform.Version}`, diff --git a/src/screens/Settings/AccountSettings.tsx b/src/screens/Settings/AccountSettings.tsx index 634c9d3f7..8d7dbde61 100644 --- a/src/screens/Settings/AccountSettings.tsx +++ b/src/screens/Settings/AccountSettings.tsx @@ -124,7 +124,7 @@ export function AccountSettingsScreen({}: Props) { </SettingsList.PressableItem> <SettingsList.PressableItem label={_(msg`Handle`)} - accessibilityHint={_(msg`Open change handle dialog`)} + accessibilityHint={_(msg`Opens change handle dialog`)} onPress={() => changeHandleControl.open()}> <SettingsList.ItemIcon icon={AtIcon} /> <SettingsList.ItemText> diff --git a/src/screens/Settings/AppIconSettings/index.tsx b/src/screens/Settings/AppIconSettings/index.tsx index 0be2894d5..954bac68a 100644 --- a/src/screens/Settings/AppIconSettings/index.tsx +++ b/src/screens/Settings/AppIconSettings/index.tsx @@ -213,7 +213,7 @@ function AppIcon({icon, size = 50}: {icon: AppIconSet; size: number}) { return ( <PressableScale accessibilityLabel={icon.name} - accessibilityHint={_(msg`Tap to change app icon`)} + accessibilityHint={_(msg`Changes app icon`)} targetScale={0.95} onPress={() => { if (isAndroid) { diff --git a/src/screens/Settings/Settings.tsx b/src/screens/Settings/Settings.tsx index 2d44ab390..ea83b00c2 100644 --- a/src/screens/Settings/Settings.tsx +++ b/src/screens/Settings/Settings.tsx @@ -101,7 +101,7 @@ export function SettingsScreen({}: Props) { <SettingsList.PressableItem label={_(msg`Switch account`)} accessibilityHint={_( - msg`Show other accounts you can switch to`, + msg`Shows other accounts you can switch to`, )} onPress={() => { if (!reducedMotion) { @@ -205,7 +205,7 @@ export function SettingsScreen({}: Props) { <SettingsList.PressableItem onPress={() => Linking.openURL(HELP_DESK_URL)} label={_(msg`Help`)} - accessibilityHint={_(msg`Open helpdesk in browser`)}> + accessibilityHint={_(msg`Opens helpdesk in browser`)}> <SettingsList.ItemIcon icon={CircleQuestionIcon} /> <SettingsList.ItemText> <Trans>Help</Trans> diff --git a/src/screens/Settings/components/ChangeHandleDialog.tsx b/src/screens/Settings/components/ChangeHandleDialog.tsx index 6450e24b2..b69713a10 100644 --- a/src/screens/Settings/components/ChangeHandleDialog.tsx +++ b/src/screens/Settings/components/ChangeHandleDialog.tsx @@ -537,7 +537,7 @@ function OwnHandlePage({goToServiceHandle}: {goToServiceHandle: () => void}) { <Button label={_(msg`Use default provider`)} - accessibilityHint={_(msg`Go back to previous page`)} + accessibilityHint={_(msg`Returns to previous page`)} onPress={goToServiceHandle} variant="outline" color="secondary" diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index b42b753e3..3f8ce3c00 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -284,7 +284,7 @@ function WizardInner({ <Layout.Header.Outer> <Layout.Header.BackButton label={_(msg`Back`)} - accessibilityHint={_(msg`Go back to the previous step`)} + accessibilityHint={_(msg`Returns to the previous step`)} onPress={evt => { if (state.currentStep !== 'Details') { evt.preventDefault() diff --git a/src/screens/VideoFeed/index.tsx b/src/screens/VideoFeed/index.tsx index 88a83b45c..329b1cf7c 100644 --- a/src/screens/VideoFeed/index.tsx +++ b/src/screens/VideoFeed/index.tsx @@ -800,7 +800,7 @@ function Overlay({ : _(msg`Follow ${handle}`) } accessibilityHint={ - profile.viewer?.following ? _(msg`Unfollow user`) : '' + profile.viewer?.following ? _(msg`Unfollows the user`) : '' } size="small" variant="solid" @@ -930,7 +930,7 @@ function ExpandableRichTextView({ /> {constrained && !screenReaderEnabled && ( <Pressable - accessibilityHint={_(msg`Tap to expand or collapse post text.`)} + accessibilityHint={_(msg`Expands or collapses post text`)} accessibilityLabel={expanded ? _(msg`Read less`) : _(msg`Read more`)} hitSlop={HITSLOP_20} onPress={() => setExpanded(prev => !prev)} |