diff --git a/app/views/shared/_user_form.rhtml b/app/views/shared/_user_form.rhtml index cd357cc7..b265f464 100644 --- a/app/views/shared/_user_form.rhtml +++ b/app/views/shared/_user_form.rhtml @@ -2,34 +2,34 @@
<%= @form.label :nick %> | +<%= @form.label :nick, "Benutzername" %> | <%= @form.text_field :nick %> |
<%= @form.label :first_name %> | +<%= @form.label :first_name, "Vorname" %> | <%= @form.text_field :first_name %> |
<%= @form.label :last_name %> | +<%= @form.label :last_name, "Nachname" %> | <%= @form.text_field :last_name %> |
<%= @form.label :email %> | +<%= @form.label :email, "E-Mail" %> | <%= @form.text_field :email %> |
<%= @form.label :phone %> | +<%= @form.label :phone, "Telefon" %> | <%= @form.text_field :phone %> |
<%= @form.label :password, "Password" %> | +<%= @form.label :password, "Passwort" %> | <%= @form.password_field :password %> |
<%= @form.label :password_confirmation, "Password confirmation" %> | +<%= @form.label :password_confirmation, "Passwort-Wiederholung" %> | <%= @form.password_field :password_confirmation %> |