mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Hotfix for HOC legal notices
This commit is contained in:
parent
0d724ec0ad
commit
30f4feff48
4 changed files with 24 additions and 3 deletions
4
en.json
4
en.json
|
@ -50,7 +50,7 @@
|
||||||
"footer.scratchFamily": "Scratch Family",
|
"footer.scratchFamily": "Scratch Family",
|
||||||
"hoc.activityCards": "Activity Cards",
|
"hoc.activityCards": "Activity Cards",
|
||||||
"hoc.activityCardsHeader": "Activity Cards and Guides",
|
"hoc.activityCardsHeader": "Activity Cards and Guides",
|
||||||
"hoc.activityCardsInfo1": "Want tips and ideas for these Hour of Code activities? Use the activity cards to get ideas for creating with Scratch. Facilitator guides can help you plan a group activity.",
|
"hoc.activityCardsInfo1": "Want tips and ideas for these Hour of Code™ activities? Use the activity cards to get ideas for creating with Scratch. Facilitator guides can help you plan a group activity.",
|
||||||
"hoc.addToStudios": "Add Your Projects to Studios",
|
"hoc.addToStudios": "Add Your Projects to Studios",
|
||||||
"hoc.addToStudiosDescription": "These studios include projects created by young people around the world. Take a look at the studios to get inspired - or submit your own projects to the studios!",
|
"hoc.addToStudiosDescription": "These studios include projects created by young people around the world. Take a look at the studios to get inspired - or submit your own projects to the studios!",
|
||||||
"hoc.facilitatorGuide": "Facilitator Guide",
|
"hoc.facilitatorGuide": "Facilitator Guide",
|
||||||
|
@ -93,4 +93,4 @@
|
||||||
"welcome.learn": "Learn how to make a project in Scratch",
|
"welcome.learn": "Learn how to make a project in Scratch",
|
||||||
"welcome.tryOut": "Try out starter projects",
|
"welcome.tryOut": "Try out starter projects",
|
||||||
"welcome.connect": "Connect with other Scratchers"
|
"welcome.connect": "Connect with other Scratchers"
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,6 +35,10 @@ h4 {
|
||||||
font-size: 1.0rem;
|
font-size: 1.0rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p.legal {
|
||||||
|
font-size: .8rem;
|
||||||
|
}
|
||||||
|
|
||||||
/* Links */
|
/* Links */
|
||||||
a {
|
a {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
|
@ -133,7 +133,7 @@ var Hoc = React.createClass({
|
||||||
<FormattedHTMLMessage
|
<FormattedHTMLMessage
|
||||||
id='hoc.activityCardsInfo1'
|
id='hoc.activityCardsInfo1'
|
||||||
defaultMessage={
|
defaultMessage={
|
||||||
'Want tips and ideas for these Hour of Code activities? ' +
|
'Want tips and ideas for these Hour of Code™ activities? ' +
|
||||||
'Use the activity cards to get ideas for creating with ' +
|
'Use the activity cards to get ideas for creating with ' +
|
||||||
'Scratch. Facilitator guides can help you plan ' +
|
'Scratch. Facilitator guides can help you plan ' +
|
||||||
'a group activity.'
|
'a group activity.'
|
||||||
|
@ -380,6 +380,19 @@ var Hoc = React.createClass({
|
||||||
<img src="/images/hoc2015/pocketcode-logo.png" />
|
<img src="/images/hoc2015/pocketcode-logo.png" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div className="trademark">
|
||||||
|
<p className="legal">
|
||||||
|
<FormattedHTMLMessage
|
||||||
|
id='hoc.officialNotice'
|
||||||
|
defaultMessage={
|
||||||
|
'The "Hour of Code™" is a nationwide initiative by ' +
|
||||||
|
'<a href="http://csedweek.org">Computer Science Education Week</a> ' +
|
||||||
|
'and <a href="http://code.org">Code.org</a> to introduce millions of ' +
|
||||||
|
'students to one hour of computer science and computer programming.'
|
||||||
|
} />
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -250,4 +250,8 @@ $base-bg: $ui-white;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.trademark {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue