diff options
Diffstat (limited to 'src/screens/VideoFeed/index.tsx')
-rw-r--r-- | src/screens/VideoFeed/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
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)} |