]> git.openstreetmap.org Git - rails.git/commitdiff
Set title/h1 to something sensible when granting/revoking roles
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Thu, 1 Oct 2009 18:02:08 +0000 (18:02 +0000)
committerÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Thu, 1 Oct 2009 18:02:08 +0000 (18:02 +0000)
app/views/user_roles/grant.html.erb
app/views/user_roles/revoke.html.erb
config/locales/en.yml

index ca45266d67788c46dccd4720a441cfc2da1a6426..f9e54fd1c8cd757478d0fc4e169f413b04cbab1a 100644 (file)
@@ -1,5 +1,7 @@
 <% form_tag request.request_uri do %>
 <%= hidden_field_tag 'nonce', @nonce %>
+<% @title = t('user_role.grant.heading') %>
+<h1><%= t('user_role.grant.heading') %></h1>
 <p><%= t('user_role.grant.are_you_sure', :name => params[:display_name], :role => params[:role]) %></p>
 <p><%= submit_tag t'user_role.grant.confirm' %></p>
 <% end %>
index 17219d9c7dace547e9ef2861df994f3574def6d6..e5aadeae08da62b0fc2c57450b4c50cc23b3eedb 100644 (file)
@@ -1,5 +1,7 @@
 <% form_tag request.request_uri do %>
 <%= hidden_field_tag 'nonce', @nonce %>
+<% @title = t('user_role.revoke.heading') %>
+<h1><%= t('user_role.revoke.heading') %></h1>
 <p><%= t('user_role.revoke.are_you_sure', :name => params[:display_name], :role => params[:role]) %></p>
 <p><%= submit_tag t'user_role.revoke.confirm' %></p>
 <% end %>
index 8d53dcdf361dfa7a9fafd80c0e5c905450fd9098..9105a2d425ac2bd03c521e05e6dc0cc5dd670d79 100644 (file)
@@ -1013,10 +1013,14 @@ en:
       already_has_role: "The user already has role {{role}}."
       doesnt_have_role: "The user does not have role {{role}}."
     grant:
+      title: Confirm role granting
+      heading: Confirm role granting
       are_you_sure: "Are you sure you want to grant the role `{{role}}' to the user `{{name}}'?"
       confirm: "Confirm"
       fail: "Couldn't grant role `{{role}}' to user `{{name}}'. Please check that the user and role are both valid."
     revoke:
+      title: Confirm role revoking
+      heading: Confirm role revoking
       are_you_sure: "Are you sure you want to revoke the role `{{role}}' from the user `{{name}}'?"
       confirm: "Confirm"
       fail: "Couldn't revoke role `{{role}}' from user `{{name}}'. Please check that the user and role are both valid."