| import { SubscriptionManager } from '@automattic/data-stores'; | |
| import { useTranslate } from 'i18n-calypso'; | |
| import { useMemo } from 'react'; | |
| const useSubheaderText = () => { | |
| const emailAddress = SubscriptionManager.useSubscriberEmailAddress(); | |
| const translate = useTranslate(); | |
| return useMemo( () => { | |
| if ( emailAddress ) { | |
| return translate( | |
| 'Manage WordPress.com sites and newsletters you’ve subscribed to with {{span}}%(emailAddress)s{{/span}}.', | |
| { | |
| args: { | |
| emailAddress: emailAddress, | |
| }, | |
| components: { | |
| span: <span className="email-address" />, | |
| }, | |
| } | |
| ); | |
| } | |
| return translate( 'Manage your WordPress.com site and newsletter subscriptions.' ); | |
| }, [ emailAddress, translate ] ); | |
| }; | |
| export default useSubheaderText; | |