Add setup guide link. Still needs final link filled in.

This commit is contained in:
picklesrus 2020-04-27 10:38:40 -04:00
parent ea103fc69e
commit 6f1b7d7bef
2 changed files with 18 additions and 1 deletions

View file

@ -38,6 +38,9 @@
"teacherlanding.signupTipsLink" : "updates and tips",
"teacherlanding.accountsTitle": "Teacher Accounts in Scratch",
"teacherlanding.accountsDescription": "As an educator, you can request a Scratch Teacher Account, which makes it easier to create accounts for groups of students and to manage your students projects and comments. To learn more, see the <a href=\"/educators/faq\">Teacher Account FAQ page</a>.",
"teacherlanding.accountsRequestInfo": "As an educator, you can request a Scratch Teacher Account, which makes it easier to create accounts for students and to manage their projects and comments. To learn more, see the {setupGuideLink} and the {teacherAccountFaqLink}.",
"teacherlanding.accountsSetupGuide": "Teacher Account Setup Guide",
"teacherlanding.accountsFaqPage": "Teacher Account FAQ page",
"teacherlanding.requestAccount": "Request Account"
}

View file

@ -338,7 +338,21 @@ const Landing = props => (
<FormattedMessage id="teacherlanding.accountsTitle" />
</h2>
<p>
<FormattedHTMLMessage id="teacherlanding.accountsDescription" />
<FormattedMessage
id="teacherlanding.accountsRequestInfo"
values={{
setupGuideLink: (
<a href="" >
<FormattedMessage id="teacherlanding.accountsSetupGuide" />
</a>
),
teacherAccountFaqLink: (
<a href="/educators/faq">
<FormattedMessage id="teacherlanding.accountsFaqPage" />
</a>
)
}}
/>
</p>
<SubNavigation
align="left"