|
@@ -74,7 +74,7 @@ class Login extends React.Component {
|
74
|
74
|
<div className='col-12 col-sm-11 col-md-8 col-lg-6 col-xl-4'>
|
75
|
75
|
|
76
|
76
|
<Card customClass='loginpage__connection'>
|
77
|
|
- <CardHeader customClass='connection__header text-center'>{'Connexion'}</CardHeader>
|
|
77
|
+ <CardHeader customClass='connection__header text-center'>{this.props.t('Connection')}</CardHeader>
|
78
|
78
|
|
79
|
79
|
<CardBody formClass='connection__form'>
|
80
|
80
|
<div>
|
|
@@ -118,7 +118,7 @@ class Login extends React.Component {
|
118
|
118
|
<div className='col-12 col-sm-6 col-md-6 col-lg-6 col-xl-6 text-sm-right'>
|
119
|
119
|
<LoginBtnForgotPw
|
120
|
120
|
customClass='connection__form__pwforgot'
|
121
|
|
- label='Mot de passe oublié ?'
|
|
121
|
+ label={this.props.t('Forgotten password ?')}
|
122
|
122
|
/>
|
123
|
123
|
</div>
|
124
|
124
|
</div>
|
|
@@ -127,7 +127,7 @@ class Login extends React.Component {
|
127
|
127
|
htmlType='button'
|
128
|
128
|
bootstrapType='primary'
|
129
|
129
|
customClass='connection__form__btnsubmit ml-auto'
|
130
|
|
- label='Connexion'
|
|
130
|
+ label={this.props.t('Connection')}
|
131
|
131
|
onClick={this.handleClickSubmit}
|
132
|
132
|
/>
|
133
|
133
|
</div>
|