Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add `context` to `Mute` and `Unmute` labels on video control (#5234)

Co-authored-by: Marco Buono <thecoreh@gmail.com>

authored by

surfdude29
Marco Buono
and committed by
GitHub
f2408939 44f1cd9f

+2 -2
+2 -2
src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx
··· 341 341 )} 342 342 <ControlButton 343 343 active={muted} 344 - activeLabel={_(msg`Unmute`)} 345 - inactiveLabel={_(msg`Mute`)} 344 + activeLabel={_(msg({message: `Unmute`, context: 'video'}))} 345 + inactiveLabel={_(msg({message: `Mute`, context: 'video'}))} 346 346 activeIcon={MuteIcon} 347 347 inactiveIcon={UnmuteIcon} 348 348 onPress={onPressMute}