forked from
jollywhoppers.com/witchsky.app
Bluesky app fork with some witchin' additions 馃挮
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}