about summary refs log tree commit diff
path: root/src/screens/VideoFeed/index.tsx
diff options
context:
space:
mode:
authorMinseo Lee <itoupluk427@gmail.com>2025-02-12 06:07:00 +0900
committerGitHub <noreply@github.com>2025-02-11 13:07:00 -0800
commitb1cc4a5e9fcf48a793dac6e6e941725aaa8b50f7 (patch)
tree2de6b8282e14f1f06d3263892c31397671cbb666 /src/screens/VideoFeed/index.tsx
parenteabe3ed23112982a370291b3e1a26cf9754969a4 (diff)
downloadvoidsky-b1cc4a5e9fcf48a793dac6e6e941725aaa8b50f7.tar.zst
Refine accessibilityHint (#7554)
* `accessibilityHint`

* accessibilityHint

* Update

Co-Authored-By: jason-me <mail@jason-hester.me>

* Update LoginForm.tsx

---------

Co-authored-by: jason-me <mail@jason-hester.me>
Diffstat (limited to 'src/screens/VideoFeed/index.tsx')
-rw-r--r--src/screens/VideoFeed/index.tsx4
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)}