Skip to content

Commit

Permalink
Fix: "remember me" not translated.
Browse files Browse the repository at this point in the history
The "remember me" string is not translated in the new session form.
  • Loading branch information
mperrando authored Apr 5, 2017
1 parent bf7ccf2 commit 7eb5a14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/devise/sessions/new.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<div class="form-check">
<%= f.label :remember_me, class: 'form-check-label' do %>
<%= f.check_box :remember_me, class: 'form-check-input' %>
<%= t('.remember_me', default: 'Remember me') %>
<%= t('activerecord.attributes.user.remember_me', default: 'Remember me') %>
<% end %>
</div>
<% end %>
Expand Down

0 comments on commit 7eb5a14

Please sign in to comment.