app/views/devise/shared/_links.html.erb in devise-i18n-1.5.1 vs app/views/devise/shared/_links.html.erb in devise-i18n-1.6.0

- old
+ new

@@ -4,11 +4,11 @@ <%- if devise_mapping.registerable? && controller_name != 'registrations' %> <%= link_to t(".sign_up"), new_registration_path(resource_name) %><br /> <% end -%> -<%- if devise_mapping.recoverable? && controller_name != 'passwords' %> +<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %> <%= link_to t(".forgot_your_password"), new_password_path(resource_name) %><br /> <% end -%> <%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> <%= link_to t('.didn_t_receive_confirmation_instructions'), new_confirmation_path(resource_name) %><br /> @@ -18,8 +18,8 @@ <%= link_to t('.didn_t_receive_unlock_instructions'), new_unlock_path(resource_name) %><br /> <% end -%> <%- if devise_mapping.omniauthable? %> <%- resource_class.omniauth_providers.each do |provider| %> - <%= link_to t('.sign_in_with_provider', provider: provider.to_s.titleize), omniauth_authorize_path(resource_name, provider) %><br /> + <%= link_to t('.sign_in_with_provider', provider: OmniAuth::Utils.camelize(provider)), omniauth_authorize_path(resource_name, provider) %><br /> <% end -%> -<% end -%> \ No newline at end of file +<% end -%>