add en translations

This commit is contained in:
Mario
2020-12-21 10:12:00 +01:00
parent 889fba21cc
commit bf82a396fc
5 changed files with 61 additions and 10 deletions
+20
View File
@@ -64,6 +64,26 @@ class Faq extends Component {
</ExpansionPanel>
)
})}
{
this.props.button ?
<Button
style={{ marginTop: '20px' }}
variant="contained"
color="primary"
onClick={() => { this.props.history.push(this.props.button.link) }}
>
{this.props.button.title}
</Button>
:
<Button
style={{ marginTop: '20px' }}
variant="contained"
color="primary"
onClick={() => { this.props.history.push('/') }}
>
{Blockly.Msg.button_back}
</Button>
}
</div>
</Container>
</div >