Skip to content

Commit

Permalink
fix: added translations
Browse files Browse the repository at this point in the history
  • Loading branch information
borkopetrovicc committed Jun 15, 2023
1 parent 526d133 commit 0493a0d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions public/locales/en/account.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
"google": "Sign in with Google",
"hide_password": "Hide password",
"not_registered": "New to {{siteName}}?",
"ok": "Ok",
"password": "Password",
"sign_in": "Sign in",
"sign_up": "Sign up",
Expand Down
1 change: 1 addition & 0 deletions public/locales/es/account.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
"google": "",
"hide_password": "Ocultar contraseña",
"not_registered": "¿Nuevo/a en {{siteName}}?",
"ok": "Ok",
"password": "Contraseña",
"sign_in": "Iniciar sesión",
"sign_up": "Registrarse",
Expand Down
1 change: 0 additions & 1 deletion public/locales/es/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
"lastname": "Apellido",
"password": "",
"save": "Guardar",
"other_registration_details": "Otros detalles de registro",
"security": "Contraseña",
"terms_and_tracking": "Jurídico y marketing",
"update_consents": "Actualizar consentimientos",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const SimultaneousLoginsNotification = () => {
return (
<React.Fragment>
<h1 className={styles.simultaneousLoginsTitle}> {t('login.simultaneous_logins')}</h1>
<Button type="submit" onClick={loginClickHandler} label="Ok" variant="contained" color="primary" size="large" fullWidth />
<Button type="submit" onClick={loginClickHandler} label={t('login.ok')} variant="contained" color="primary" size="large" fullWidth />
</React.Fragment>
);
};
Expand Down

0 comments on commit 0493a0d

Please sign in to comment.