mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 09:35:56 -05:00
Don’t duplicate localization strings
Current launch banner should just use the intro.startCreating string for the call to action. Leaving the generic Call to Action in place for the next banner.
This commit is contained in:
parent
496fdad8be
commit
496d585add
2 changed files with 3 additions and 2 deletions
|
@ -21,7 +21,8 @@ const TopBanner = props => (
|
||||||
className="feature-call-to-action button"
|
className="feature-call-to-action button"
|
||||||
href={props.actionLink}
|
href={props.actionLink}
|
||||||
>
|
>
|
||||||
<FormattedMessage id="featureBanner.callToAction" />
|
{/* <FormattedMessage id="featureBanner.callToAction" /> */}
|
||||||
|
<FormattedMessage id="intro.startCreating" />
|
||||||
</a>
|
</a>
|
||||||
</FlexRow>
|
</FlexRow>
|
||||||
<div className="feature-banner-images">
|
<div className="feature-banner-images">
|
||||||
|
|
|
@ -40,5 +40,5 @@
|
||||||
|
|
||||||
"featureBanner.title": "The new Scratch is here!",
|
"featureBanner.title": "The new Scratch is here!",
|
||||||
"featureBanner.subtitle": "not used",
|
"featureBanner.subtitle": "not used",
|
||||||
"featureBanner.callToAction": "Start Creating"
|
"featureBanner.callToAction": "call to action"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue