mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-17 00:21:20 -05:00
Updates to the parents page. See #2355
This commit is contained in:
parent
d13a773f7c
commit
495299908b
2 changed files with 30 additions and 19 deletions
|
@ -17,9 +17,10 @@
|
|||
"parents.faqDiscussionForumsLinkText": "Discussion Forums",
|
||||
"parents.faqContactUsLinkText": "Contact Us",
|
||||
"parents.faqAgeRangeTitle": "What is the age range for Scratch?",
|
||||
"parents.faqAgeRangeBody": "While Scratch is primarily designed for 8 to 16 year olds, it is also used by people of all ages, including younger children with their parents. ",
|
||||
"parents.faqAgeRangeBody": "Scratch is designed especially for young people ages 8 to 16, but people of all ages create and share with Scratch. Younger children may want to try {scratchJr}, a simplified version of Scratch designed for ages 5 to 7.",
|
||||
"parents.faqResourcesTitle": "What resources are available for learning Scratch?",
|
||||
"parents.faqResourcesBody": "If you’re just getting started, there’s a {stepByStepGuide} available inside Scratch, or you can download the {gettingStartedGuide}. The {scratchCards} provide a fun way to learn more. For an overview of Scratch resources, see {tips}.",
|
||||
"parents.faqResourcesBody": "If you’re just getting started, there’s a {stepByStepGuide} available inside Scratch. For an overview of Scratch resources, see the {ideasPage} page.",
|
||||
"parents.faqIdeasLinkText": "Ideas",
|
||||
"parents.faqStepByStepGuideLinkText": "step-by-step guide",
|
||||
"parents.faqGettingStartedGuideLinkText": "Getting Started guide (PDF)",
|
||||
"parents.faqScratchCardsLinkText": "Scratch Cards",
|
||||
|
@ -30,10 +31,11 @@
|
|||
"parents.faqGuidelinesBody": "The MIT Scratch Team works with the community to maintain a friendly and respectful environment for people of all ages, races, ethnicities, religions, sexual orientations, and gender identities. You can help your child learn how to participate by reviewing the {communityGuidelines} together. Members are asked to comment constructively and to help keep the website friendly by reporting any content that does not follow the community guidelines. The Scratch Team works each day to manage activity on the site and respond to reports, with the help of tools such as the {CleanSpeak} profanity filter.",
|
||||
"parents.faqCommunityGuidelinesLinkText": "community guidelines",
|
||||
"parents.faqPrivacyPolicyTitle": "What is your privacy policy?",
|
||||
"parents.faqPrivacyPolicyBody": "To protect children's online privacy, we limit what we collect during the signup process, and what we make public on the website. We don't sell or rent account information to anyone. You can find out more about our privacy policy on our {faqPage} page.",
|
||||
"parents.faqPrivacyPolicyBody": "To protect children's online privacy, we limit what we collect during the signup process, and what we make public on the website. We don't sell or rent account information to anyone. You can find out more about our {privacyPolicy} page.",
|
||||
"parents.faqFAQLinkText": "frequently asked questions page",
|
||||
"parents.faqOfflineTitle": "Is there a way to use Scratch without participating online?",
|
||||
"parents.faqOfflineBody": "Yes, the Scratch offline editor lets you create projects without joining or accessing the online community. Visit the {offline2} download page for instructions on how to install it on your computer. (If your computer does not support the latest version, try the {offline14}.) ",
|
||||
"parents.faqOfflineBody" : "The Scratch Desktop editor allows you to create Scratch projects without an internet connection. You can download {scratchDesktop} from the website. This was previously called the Scratch Offline editor.",
|
||||
"parents.faqScratchDesktop": "Scratch Desktop",
|
||||
"parents.faqOffline2LinkText": "Scratch 2.0 offline editor",
|
||||
"parents.faqOffline14LinkText": "Scratch 1.4 offline editor"
|
||||
}
|
||||
|
|
|
@ -141,7 +141,16 @@ const Landing = () => (
|
|||
<div className="faq column">
|
||||
<h3><FormattedMessage id="parents.faqAgeRangeTitle" /></h3>
|
||||
<p>
|
||||
<FormattedMessage id="parents.faqAgeRangeBody" />
|
||||
<FormattedMessage
|
||||
id="parents.faqAgeRangeBody"
|
||||
values={{
|
||||
scratchJr: (
|
||||
<a href="https://www.scratchjr.org/">
|
||||
ScratchJr
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
<div className="faq column">
|
||||
|
@ -150,8 +159,15 @@ const Landing = () => (
|
|||
<FormattedMessage
|
||||
id="parents.faqResourcesBody"
|
||||
values={{
|
||||
ideasPage: (
|
||||
<a href="/ideas">
|
||||
<FormattedMessage
|
||||
id="parents.faqIdeasLinkText"
|
||||
/>
|
||||
</a>
|
||||
),
|
||||
stepByStepGuide: (
|
||||
<a href="/projects/editor/?tip_bar=getStarted">
|
||||
<a href="/projects/editor/?tutorial=getStarted">
|
||||
<FormattedMessage
|
||||
id="parents.faqStepByStepGuideLinkText"
|
||||
/>
|
||||
|
@ -214,10 +230,10 @@ const Landing = () => (
|
|||
<FormattedMessage
|
||||
id="parents.faqPrivacyPolicyBody"
|
||||
values={{
|
||||
faqPage: (
|
||||
<a href="/info/faq">
|
||||
privacyPolicy: (
|
||||
<a href="/privacy_policy">
|
||||
<FormattedMessage
|
||||
id="parents.faqFAQLinkText"
|
||||
id="parents.privacyPolicyLinkText"
|
||||
/>
|
||||
</a>
|
||||
)
|
||||
|
@ -231,17 +247,10 @@ const Landing = () => (
|
|||
<FormattedMessage
|
||||
id="parents.faqOfflineBody"
|
||||
values={{
|
||||
offline2: (
|
||||
<a href="/scratch2download">
|
||||
scratchDesktop: (
|
||||
<a href="/download">
|
||||
<FormattedMessage
|
||||
id="parents.faqOffline2LinkText"
|
||||
/>
|
||||
</a>
|
||||
),
|
||||
offline14: (
|
||||
<a href="/scratch_1.4">
|
||||
<FormattedMessage
|
||||
id="parents.faqOffline14LinkText"
|
||||
id="parents.faqScratchDesktop"
|
||||
/>
|
||||
</a>
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue