Skip to content

Commit

Permalink
Localise ProjectHomePage using counterpart
Browse files Browse the repository at this point in the history
  • Loading branch information
eatyourgreens committed Sep 7, 2017
1 parent 850f005 commit 910b3a8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/pages/project/home/project-home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ const ProjectHomePage = (props) => {
<FinishedBanner project={props.project} />
</div>)}

<div className="project-home-page__description">{translations.strings.project.description || props.project.description}</div>
<div className="project-home-page__description">
{translations.strings.project.description || props.project.description}
</div>

<ProjectHomeWorkflowButtons
activeWorkflows={props.activeWorkflows}
Expand Down Expand Up @@ -71,7 +73,7 @@ const ProjectHomePage = (props) => {

<div>
<img role="presentation" src={avatarSrc} />
<span>&quot;{props.project.researcher_quote}&quot;</span>
<span>&quot;{translations.strings.project.researcher_quote || props.project.researcher_quote}&quot;</span>
</div>
</div>)}

Expand Down

0 comments on commit 910b3a8

Please sign in to comment.