unscope i18n calls
This commit is contained in:
parent
9e1c6174bf
commit
67219248b0
2 changed files with 6 additions and 6 deletions
|
|
@ -5,13 +5,13 @@
|
|||
= form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f|
|
||||
#user
|
||||
%p.username
|
||||
= f.label :username , t('.username')
|
||||
= f.label :username , t('username')
|
||||
= f.text_field :username
|
||||
%p.user_network
|
||||
="@#{APP_CONFIG[:terse_pod_url]}"
|
||||
|
||||
%p
|
||||
= f.label :password , t('.password')
|
||||
= f.label :password , t('password')
|
||||
= f.password_field :password
|
||||
/%p
|
||||
/- if devise_mapping.rememberable?
|
||||
|
|
|
|||
|
|
@ -5,16 +5,16 @@
|
|||
= image_tag "http://needcoffee.cachefly.net/needcoffee/uploads/2009/02/predator-arnold-schwarzenegger.jpg"
|
||||
= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f|
|
||||
%p
|
||||
= f.label :username , t('.username')
|
||||
= f.label :username , t('username')
|
||||
= f.text_field :username
|
||||
%p
|
||||
= f.label :email , t('.email')
|
||||
= f.label :email , t('email')
|
||||
= f.text_field :email
|
||||
%p
|
||||
= f.label :password , t('.password')
|
||||
= f.label :password , t('password')
|
||||
= f.password_field :password
|
||||
%p
|
||||
= f.label :password_confirmation , t('.password_confirmation')
|
||||
= f.label :password_confirmation , t('password_confirmation')
|
||||
= f.password_field :password_confirmation
|
||||
|
||||
= f.submit t('.sign_up')
|
||||
|
|
|
|||
Loading…
Reference in a new issue