diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/view/screens/Search/Search.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx index c8438a348..118a8be25 100644 --- a/src/view/screens/Search/Search.tsx +++ b/src/view/screens/Search/Search.tsx @@ -958,6 +958,7 @@ function SearchHistory({ }) { const {isTabletOrDesktop, isMobile} = useWebMediaQueries() const pal = usePalette('default') + const {_} = useLingui() return ( <CenteredView @@ -1010,8 +1011,10 @@ function SearchHistory({ </Link> <Pressable accessibilityRole="button" - accessibilityLabel="Remove profile" - accessibilityHint="Remove profile from search history" + accessibilityLabel={_(msg`Remove profile`)} + accessibilityHint={_( + msg`Remove profile from search history`, + )} onPress={() => onRemoveProfileClick(profile)} hitSlop={createHitslop(6)} style={styles.profileRemoveBtn}> |