mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-17 00:21:20 -05:00
make suggested changes
This commit is contained in:
parent
24a345cc21
commit
e4be2bd87c
4 changed files with 41 additions and 25 deletions
|
@ -20,7 +20,7 @@
|
|||
"download.updatesBody": "The Offline Editor can update itself (with user permission). It will check for updates at startup or you can use the \"Check for updates\" command in the file menu.",
|
||||
"download.currentVersion": "The current version is {version}.",
|
||||
"download.otherVersionsTitle": "Other Versions of Scratch",
|
||||
"download.otherVersionsOlder": "If you have an older computer, or cannot install the Scratch 2.0 offline editor, you can try installing <a href=\"/scratch_1.4/\">Scratch 1.4</a>.",
|
||||
"download.otherVersionsOlder": "If you have an older computer, or cannot install the Scratch 2.0 offline editor, you can try installing <a href=\"http://scratch.mit.edu/scratch_1.4/\">Scratch 1.4</a>.",
|
||||
"download.otherVersionsAdmin": "If you are a network administrator: a Scratch 2.0 MSI has been created and maintained by a member of the community and hosted for public download <a href=\"http://llk.github.io/scratch-msi/\">here</a>.",
|
||||
"download.knownIssuesTitle": "Known issues",
|
||||
"download.knownIssuesOne": "If your offline editor is crashing directly after Scratch is opened, install the Scratch 2 offline editor again (see step 2 above). This issue is due to a bug introduced in Adobe AIR version 14 (released April 2014).",
|
||||
|
|
|
@ -1,21 +1,18 @@
|
|||
{
|
||||
"onePointFour.title": "Scratch 1.4",
|
||||
"onePointFour.intro": "The previous version of Scratch, version 1.4, is still available for download.",
|
||||
"onePointFour.introNoteLabel": "Note:",
|
||||
"onePointFour.introNote": "{noteLabel} You can still share projects from 1.4 to the Scratch website. However, projects created in Scratch 2.0 cannot be opened in 1.4.",
|
||||
"onePointFour.downloads": "Downloads",
|
||||
"onePointFour.macTitle": "Mac OS X",
|
||||
"onePointFour.macBody": "Compatible with Mac OSX 10.4 or later",
|
||||
"onePointFour.macDownload": "MacScratch1.4.dmg",
|
||||
"onePointFour.windowsTitle": "Windows",
|
||||
"onePointFour.windowsBody": "Compatible with Windows 2000, XP, Vista, 7, and 8",
|
||||
"onePointFour.windowsDownload": "ScratchInstaller1.4.exe",
|
||||
"onePointFour.windowsNetwork": "installer",
|
||||
"onePointFour.windowsNetworkBody": "Network deployments use the",
|
||||
"onePointFour.windowsNetworkInstaller": "installer",
|
||||
"onePointFour.windowsNetwork": "Network deployments use the {windowsNetworkInstaller}",
|
||||
"onePointFour.linuxTitle": "Debian / Ubuntu",
|
||||
"onePointFour.linuxBody": "Compatible with Ubuntu 12.04 or later",
|
||||
"onePointFour.linuxInstall": "Install Scratch with Software Center",
|
||||
"onePointFour.linuxOr": "or",
|
||||
"onePointFour.linuxOptions": "{linuxInstall} or {linuxDownload}",
|
||||
"onePointFour.linuxDownload": "download here",
|
||||
"onePointFour.faqsTitle": "Frequently Asked Questions",
|
||||
"onePointFour.resourcesQ": "What resources are available to help me learn how to use Scratch 1.4?",
|
||||
|
|
|
@ -15,7 +15,7 @@ const OnePointFour = () => (
|
|||
<TitleBanner className="masthead">
|
||||
<div className="inner">
|
||||
<h1 className="title-banner-h1">
|
||||
<FormattedMessage id="onePointFour.title" />
|
||||
Scratch 1.4
|
||||
</h1>
|
||||
<p className="title-banner-p intro">
|
||||
<FormattedMessage id="onePointFour.intro" />
|
||||
|
@ -68,8 +68,8 @@ const OnePointFour = () => (
|
|||
<p><FormattedMessage id="onePointFour.macBody" /></p>
|
||||
<ul className="installation-downloads">
|
||||
<li className="installation-downloads-item">
|
||||
{' '}<a href="http://download.scratch.mit.edu/MacScratch1.4.dmg">
|
||||
<FormattedMessage id="onePointFour.macDownload" />
|
||||
<a href="http://download.scratch.mit.edu/MacScratch1.4.dmg">
|
||||
MacScratch1.4.dmg
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
@ -86,15 +86,21 @@ const OnePointFour = () => (
|
|||
key="installation-downloads"
|
||||
>
|
||||
<li className="installation-downloads-item">
|
||||
{' '}<a href="http://download.scratch.mit.edu/ScratchInstaller1.4.exe">
|
||||
<FormattedMessage id="onePointFour.windowsDownload" />
|
||||
<a href="http://download.scratch.mit.edu/ScratchInstaller1.4.exe">
|
||||
ScratchInstaller1.4.exe
|
||||
</a>
|
||||
</li>
|
||||
<li className="installation-downloads-item">
|
||||
<FormattedMessage id="onePointFour.windowsNetworkBody" />
|
||||
{' '}<a href="http://download.scratch.mit.edu/Scratch1.4.msi.installer.zip">
|
||||
<FormattedMessage id="onePointFour.windowsNetwork" />
|
||||
</a>
|
||||
<FormattedMessage
|
||||
id="onePointFour.windowsNetwork"
|
||||
values={{
|
||||
windowsNetworkInstaller: (
|
||||
<a href="http://download.scratch.mit.edu/Scratch1.4.msi.installer.zip">
|
||||
<FormattedMessage id="onePointFour.windowsNetworkInstaller" />
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
@ -107,15 +113,21 @@ const OnePointFour = () => (
|
|||
<p><FormattedMessage id="onePointFour.linuxBody" /></p>
|
||||
<ul className="installation-downloads">
|
||||
<li className="installation-downloads-item">
|
||||
{' '}<a href="apt:scratch">
|
||||
<FormattedMessage id="onePointFour.linuxInstall" />
|
||||
</a>
|
||||
</li>
|
||||
<li className="installation-downloads-item">
|
||||
<FormattedMessage id="onePointFour.linuxOr" />
|
||||
{' '}<a href="http://ubuntu.media.mit.edu/ubuntu//pool/universe/s/scratch/scratch_1.4.0.6~dfsg1-5~ubuntu12.04.1_all.deb">
|
||||
<FormattedMessage id="onePointFour.linuxDownload" />
|
||||
</a>
|
||||
<FormattedMessage
|
||||
id="onePointFour.linuxOptions"
|
||||
values={{
|
||||
linuxInstall: (
|
||||
<a href="apt:scratch">
|
||||
<FormattedMessage id="onePointFour.linuxInstall" />
|
||||
</a>
|
||||
),
|
||||
linuxDownload: (
|
||||
<a href="http://ubuntu.media.mit.edu/ubuntu//pool/universe/s/scratch/scratch_1.4.0.6~dfsg1-5~ubuntu12.04.1_all.deb">
|
||||
<FormattedMessage id="onePointFour.linuxDownload" />
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
@ -68,6 +68,7 @@
|
|||
}
|
||||
|
||||
.installation-column {
|
||||
padding-top: 40px;
|
||||
max-width: $cols4;
|
||||
text-align: center;
|
||||
|
||||
|
@ -95,6 +96,12 @@
|
|||
.mod-link {
|
||||
color: $ui-white;
|
||||
}
|
||||
|
||||
#faqs {
|
||||
h2 {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media #{$small} {
|
||||
.inner {
|
||||
|
|
Loading…
Reference in a new issue