Merge pull request #3710 from apple502j/localize-activity

Localize activity messages
This commit is contained in:
chrisgarrity 2020-04-14 15:42:45 -04:00 committed by GitHub
commit 5e21c58c2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 9 deletions

View file

@ -42,5 +42,8 @@
"welcome.welcomeToScratch": "Welcome to Scratch!",
"welcome.learn": "Learn how to make a project in Scratch",
"welcome.tryOut": "Try out starter projects",
"welcome.connect": "Connect with other Scratchers"
"welcome.connect": "Connect with other Scratchers",
"activity.seeUpdates": "This is where you will see updates from Scratchers you follow",
"activity.checkOutScratchers": "Check out some Scratchers you might like to follow"
}

View file

@ -178,16 +178,10 @@ class ActivityList extends React.Component {
key="activity-empty"
>
<h4>
<FormattedMessage
defaultMessage="This is where you will see updates from Scratchers you follow"
id="activity.seeUpdates"
/>
<FormattedMessage id="activity.seeUpdates" />
</h4>
<a href="/studios/146521/">
<FormattedMessage
defaultMessage="Check out some Scratchers you might like to follow"
id="activity.checkOutScratchers"
/>
<FormattedMessage id="activity.checkOutScratchers" />
</a>
</div>
]}