]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/oauth/authorize.html.erb
Merge remote-tracking branch 'openstreetmap/pull/1208'
[rails.git] / app / views / oauth / authorize.html.erb
index eaf43f9d122073aac87d3271146054c5807935e9..565d13808a6c6fb5c52c2afc920639c784d0cc41 100644 (file)
@@ -1,5 +1,9 @@
-<h1>Authorize access to your account</h1>
-<p><%= raw t('oauth.oauthorize.request_access', :app_name => link_to(@token.client_application.name, @token.client_application.url), :user => link_to(@user.display_name, :controller => :user, :action => :view, :display_name => @user.display_name)) %></p>
+<% content_for :heading do %>
+  <h1><%= t "oauth.oauthorize.title" %></h1>
+<% end %>
+
+<p><%= raw t("oauth.oauthorize.request_access", :app_name => link_to(@token.client_application.name, @token.client_application.url), :user => link_to(@user.display_name, :controller => :user, :action => :view, :display_name => @user.display_name)) %></p>
+
 <%= form_tag authorize_url do %>
   <%= hidden_field_tag "oauth_token", @token.token %>
   <%- if params[:oauth_callback] -%>
@@ -11,5 +15,5 @@
     <li><%= check_box_tag perm.to_s, "yes", @token.read_attribute(perm) %><%= t "oauth.oauthorize.#{perm}" %></li>
   <% end %>
   </ul>
-  <p><%= submit_tag %></p>
+  <p><%= submit_tag t("oauth.oauthorize.grant_access") %></p>
 <% end %>