diff --git a/src/components/welcome/welcome.jsx b/src/components/welcome/welcome.jsx index fcb8f1f6c..751e6b493 100644 --- a/src/components/welcome/welcome.jsx +++ b/src/components/welcome/welcome.jsx @@ -26,7 +26,7 @@ const Welcome = props => ( > {props.messages['welcome.explore']} Starter Projects @@ -37,7 +37,7 @@ const Welcome = props => ( > {props.messages['welcome.community']} Community Guidelines @@ -52,7 +52,7 @@ const Welcome = props => ( > {props.messages['welcome.create']} Get Started @@ -64,8 +64,11 @@ Welcome.propTypes = { messages: PropTypes.shape({ 'welcome.welcomeToScratch': PropTypes.string, 'welcome.explore': PropTypes.string, + 'welcome.exploreAlt': PropTypes.string, 'welcome.community': PropTypes.string, - 'welcome.create': PropTypes.string + 'welcome.communityAlt': PropTypes.string, + 'welcome.create': PropTypes.string, + 'welcome.createAlt': PropTypes.string }), onDismiss: PropTypes.func, permissions: PropTypes.object, @@ -76,8 +79,11 @@ Welcome.defaultProps = { messages: { 'welcome.welcomeToScratch': 'Welcome to Scratch!', 'welcome.explore': 'Explore Starter Projects', + 'welcome.exploreAlt': 'Starter Projects', 'welcome.community': 'Learn about the community', - 'welcome.create': 'Create a Project' + 'welcome.communityAlt': 'Community Guidelines', + 'welcome.create': 'Create a Project', + 'welcome.createAlt': 'Get Started' } }; diff --git a/src/views/guidelines/l10n.json b/src/views/guidelines/l10n.json index 4764f3ce8..29cc2023d 100644 --- a/src/views/guidelines/l10n.json +++ b/src/views/guidelines/l10n.json @@ -1,5 +1,5 @@ { - "guidelines.title": "The Purpose of Scratch Community", + "guidelines.title": "Scratch Community Guidelines", "guidelines.header1": "Scratch is a friendly and welcoming community for everyone, where people create, share, and learn together.", "guidelines.header2": "We welcome people of all ages, races, ethnicities, religions, abilities, sexual orientations, and gender identities.", "guidelines.header3": "Help keep Scratch a welcoming, supportive, and creative space for all by following these Community Guidelines:", diff --git a/src/views/ideas/ideas.jsx b/src/views/ideas/ideas.jsx index 1f7d81486..6be112b5d 100644 --- a/src/views/ideas/ideas.jsx +++ b/src/views/ideas/ideas.jsx @@ -114,7 +114,7 @@ const Ideas = () => {