mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
fix: remove EV3 info from Scratch Link page
Based on feedback from Kevin B
This commit is contained in:
parent
5af85a596f
commit
d5ce8aa542
4 changed files with 8 additions and 15 deletions
|
@ -451,8 +451,6 @@
|
|||
"extensions.checkOSVersionTitle": "Make sure your operating system is compatible with Scratch Link",
|
||||
"extensions.checkOSVersionText": "The minimum operating system versions are listed at the top of this page. See instructions for checking your version of {winOSVersionLink} or {macOSVersionLink}.",
|
||||
"extensions.checkOsVersionText2": "If you are using macOS 12, please update to macOS 12.3 or newer. Earlier versions of macOS 12 do not work correctly with Scratch Link.",
|
||||
"extensions.ev3TryScratchLink1.4": "If you have issues connecting EV3 with Scratch Link 2.0, please try Scratch Link 1.4.",
|
||||
"extensions.downloadScratchLink1.4": "Download Scratch Link 1.4",
|
||||
"extensions.winOSVersionLinkText": "Windows",
|
||||
"extensions.macOSVersionLinkText": "macOS",
|
||||
"extensions.closeScratchCopiesTitle": "Close other copies of Scratch",
|
||||
|
|
|
@ -16,7 +16,6 @@ import ExtensionSection from '../../../components/extension-landing/extension-se
|
|||
import ExtensionTroubleshooting from '../../../components/extension-landing/extension-troubleshooting.jsx';
|
||||
import InstallScratchLink from '../../../components/extension-landing/install-scratch-link.jsx';
|
||||
|
||||
import OS_ENUM from '../../../lib/os-enum.js';
|
||||
import {isDownloaded} from '../../../components/install-scratch/install-util.js';
|
||||
|
||||
import '../../../components/extension-landing/extension-landing.scss';
|
||||
|
@ -136,12 +135,6 @@ const ScratchLink = ({intl}) => {
|
|||
/>
|
||||
</p>
|
||||
<p><FormattedMessage id="extensions.checkOsVersionText2" /></p>
|
||||
<h3 className="faq-title"><FormattedMessage id="extensions.ev3TryScratchLink1.4" /></h3>
|
||||
<p><a
|
||||
href={`https://downloads.scratch.mit.edu/link/scratch-link-${
|
||||
os === OS_ENUM.WINDOWS ? 'windows' : 'mac'
|
||||
}-1.4.3.zip`}
|
||||
><FormattedMessage id="extensions.downloadScratchLink1.4" /></a></p>
|
||||
</React.Fragment>
|
||||
)}
|
||||
<h3 className="faq-title"><FormattedMessage id="scratchLink.closeScratchCopiesTitle" /></h3>
|
||||
|
|
|
@ -288,12 +288,6 @@ class EV3 extends ExtensionLanding {
|
|||
>
|
||||
{isDownloaded(this.state.OS) && (
|
||||
<React.Fragment>
|
||||
<h3 className="faq-title"><FormattedMessage id="extensions.ev3TryScratchLink1.4" /></h3>
|
||||
<p><a
|
||||
href={`https://downloads.scratch.mit.edu/link/scratch-link-${
|
||||
this.state.OS === OS_ENUM.WINDOWS ? 'windows' : 'mac'
|
||||
}-1.4.3.zip`}
|
||||
><FormattedMessage id="extensions.downloadScratchLink1.4" /></a></p>
|
||||
<h3 className="faq-title"><FormattedMessage id="ev3.checkOSVersionTitle" /></h3>
|
||||
<p>
|
||||
<FormattedMessage
|
||||
|
@ -321,6 +315,12 @@ class EV3 extends ExtensionLanding {
|
|||
/>
|
||||
</p>
|
||||
<p><FormattedMessage id="extensions.checkOsVersionText2" /></p>
|
||||
<h3 className="faq-title"><FormattedMessage id="ev3.tryScratchLink1.4" /></h3>
|
||||
<p><a
|
||||
href={`https://downloads.scratch.mit.edu/link/scratch-link-${
|
||||
this.state.OS === OS_ENUM.WINDOWS ? 'windows' : 'mac'
|
||||
}-1.4.3.zip`}
|
||||
><FormattedMessage id="ev3.downloadScratchLink1.4" /></a></p>
|
||||
</React.Fragment>
|
||||
)}
|
||||
<h3 className="faq-title"><FormattedMessage id="ev3.makeSurePairedTitle" /></h3>
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
"ev3.troubleshootingTitle": "Troubleshooting",
|
||||
"ev3.checkOSVersionTitle": "Make sure your operating system is compatible with Scratch Link",
|
||||
"ev3.checkOSVersionText": "The minimum operating system versions are listed at the top of this page. See instructions for checking your version of {winOSVersionLink} or {macOSVersionLink}.",
|
||||
"ev3.tryScratchLink1.4": "If you have issues connecting EV3 with Scratch Link 2.0, please try Scratch Link 1.4",
|
||||
"ev3.downloadScratchLink1.4": "Download Scratch Link 1.4",
|
||||
"ev3.winOSVersionLinkText": "Windows",
|
||||
"ev3.macOSVersionLinkText": "macOS",
|
||||
"ev3.makeSurePairedTitle": "Make sure your computer is paired with your EV3",
|
||||
|
|
Loading…
Reference in a new issue