mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 01:25:52 -05:00
made more conferences 2019 related strings translatable
This commit is contained in:
parent
b2b3dfa037
commit
42844a8927
5 changed files with 20 additions and 10 deletions
|
@ -55,10 +55,12 @@ const ConferenceFooter = props => (
|
|||
</div>
|
||||
<div className="media">
|
||||
<div className="contact-us">
|
||||
<h4>Contact</h4>
|
||||
<h4>
|
||||
<FormattedMessage id="general.contact" />
|
||||
</h4>
|
||||
<p>
|
||||
<a href="mailto:help@scratch.mit.edu">
|
||||
Email Us
|
||||
<FormattedMessage id="general.emailUs" />
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
const injectIntl = require('react-intl').injectIntl;
|
||||
const React = require('react');
|
||||
const FormattedMessage = require('react-intl').FormattedMessage;
|
||||
|
||||
const NavigationBox = require('../../base/navigation.jsx');
|
||||
|
||||
|
@ -17,11 +19,13 @@ const Navigation = () => (
|
|||
className="logo-a-image"
|
||||
src="/images/logo_sm.png"
|
||||
/>
|
||||
<p className="logo-a-title">Conferences</p>
|
||||
<p className="logo-a-title">
|
||||
<FormattedMessage id="general.conferences" />
|
||||
</p>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</NavigationBox>
|
||||
);
|
||||
|
||||
module.exports = Navigation;
|
||||
module.exports = injectIntl(Navigation);
|
||||
|
|
|
@ -11,6 +11,9 @@
|
|||
"general.community": "Community",
|
||||
"general.confirmEmail": "Confirm Email",
|
||||
"general.contactUs": "Contact Us",
|
||||
"general.contact": "Contact",
|
||||
"general.emailUs": "Email Us",
|
||||
"general.conferences": "Conferences",
|
||||
"general.copyright": "Scratch is a project of the Lifelong Kindergarten Group at the MIT Media Lab",
|
||||
"general.copyrightDraft": "Scratch is a project of the Scratch Foundation in collaboration with the Lifelong Kindergarten Group at the MIT Media Lab.",
|
||||
"general.country": "Country",
|
||||
|
@ -18,6 +21,7 @@
|
|||
"general.credits": "Credits",
|
||||
"general.dmca": "DMCA",
|
||||
"general.emailAddress": "Email Address",
|
||||
"general.english": "English",
|
||||
"general.error": "Oops! Something went wrong",
|
||||
"general.errorIdentifier": "Your error was logged with id {errorId}",
|
||||
"general.explore": "Explore",
|
||||
|
|
|
@ -53,7 +53,7 @@ const ConferenceSplash = () => (
|
|||
src="/svgs/conference/flags/cl.svg"
|
||||
/>
|
||||
<div className="conf2019-panel-title-text">
|
||||
<h3><FormattedMessage id="conference-2019.chileTitle" /></h3>
|
||||
<h3>Conferencia Scratch al Sur</h3>
|
||||
</div>
|
||||
</FlexRow>
|
||||
<p className="conf2019-panel-desc">
|
||||
|
@ -117,7 +117,7 @@ const ConferenceSplash = () => (
|
|||
/>
|
||||
</td>
|
||||
<td><FormattedMessage id="conference-2019.language" /></td>
|
||||
<td>{'Español (Spanish) - simultaneous translation during plenary sessions'}</td>
|
||||
<td><FormattedMessage id="conference-2019.spanishWithSimultaneous" /></td>
|
||||
</tr>
|
||||
<tr className="conf2019-panel-row">
|
||||
<td className="conf2019-panel-row-icon">
|
||||
|
@ -212,7 +212,7 @@ const ConferenceSplash = () => (
|
|||
/>
|
||||
</td>
|
||||
<td><FormattedMessage id="conference-2019.language" /></td>
|
||||
<td>{'English'}</td>
|
||||
<td><FormattedMessage id="general.english" /></td>
|
||||
</tr>
|
||||
<tr className="conf2019-panel-row">
|
||||
<td className="conf2019-panel-row-icon">
|
||||
|
@ -306,7 +306,7 @@ const ConferenceSplash = () => (
|
|||
/>
|
||||
</td>
|
||||
<td><FormattedMessage id="conference-2019.language" /></td>
|
||||
<td>{'English'}</td>
|
||||
<td><FormattedMessage id="general.english" /></td>
|
||||
</tr>
|
||||
<tr className="conf2019-panel-row">
|
||||
<td className="conf2019-panel-row-icon">
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
"conference-2019.kenyaDesc": "In recognition of Africa's technological contributions to the world and the potential of the youth of Africa, Scratch2019NBO will be held in Nairobi, Kenya. Join educators from around the world to share lessons, empower young people, and celebrate accomplishments in creative coding.",
|
||||
"conference-2019.kenyaAudience": "Educators, students, and enthusiasts",
|
||||
|
||||
"conference-2019.chileTitle": "Conferencia Scratch al Sur",
|
||||
"conference-2019.chileDesc": "Scratch al Sur is a gathering for teachers and policy makers to learn about the importance of introducing programming languages in schools. All lectures and workshops will provide an opportunity to share different experiences, from higher levels to those who are beginning to participate in Scratch's global community.",
|
||||
"conference-2019.chileAudience": "Teachers and policy makers"
|
||||
"conference-2019.chileAudience": "Teachers and policy makers",
|
||||
"conference-2019.spanishWithSimultaneous": "Spanish - simultaneous translation into English during plenary sessions"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue