mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-16 16:19:48 -05:00
Add setup guide link. Still needs final link filled in.
This commit is contained in:
parent
ea103fc69e
commit
6f1b7d7bef
2 changed files with 18 additions and 1 deletions
|
@ -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"
|
||||
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue