Merge pull request #3672 from chrisgarrity/download-faq

Add FAQ about updating the app
This commit is contained in:
Benjamin Wheeler 2020-02-05 13:40:15 -05:00 committed by GitHub
commit 6e543b0c55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 1 deletions

View file

@ -237,7 +237,24 @@ class Download extends React.Component {
<p>
<FormattedMessage id="download.onPhoneAnswer" />
</p>
<h3 className="faq-question">
<FormattedMessage id="download.howUpdateApp" />
</h3>
{isDownloaded(this.state.OS) && (
<p>
<FormattedMessage
id="download.howUpdateAppAnswerDownload"
values={{operatingsystem: this.state.OS}}
/>
</p>
)}
{isFromGooglePlay(this.state.OS) && (
<p>
<FormattedMessage
id="download.howUpdateAppAnswerPlayStore"
/>
</p>
)}
<h3 className="faq-question">
<FormattedMessage id="download.whenSupportLinuxApp" />
</h3>

View file

@ -36,6 +36,9 @@
"download.yesAnswer" : "Yes.",
"download.onPhone": "Can I install Scratch on my Android phone?",
"download.onPhoneAnswer" : "No. The current version of Scratch for Android only works on tablets.",
"download.howUpdateApp" : "How do I update the Scratch app?",
"download.howUpdateAppAnswerPlayStore" : "Open the Google Play store and check for updates. If your installation is managed by school administrators, they will need to update the version and make the update available to managed devices.",
"download.howUpdateAppAnswerDownload" : "To update Scratch for {operatingsystem} from this page, download the latest version and install. To check which version you have, click the Scratch logo in the downloaded app.",
"download.canIShare": "Can I share from Scratch Desktop?",
"download.canIShareAnswer": "This isnt supported currently. For now, you can save a project from Scratch Desktop, upload it to your Scratch account, and share it there. In a later version we will add the ability to upload to your Scratch account directly in Scratch Desktop.",
"download.canIShareApp": "Can I share to the online community from the Scratch app for {operatingsystem}?",