Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Mark `accessibilityLabel` and `accessibilityHint` for translation (#4351)

* mark `accessibilityLabel` and `accessibilityHint` for translation

* lint

* try again

authored by

surfdude29 and committed by
GitHub
d6b83139 e4b4d854

+5 -2
+5 -2
src/view/screens/Search/Search.tsx
··· 958 958 }) { 959 959 const {isTabletOrDesktop, isMobile} = useWebMediaQueries() 960 960 const pal = usePalette('default') 961 + const {_} = useLingui() 961 962 962 963 return ( 963 964 <CenteredView ··· 1010 1011 </Link> 1011 1012 <Pressable 1012 1013 accessibilityRole="button" 1013 - accessibilityLabel="Remove profile" 1014 - accessibilityHint="Remove profile from search history" 1014 + accessibilityLabel={_(msg`Remove profile`)} 1015 + accessibilityHint={_( 1016 + msg`Remove profile from search history`, 1017 + )} 1015 1018 onPress={() => onRemoveProfileClick(profile)} 1016 1019 hitSlop={createHitslop(6)} 1017 1020 style={styles.profileRemoveBtn}>