]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/oauth/authorize.html.erb
Use lazy translation lookups for the oauth controller.
[rails.git] / app / views / oauth / authorize.html.erb
index 987997de2258598cadd5314c822a1b61881d132f..3108c551af65054394244d0cb6d393d7917aea4d 100644 (file)
@@ -1,14 +1,19 @@
-<h1>Authorize access to your account</h1>
-<p>Would you like to authorize <%= link_to @token.client_application.name,@token.client_application.url %> (<%= link_to @token.client_application.url,@token.client_application.url %>) to access your account?</p>
-<% form_tag authorize_url do %>
+<% content_for :heading do %>
+  <h1><%= t ".title" %></h1>
+<% end %>
+
+<p><%= raw t(".request_access", :app_name => link_to(@token.client_application.name, @token.client_application.url), :user => link_to(current_user.display_name, :controller => :user, :action => :view, :display_name => current_user.display_name)) %></p>
+
+<%= form_tag authorize_url do %>
   <%= hidden_field_tag "oauth_token", @token.token %>
   <%- if params[:oauth_callback] -%>
-  <%= hidden_field_tag "oauth_callback", params[:oauth_callback] %>
-<%- end -%>
-<p>
-       <%= check_box_tag 'authorize' %> authorize access
-</p>
-<p>
-       <%= submit_tag %>
-</p>
-<% end %>
\ No newline at end of file
+    <%= hidden_field_tag "oauth_callback", params[:oauth_callback] %>
+  <%- end -%>
+  <p><%= t '.allow_to' %></p>
+  <ul>
+  <% @token.client_application.permissions.each do |perm| %>
+    <li><%= check_box_tag perm.to_s, "yes", @token.read_attribute(perm) %><%= t ".#{perm}" %></li>
+  <% end %>
+  </ul>
+  <p><%= submit_tag t(".grant_access") %></p>
+<% end %>