Update a11y copy

This commit is contained in:
Eric Bailey
2025-01-18 18:28:04 -06:00
parent 18a0998230
commit f8a9d5019e
+3 -3
View File
@@ -940,10 +940,10 @@ function PlayPauseTapArea({
post: Shadow<AppBskyFeedDefs.PostView>
feedContext: string | undefined
}) {
const {_} = useLingui()
const doubleTapRef = useRef<ReturnType<typeof setTimeout> | null>(null)
const playHaptic = useHaptics()
const [queueLike] = usePostLikeMutationQueue(post, 'ImmersiveVideo')
const {sendInteraction} = useFeedFeedbackContext()
const togglePlayPause = () => {
@@ -975,8 +975,8 @@ function PlayPauseTapArea({
return (
<Button
disabled={!player}
label="Toggle play/pause"
accessibilityHint="Double tap to like"
label={_(`Tap to play or pause the video`)}
accessibilityHint={_(msg`Double tap to like`)}
onPress={onPress}
style={[a.absolute, a.inset_0]}>
<View />