]> git.openstreetmap.org Git - rails.git/commitdiff
Show the name of the logged in user during OAuth authorization
authorTom Hughes <tom@compton.nu>
Fri, 1 Jul 2011 19:38:41 +0000 (20:38 +0100)
committerTom Hughes <tom@compton.nu>
Fri, 1 Jul 2011 19:38:41 +0000 (20:38 +0100)
app/views/oauth/oauthorize.html.erb
config/locales/en.yml

index 844a86d5228af1bfb37f9b9398cb9d1d394955ef..28178a85c945560a0d840a57b6b384d4e484c8c4 100644 (file)
@@ -1,5 +1,5 @@
 <h1>Authorize access to your account</h1>
-<p><%= t('oauth.oauthorize.request_access', :app_name => link_to(@token.client_application.name,@token.client_application.url)) %></p>
+<p><%= 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] -%>
index 31462fe8f10f8c5bdba8e99b54b06e551d3051e9..76d481f532037be23302a891cd38c36ae4f15a52 100644 (file)
@@ -1451,7 +1451,7 @@ en:
       need_to_see_terms: "Your access to the API is temporarily suspended. Please log-in to the web interface to view the Contributor Terms. You do not need to agree, but you must view them."
   oauth:
     oauthorize:
-      request_access: "The application %{app_name} is requesting access to your account. Please check whether you would like the application to have the following capabilities. You may choose as many or as few as you like."
+      request_access: "The application %{app_name} is requesting access to your account, %{user}. Please check whether you would like the application to have the following capabilities. You may choose as many or as few as you like."
       allow_to: "Allow the client application to:"
       allow_read_prefs:  "read your user preferences."
       allow_write_prefs: "modify your user preferences."