<h1><FormattedMessageid='onboarding.page_one.welcome'defaultMessage='Welcome to Mastodon!'/></h1>
<p><FormattedMessageid='onboarding.page_one.federation'defaultMessage='Mastodon is a social network that belongs to everyone.'/></p>
<p><FormattedMessageid='onboarding.page_one.handle'defaultMessage='You are on {domain}, one of many independent Mastodon instances. Your full handle is {handle}'values={{domain,handle:<strong>{acct}@{domain}</strong>}}/></p>
<p><FormattedMessageid='onboarding.page_two.compose'defaultMessage='Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.'/></p>
<p><FormattedMessageid='onboarding.page_three.search'defaultMessage='Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.'values={{illustration:<Permalinkto='/timelines/tag/illustration'href='/tags/illustration'>#illustration</Permalink>,introductions:<Permalinkto='/timelines/tag/introductions'href='/tags/introductions'>#introductions</Permalink>}}/></p>
<p><FormattedMessageid='onboarding.page_three.profile'defaultMessage='Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.'/></p>
<p><FormattedMessageid='onboarding.page_five.public_timelines'defaultMessage='Federated timeline lists public posts from everyone who people on {domain} follow. Local timeline is the same, but limited to people on {domain}.'values={{domain}}/></p>
</div>
</div>
);
PageFour.propTypes={
domain:React.PropTypes.string.isRequired,
intl:React.PropTypes.object.isRequired
};
constPageSix=({admin})=>{
letadminSection='';
if(admin){
adminSection=(
<p>
<FormattedMessageid='onboarding.page_six.admin'defaultMessage="Your instance's admin is {admin}."values={{admin:<Permalinkhref={admin.get('url')}to={`/accounts/${admin.get('id')}`}>@{admin.get('acct')}</Permalink>}}/>
<br/>
<FormattedMessageid='onboarding.page_six.read_guidelines'defaultMessage='Please, do not forget to read the {guidelines}!'values={{guidelines:<ahref='/about/more'target='_blank'><FormattedMessageid='onboarding.page_six.guidelines'defaultMessage='community guidelines'/></a>}}/>
<p><FormattedMessageid='onboarding.page_six.github'defaultMessage='Mastodon is free open-source software. You can report bugs, request features, or contribute to the code on {github}.'values={{github:<ahref='https://github.com/tootsuite/mastodon'target='_blank'rel='noopener'>GitHub</a>}}/></p>
<p><FormattedMessageid='onboarding.page_six.apps_available'defaultMessage='There are {apps} available for iOS, Android and other platforms. And now... Bon Appetoot!'values={{apps:<ahref='https://github.com/tootsuite/documentation/blob/master/Using-Mastodon/Apps.md'target='_blank'rel='noopener'><FormattedMessageid='onboarding.page_six.various_app'defaultMessage='various mobile apps'/></a>}}/></p>