mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
generalize “Educator Resources”
It was getting overwritten since it was defined in multiple places. fixes #840.
This commit is contained in:
parent
43add1ad35
commit
4a0442695a
5 changed files with 3 additions and 4 deletions
|
@ -57,6 +57,7 @@
|
||||||
"general.privacyPolicy": "Privacy Policy",
|
"general.privacyPolicy": "Privacy Policy",
|
||||||
"general.projects": "Projects",
|
"general.projects": "Projects",
|
||||||
"general.profile": "Profile",
|
"general.profile": "Profile",
|
||||||
|
"general.resourcesTitle": "Educator Resources",
|
||||||
"general.scratchConference": "Scratch Conference",
|
"general.scratchConference": "Scratch Conference",
|
||||||
"general.scratchday": "Scratch Day",
|
"general.scratchday": "Scratch Day",
|
||||||
"general.scratchEd": "ScratchEd",
|
"general.scratchEd": "ScratchEd",
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
"teacherbanner.greeting": "Hi",
|
"teacherbanner.greeting": "Hi",
|
||||||
"teacherbanner.subgreeting": "Teacher Account",
|
"teacherbanner.subgreeting": "Teacher Account",
|
||||||
"teacherbanner.classesButton": "My Classes",
|
"teacherbanner.classesButton": "My Classes",
|
||||||
"teacherbanner.resourcesButton": "Educator Resources",
|
|
||||||
"teacherbanner.faqButton": "Teacher Account FAQ",
|
"teacherbanner.faqButton": "Teacher Account FAQ",
|
||||||
|
|
||||||
"welcome.welcomeToScratch": "Welcome to Scratch!",
|
"welcome.welcomeToScratch": "Welcome to Scratch!",
|
||||||
|
|
|
@ -324,7 +324,7 @@ var Splash = injectIntl(React.createClass({
|
||||||
'teacherbanner.greeting': formatMessage({id: 'teacherbanner.greeting'}),
|
'teacherbanner.greeting': formatMessage({id: 'teacherbanner.greeting'}),
|
||||||
'teacherbanner.subgreeting': formatMessage({id: 'teacherbanner.subgreeting'}),
|
'teacherbanner.subgreeting': formatMessage({id: 'teacherbanner.subgreeting'}),
|
||||||
'teacherbanner.classesButton': formatMessage({id: 'teacherbanner.classesButton'}),
|
'teacherbanner.classesButton': formatMessage({id: 'teacherbanner.classesButton'}),
|
||||||
'teacherbanner.resourcesButton': formatMessage({id: 'teacherbanner.resourcesButton'}),
|
'teacherbanner.resourcesButton': formatMessage({id: 'general.resourcesTitle'}),
|
||||||
'teacherbanner.faqButton': formatMessage({id: 'teacherbanner.faqButton'})
|
'teacherbanner.faqButton': formatMessage({id: 'teacherbanner.faqButton'})
|
||||||
};
|
};
|
||||||
if (this.state.projectCount === this.getInitialState().projectCount) {
|
if (this.state.projectCount === this.getInitialState().projectCount) {
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
"teacherlanding.generalUsageSettings": "<b>Settings:</b> schools, museums, libraries, community centers",
|
"teacherlanding.generalUsageSettings": "<b>Settings:</b> schools, museums, libraries, community centers",
|
||||||
"teacherlanding.generalUsageGradeLevels": "<b>Grade Levels:</b> elementary, middle, and high school (and some colleges too!)",
|
"teacherlanding.generalUsageGradeLevels": "<b>Grade Levels:</b> elementary, middle, and high school (and some colleges too!)",
|
||||||
"teacherlanding.generalUsageSubjectAreas": "<b>Subject Areas:</b> language arts, science, social studies, math, computer science, foreign languages, and the arts",
|
"teacherlanding.generalUsageSubjectAreas": "<b>Subject Areas:</b> language arts, science, social studies, math, computer science, foreign languages, and the arts",
|
||||||
"teacherlanding.resourcesTitle": "Educator Resources",
|
|
||||||
"teacherlanding.scratchEdTitle": "A Community for Educators",
|
"teacherlanding.scratchEdTitle": "A Community for Educators",
|
||||||
"teacherlanding.scratchEdDescription": "<a href=\"http://scratched.gse.harvard.edu/\">ScratchEd</a> is an online community where Scratch educators <a href=\"http://scratched.gse.harvard.edu/stories\">share stories</a>, exchange resources, ask questions, and find people. ScratchEd is developed and supported by the Harvard Graduate School of Education.",
|
"teacherlanding.scratchEdDescription": "<a href=\"http://scratched.gse.harvard.edu/\">ScratchEd</a> is an online community where Scratch educators <a href=\"http://scratched.gse.harvard.edu/stories\">share stories</a>, exchange resources, ask questions, and find people. ScratchEd is developed and supported by the Harvard Graduate School of Education.",
|
||||||
"teacherlanding.meetupTitle": "In-Person Gatherings",
|
"teacherlanding.meetupTitle": "In-Person Gatherings",
|
||||||
|
|
|
@ -64,7 +64,7 @@ var Landing = injectIntl(React.createClass({
|
||||||
</section>
|
</section>
|
||||||
<section id="resources">
|
<section id="resources">
|
||||||
<span className="nav-spacer"></span>
|
<span className="nav-spacer"></span>
|
||||||
<h2><FormattedMessage id="teacherlanding.resourcesTitle" /></h2>
|
<h2><FormattedMessage id="general.resourcesTitle" /></h2>
|
||||||
<FlexRow className="educator-community">
|
<FlexRow className="educator-community">
|
||||||
<div>
|
<div>
|
||||||
<h3><FormattedMessage id="teacherlanding.scratchEdTitle" /></h3>
|
<h3><FormattedMessage id="teacherlanding.scratchEdTitle" /></h3>
|
||||||
|
|
Loading…
Reference in a new issue