Skip to content

Commit

Permalink
fixed mistake in translation causing error on invite!
Browse files Browse the repository at this point in the history
Initially the translation had an invalid argument `%{nombre}` causing `missing interpolation argument :nombre in "Estimada/o %{nombre}"`
  • Loading branch information
yshmarov authored and scambra committed Mar 3, 2021
1 parent c7774ab commit b7acb2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/locales/es.yml
Expand Up @@ -18,7 +18,7 @@ es:
mailer:
invitation_instructions:
subject: "Instruciones de la invitación"
hello: "Estimada/o %{nombre}"
hello: "Hola %{email}"
someone_invited_you: "Has sido invitado a %{url}, puedes aceptarlo siguiendo el siguiente enlace"
accept: "Aceptar la invitación"
accept_until: "Esta invitación expirará en %{due_date}."
Expand All @@ -28,4 +28,4 @@ es:
devise:
mailer:
invitation_instructions:
accept_until_format: "%d de %B de %Y, %H:%M"
accept_until_format: "%d de %B de %Y, %H:%M"

0 comments on commit b7acb2f

Please sign in to comment.