Commit 6ba0a96003f6ef961a1d571d066dda648a1e1532
1 parent
32148e8a
Exists in
master
and in
2 other branches
Hotfix for user validation
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
js/main.js
... | ... | @@ -852,7 +852,7 @@ define(['jquery', 'handlebars', 'fastclick', 'proposal_app', 'handlebars_helpers |
852 | 852 | msg = msg.replace('password_confirmation', 'campo "confirmação da senha"'); |
853 | 853 | msg = msg.replace(/password/g, 'campo "senha"'); |
854 | 854 | msg = msg.replace(/login/g, 'campo "nome de usuário"'); |
855 | - msg = msg.replace(/user/g, 'campo "nome de usuário"'); | |
855 | + msg = msg.replace(/user/g, 'campo "nome/e-mail"'); | |
856 | 856 | msg = msg.replace('email', 'campo "e-mail"'); |
857 | 857 | msg = msg.substring(0, msg.length - 5) + '.'; |
858 | 858 | return msg; | ... | ... |