Merge pull request from TheGrits/patch-6

Fix gh-426: Update Project Count
This commit is contained in:
Matthew Taylor 2016-04-29 16:38:02 -04:00
commit 87009babae
4 changed files with 5 additions and 5 deletions
src
components/intro
views
conference/expect
splash

View file

@ -24,7 +24,7 @@ var Intro = React.createClass({
'intro.tagLine': 'Create stories, games, and animations<br /> Share with others around the world',
'intro.tryItOut': 'TRY IT OUT',
'intro.description': 'A creative learning community with <span class="project-count"> ' +
'over 13 million </span>projects shared'
'over 14 million </span>projects shared'
},
session: {}
};

View file

@ -33,7 +33,7 @@ var ConferenceExpectations = React.createClass({
<p className="intro">
The Scratch community keeps growing and growing.{' '}
Young people around the world have shared more than{' '}
13 million projects in the Scratch online community{' '}
14 million projects in the Scratch online community{' '}
with 20,000 new projects every day.
</p>
<p className="intro">

View file

@ -19,7 +19,7 @@
"intro.tagLine": "Create stories, games, and animations<br /> Share with others around the world",
"intro.tryItOut": "TRY IT OUT",
"intro.description": "A creative learning community with <span class=\"project-count\"> {value} </span>projects shared",
"intro.defaultDescription": "A creative learning community with <span class=\"project-count\"> over 13 million </span>projects shared",
"intro.defaultDescription": "A creative learning community with <span class=\"project-count\"> over 14 million </span>projects shared",
"news.scratchNews": "Scratch News",
@ -27,4 +27,4 @@
"welcome.learn": "Learn how to make a project in Scratch",
"welcome.tryOut": "Try out starter projects",
"welcome.connect": "Connect with other Scratchers"
}
}

View file

@ -29,7 +29,7 @@ var Splash = injectIntl(React.createClass({
],
getInitialState: function () {
return {
projectCount: 13000000, // gets the shared project count
projectCount: 14000000, // gets the shared project count
activity: [], // recent social actions taken by users someone is following
news: [], // gets news posts from the scratch Tumblr
featuredCustom: {}, // custom homepage rows, such as "Projects by Scratchers I'm Following"