Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

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

at a1857d62bd5fef23b7e8a8a184ed19d02a95f604 21 lines 706 B view raw
1import {useMemo} from 'react' 2import {msg} from '@lingui/macro' 3import {useLingui} from '@lingui/react' 4 5export function useAgeAssuranceCopy() { 6 const {_} = useLingui() 7 8 return useMemo(() => { 9 return { 10 notice: _( 11 msg`Due to laws in your region, certain features on Bluesky are currently restricted until you're able to verify you're an adult.`, 12 ), 13 banner: _( 14 msg`The laws in your location require you to verify you're an adult to access certain features. Tap to learn more.`, 15 ), 16 chatsInfoText: _( 17 msg`Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult.`, 18 ), 19 } 20 }, [_]) 21}