mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-17 00:21:20 -05:00
Merge branch 'develop' of github.com:LLK/scratch-www into hotfix/es6-upgrade
# Conflicts: # src/views/developers/developers.jsx
This commit is contained in:
commit
f6bffd4192
3 changed files with 145 additions and 22 deletions
|
@ -23,7 +23,7 @@
|
|||
"about.schoolsDescription": "Students are learning with Scratch at all levels (from elementary school to college) and across disciplines (such as math, computer science, language arts, social studies). Educators share stories, exchange resources, ask questions, and find people on the {scratchedLink}.",
|
||||
"about.scratchedLinkText": "ScratchEd website",
|
||||
"about.research": "Research",
|
||||
"about.researchDescription": "The MIT Scratch Team and collaborators are researching how people use and learn with Scratch (for an introduction, see {spfaLink}. Find out more about Scratch {researchLink} and {statisticsLink} about Scratch.",
|
||||
"about.researchDescription": "The MIT Scratch Team and collaborators are researching how people use and learn with Scratch (for an introduction, see {spfaLink}). Find out more about Scratch {researchLink} and {statisticsLink} about Scratch.",
|
||||
"about.spfaLinkText": "Scratch: Programming for All",
|
||||
"about.researchLinkText": "research",
|
||||
"about.statisticsLinkText": "statistics",
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
const FormattedHTMLMessage = require('react-intl').FormattedHTMLMessage;
|
||||
const FormattedMessage = require('react-intl').FormattedMessage;
|
||||
const React = require('react');
|
||||
|
||||
|
@ -19,7 +18,16 @@ const Developers = () => (
|
|||
<FormattedMessage id="developers.title" />
|
||||
</h1>
|
||||
<p className="title-banner-p intro">
|
||||
<FormattedHTMLMessage id="developers.intro" />
|
||||
<FormattedMessage
|
||||
id="developers.intro"
|
||||
values={{
|
||||
introLink: (
|
||||
<a href="/info/credits">
|
||||
<FormattedMessage id="developers.introLinkText" />
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
<div className="band">
|
||||
|
@ -69,7 +77,25 @@ const Developers = () => (
|
|||
<div className="body-copy column">
|
||||
<h3><FormattedMessage id="developers.scratchBlocksTitle" /></h3>
|
||||
<p>
|
||||
<FormattedHTMLMessage id="developers.scratchBlocksIntro" />
|
||||
<FormattedMessage
|
||||
id="developers.scratchBlocksIntro"
|
||||
values={{
|
||||
blocklyLink: (
|
||||
<a href="https://developers.google.com/blockly/">
|
||||
<FormattedMessage
|
||||
id="developers.scratchBlocksIntroBlocklyLinkText"
|
||||
/>
|
||||
</a>
|
||||
),
|
||||
githubLink: (
|
||||
<a href="https://github.com/LLK/scratch-blocks">
|
||||
<FormattedMessage
|
||||
id="developers.hereLinkText"
|
||||
/>
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
<p>
|
||||
<FormattedMessage id="developers.scratchBlocksBody" />
|
||||
|
@ -85,7 +111,16 @@ const Developers = () => (
|
|||
<div className="body-copy column">
|
||||
<h3><FormattedMessage id="developers.wwwTitle" /></h3>
|
||||
<p>
|
||||
<FormattedHTMLMessage id="developers.wwwIntro" />
|
||||
<FormattedMessage
|
||||
id="developers.wwwIntro"
|
||||
values={{
|
||||
wwwIntroLink: (
|
||||
<a href="https://github.com/LLK/scratch-www">
|
||||
GitHub
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
@ -99,7 +134,21 @@ const Developers = () => (
|
|||
<div className="body-copy column">
|
||||
<h3>ScratchJr</h3>
|
||||
<p>
|
||||
<FormattedHTMLMessage id="developers.jrBody" />
|
||||
<FormattedMessage
|
||||
id="developers.jrBody"
|
||||
values={{
|
||||
websiteLink: (
|
||||
<a href="https://www.scratchjr.org">
|
||||
<FormattedMessage id="developers.jrBodyWebsiteLinkText" />
|
||||
</a>
|
||||
),
|
||||
githubLink: (
|
||||
<a href="https://github.com/LLK/scratchjr">
|
||||
GitHub
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
</FlexRow>
|
||||
|
@ -109,7 +158,17 @@ const Developers = () => (
|
|||
<span className="nav-spacer" />
|
||||
<h2><FormattedMessage id="developers.principlesTitle" /></h2>
|
||||
<p className="intro">
|
||||
<FormattedHTMLMessage id="developers.principlesIntro" />
|
||||
<FormattedMessage
|
||||
id="developers.principlesIntro"
|
||||
values={{
|
||||
learningPrinciples: (
|
||||
<b><FormattedMessage id="developers.LearningPrinciples" /></b>
|
||||
),
|
||||
designPrinciples: (
|
||||
<b><FormattedMessage id="developers.DesignPrinciples" /></b>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
|
||||
<FlexRow className="sidebar-row">
|
||||
|
@ -164,14 +223,39 @@ const Developers = () => (
|
|||
<section id="join">
|
||||
<span className="nav-spacer" />
|
||||
<h2><FormattedMessage id="developers.joinTitle" /></h2>
|
||||
<p><FormattedHTMLMessage id="developers.joinBody" /></p>
|
||||
<p>
|
||||
<FormattedMessage
|
||||
id="developers.joinBody"
|
||||
values={{
|
||||
jobsPageLink: (
|
||||
<a href="/jobs">
|
||||
<FormattedMessage id="developers.joinBodyJobsLinkText" />
|
||||
</a>
|
||||
),
|
||||
emailLink: (
|
||||
<a href="mailto:jobs+developers@scratch.mit.edu">
|
||||
jobs+developers@scratch.mit.edu
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section id="donate">
|
||||
<span className="nav-spacer" />
|
||||
<h2><FormattedMessage id="developers.donateTitle" /></h2>
|
||||
<p>
|
||||
<FormattedHTMLMessage id="developers.donateIntro" />
|
||||
<FormattedMessage
|
||||
id="developers.donateIntro"
|
||||
values={{
|
||||
donateLink: (
|
||||
<a href="https://secure.donationpay.org/scratchfoundation/">
|
||||
<FormattedMessage id="developers.donateIntroLinkText" />
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
<p>
|
||||
<FormattedMessage id="developers.donateBody" />
|
||||
|
@ -222,7 +306,26 @@ const Developers = () => (
|
|||
<div className="faq column">
|
||||
<h4><FormattedMessage id="developers.faqAboutTitle" /></h4>
|
||||
<p>
|
||||
<FormattedHTMLMessage id="developers.faqAboutBody" />
|
||||
<FormattedMessage
|
||||
id="developers.faqAboutBody"
|
||||
values={{
|
||||
llkLink: (
|
||||
<a href="https://www.media.mit.edu/groups/lifelong-kindergarten/overview">
|
||||
<FormattedMessage id="developers.faqAboutBodyLLKLinkText" />
|
||||
</a>
|
||||
),
|
||||
mitLink: (
|
||||
<a href="http://media.mit.edu/">
|
||||
<FormattedMessage id="developers.faqAboutBodyMITLinkText" />
|
||||
</a>
|
||||
),
|
||||
aboutLink: (
|
||||
<a href="/about">
|
||||
<FormattedMessage id="developers.hereLinkText" />
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
<div className="faq column">
|
||||
|
@ -254,7 +357,19 @@ const Developers = () => (
|
|||
<div className="faq column">
|
||||
<h4><FormattedMessage id="developers.faqCollabTitle" /></h4>
|
||||
<p>
|
||||
<FormattedHTMLMessage id="developers.faqCollabBody" />
|
||||
<FormattedMessage
|
||||
id="developers.faqCollabBody"
|
||||
values={{
|
||||
githubLink: (
|
||||
<a href="https://github.com/LLK/">GitHub</a>
|
||||
),
|
||||
emailLink: (
|
||||
<a href="mailto:help@scratch.mit.edu">
|
||||
help@scratch.mit.edu
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
</FlexRow>
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
{
|
||||
"developers.hereLinkText": "here",
|
||||
"developers.title": "Scratch for Developers",
|
||||
"developers.intro": "On this page, you’ll find information about open source projects created and maintained by the <a href=\"/info/credits\">Scratch Team at MIT</a>, as well as our thoughts on best practices for designing learning experiences for children.",
|
||||
"developers.introLinkText": "Scratch Team at MIT",
|
||||
"developers.intro": "On this page, you’ll find information about open source projects created and maintained by the {introLink}, as well as our thoughts on best practices for designing learning experiences for children.",
|
||||
"developers.projectsTitle": "Projects",
|
||||
"developers.principlesTitle": "Principles",
|
||||
"developers.joinTitle": "Join Us",
|
||||
|
@ -9,13 +11,16 @@
|
|||
"developers.faqTitle": "FAQ",
|
||||
"developers.projectsIntro": "The following projects are open source and available for any purpose.",
|
||||
"developers.scratchBlocksTitle": "Scratch Blocks",
|
||||
"developers.scratchBlocksIntro": "Scratch Blocks is a new development project for the next generation of graphical programming blocks, based on a collaboration between Google and MIT’s Scratch Team — building on Google’s <a href=\"https://developers.google.com/blockly/\">Blockly technology</a> and informed by the Scratch Team’s expertise in developing creative learning tools for young people. Scratch Blocks will provide a framework for building programming blocks in both vertical (text-based) and horizontal (icon-based) formats. You can access the code (currently as a developer-preview) and documentation <a href=\"https://github.com/llk/scratch-blocks\">here</a>.",
|
||||
"developers.scratchBlocksIntroBlocklyLinkText": "Blockly technology",
|
||||
"developers.scratchBlocksIntro": "Scratch Blocks is a new development project for the next generation of graphical programming blocks, based on a collaboration between Google and MIT’s Scratch Team — building on Google’s {blocklyLink} and informed by the Scratch Team’s expertise in developing creative learning tools for young people. Scratch Blocks will provide a framework for building programming blocks in both vertical (text-based) and horizontal (icon-based) formats. You can access the code (currently as a developer-preview) and documentation {githubLink}.",
|
||||
"developers.scratchBlocksBody": "This first release includes code for Scratch’s Horizontal Grammar. Looking ahead, we plan to release additional code including but not limited to the Vertical Grammar (currently used by Scratch), a new Rendering Engine to support sprites and graphic effects, and a new Audio Engine to support creation with sound and music.",
|
||||
"developers.wwwTitle": "Scratch WWW",
|
||||
"developers.wwwIntro": "Scratch-www is a standalone web client for the Scratch Community, built using React and Redux. Access the code and documentation through Github <a href=\"https://github.com/LLK/scratch-www\">here</a>.",
|
||||
"developers.principlesIntro": "We created Scratch to empower young people to think creatively, reason systematically, and work collaboratively. We are guided by a set of <b>Learning Principles</b> and <b>Design Principles</b> that we hope you will follow as you develop new tools and technologies with Scratch Blocks.",
|
||||
"developers.jrBody": "ScratchJr is an introductory programming language that enables young children (ages 5-7) to create their own interactive stories and games. For more information, visit the <a href=\"https://www.scratchjr.org/\">ScratchJr website</a> or access the code and documentation <a href=\"https://github.com/LLK/scratchjr\">on GitHub</a>.",
|
||||
"developers.learningPrinciplesTitle": "Learning Principles",
|
||||
"developers.wwwIntro": "Scratch-www is a standalone web client for the Scratch Community, built using React and Redux. Access the code and documentation through {wwwIntroLink}.",
|
||||
"developers.LearningPrinciples": "Learning Principles",
|
||||
"developers.DesignPrinciples": "Design Principles",
|
||||
"developers.principlesIntro": "We created Scratch to empower young people to think creatively, reason systematically, and work collaboratively. We are guided by a set of {learningPrinciples} and {designPrinciples} that we hope you will follow as you develop new tools and technologies with Scratch Blocks.",
|
||||
"developers.jrBodyWebsiteLinkText": "ScratchJr website",
|
||||
"developers.jrBody": "ScratchJr is an introductory programming language that enables young children (ages 5-7) to create their own interactive stories and games. For more information, visit the {websiteLink} or access the code and documentation on {githubLink}.",
|
||||
"developers.learningPrinciplesProjectsBody": "People learn best when they are actively working on projects — generating new ideas, designing prototypes, making improvements and creating final products.",
|
||||
"developers.learningPrinciplesPassionTitle": "Passion",
|
||||
"developers.learningPrinciplesPassionBody": "When people focus on things they care about, they work longer and harder, persist in the face of challenges, and learn more in the process.",
|
||||
|
@ -23,7 +28,6 @@
|
|||
"developers.learningPrinciplesPeersBody": "Learning flourishes as a social activity, with people sharing ideas, collaborating on projects, and building on one another's work.",
|
||||
"developers.learningPrinciplesPlayTitle": "Play",
|
||||
"developers.learningPrinciplesPlayBody": "Learning involves playful experimentation — trying new things, tinkering with materials, testing boundaries, taking risks, iterating again and again.",
|
||||
"developers.designPrinciplesTitle": "Design Principles",
|
||||
"developers.designPrinciplesRoomTitle": "Low Floor & Wide Walls",
|
||||
"developers.designPrinciplesRoomBody": "In order to encourage a varied and diverse set of interactions, we explicitly include elements and features that are easy for kids to understand (low floor), but general enough to support diverse uses (wide walls).",
|
||||
"developers.designPrinciplesSimpleTitle": "Make it as Simple as Possible — And Maybe Even Simpler",
|
||||
|
@ -32,13 +36,17 @@
|
|||
"developers.designPrinciplesGlobalBody": "Many math and science activities have traditionally been biased towards specific populations. By paying special attention to creating accessible and appealing technologies, we are working to close the gap.",
|
||||
"developers.designPrinciplesTinkerTitle": "Design for Tinkerability",
|
||||
"developers.designPrinciplesTinkerBody": "We believe that the learning process is inherently iterative. Tinkerers start by exploring and experimenting, then revising and refining their goals and creations. To support this style of interaction, we design our interfaces to encourage quick experimentation and rapid cycles of iteration.",
|
||||
"developers.joinBody": "We're a diverse group of educators, designers, and engineers, who work together in a playful, creative environment full of LEGO bricks, craft materials, and maker tools. We strongly value diversity, collaboration, and respect in the workplace. If you're interested in joining us, take a look at our open positions on our <a href=\"/jobs\">Jobs Page</a>, or send us an email at <a href=\"mailto:jobs+developers@scratch.mit.edu\">jobs+developers@scratch.mit.edu</a>.",
|
||||
"developers.donateIntro": "We are pleased to provide Scratch free of charge. If you enjoy using Scratch, please consider <a href=\"https://secure.donationpay.org/scratchfoundation/\">making a donation to support Scratch</a>. Donations of any size are appreciated.",
|
||||
"developers.joinBodyJobsLinkText": "Jobs Page",
|
||||
"developers.joinBody": "We're a diverse group of educators, designers, and engineers, who work together in a playful, creative environment full of LEGO bricks, craft materials, and maker tools. We strongly value diversity, collaboration, and respect in the workplace. If you're interested in joining us, take a look at our open positions on our {jobsPageLink}, or send us an email at {emailLink}.",
|
||||
"developers.donateIntroLinkText": "making a donation to support Scratch",
|
||||
"developers.donateIntro": "We are pleased to provide Scratch free of charge. If you enjoy using Scratch, please consider {donateLink}. Donations of any size are appreciated.",
|
||||
"developers.donateBody": "Your donation to the Scratch Foundation will be used to support future development of Scratch software and the Scratch website.",
|
||||
"developers.donateThanks": "Thanks for supporting Scratch!",
|
||||
"developers.partnersIntro": "The creation and maintenance of this open source code would not be possible without generous technical and financial support from our partners:",
|
||||
"developers.faqAboutTitle": "Where can I learn more about Scratch?",
|
||||
"developers.faqAboutBody": "Scratch is a free programming language and online community where young people can create their own interactive stories, games, and animations. Scratch is a project of the <a href=\"https://www.media.mit.edu/groups/lifelong-kindergarten/overview\">Lifelong Kindergarten</a> Group at the <a href=\"http://media.mit.edu/\">MIT Media Lab</a>. You can learn more about Scratch <a href=\"/about\">here</a>.",
|
||||
"developers.faqAboutBodyLLKLinkText": "Lifelong Kindergarten",
|
||||
"developers.faqAboutBodyMITLinkText": "MIT Media Lab",
|
||||
"developers.faqAboutBody": "Scratch is a free programming language and online community where young people can create their own interactive stories, games, and animations. Scratch is a project of the {llkLink} Group at the {mitLink}. You can learn more about Scratch {aboutLink}.",
|
||||
"developers.faqRulesTitle": "Are there rules to using this code in my application?",
|
||||
"developers.faqRulesBody": "You may use this code in accordance with the license which governs each project. We also strongly encourage you to consider the learning and design principles (above, on this page) when building creative learning experiences for kids of all ages.",
|
||||
"developers.faqNameTitle": "Am I allowed to use the name \"Scratch Blocks\" in the description of my app and other public messaging?",
|
||||
|
@ -48,5 +56,5 @@
|
|||
"developers.faqDifferencesTitle": "What’s the difference between Blockly and Scratch Blocks?",
|
||||
"developers.faqDifferencesBody": "Scratch Blocks builds upon the Blockly code base, and is specifically designed with our principles in mind to support creative learning experiences.",
|
||||
"developers.faqCollabTitle": "I’d like to collaborate. How do I get in touch?",
|
||||
"developers.faqCollabBody": "You can reach us over on <a href=\"https://github.com/LLK/\">github</a> or you can send an email to <a href=\"mailto:help@scratch.mit.edu\">help@scratch.mit.edu.</a> We look forward to hearing from you!"
|
||||
"developers.faqCollabBody": "You can reach us over on {githubLink} or you can send an email to {emailLink}. We look forward to hearing from you!"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue