Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

add `msg` macro in EmojiPopup.android.tsx (#8091)

authored by

surfdude29 and committed by
GitHub
3d7fce56 fffcb609

+3 -3
+3 -3
src/components/dms/EmojiPopup.android.tsx
··· 3 3 // @ts-expect-error internal component, not supposed to be used directly 4 4 // waiting on more customisability: https://github.com/okwasniewski/react-native-emoji-popup/issues/1#issuecomment-2737463753 5 5 import EmojiPopupView from 'react-native-emoji-popup/src/EmojiPopupViewNativeComponent' 6 - import {Trans} from '@lingui/macro' 6 + import {msg, Trans} from '@lingui/macro' 7 7 import {useLingui} from '@lingui/react' 8 8 9 9 import {atoms as a, useTheme} from '#/alf' ··· 25 25 return ( 26 26 <> 27 27 <Pressable 28 - accessibilityLabel={_('Open full emoji list')} 28 + accessibilityLabel={_(msg`Open full emoji list`)} 29 29 accessibilityHint="" 30 30 accessibilityRole="button" 31 31 onPress={() => setModalVisible(true)}> ··· 55 55 <Trans>Add Reaction</Trans> 56 56 </Text> 57 57 <Button 58 - label={_('Close')} 58 + label={_(msg`Close`)} 59 59 onPress={() => setModalVisible(false)} 60 60 size="small" 61 61 variant="ghost"