Commit 787e5e94acf5e20280416c9fda105ef5b77576b3

Authored by Pat Thoyts
1 parent 9267cb04

Fix english on the edit user form.

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
app/views/admin/users/_form.html.haml
... ... @@ -50,7 +50,7 @@
50 50  
51 51 .alert
52 52 .clearfix
53   - %p Give user ability to manage application.
  53 + %p Make the user a GitLab administrator.
54 54 = f.label :admin, :class => "checkbox" do
55 55 = f.check_box :admin
56 56 %span Administrator
... ... @@ -59,11 +59,11 @@
59 59 - if @admin_user.blocked
60 60 %span
61 61 = link_to 'Unblock', unblock_admin_user_path(@admin_user), :method => :put, :class => "btn small"
62   - This user is blocked and is not able to login GitLab
  62 + This user is blocked and is not able to login to GitLab
63 63 - else
64 64 %span
65 65 = link_to 'Block', block_admin_user_path(@admin_user), :confirm => 'USER WILL BE BLOCKED! Are you sure?', :method => :put, :class => "btn small danger"
66   - Blocked user will removed from all projects &amp; will not be able to login to GitLab.
  66 + Blocked users will be removed from all projects &amp; will not be able to login to GitLab.
67 67 .actions
68 68 = f.submit 'Save', :class => "btn primary"
69 69 - if @admin_user.new_record?
... ...