X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e657cff464b6db8384b56236ad9491223a22b1e2..908a6ef409518d86bfd2cdf0d2a82a6c312821c8:/app/views/oauth_clients/index.html.erb diff --git a/app/views/oauth_clients/index.html.erb b/app/views/oauth_clients/index.html.erb index 8f9e0a0b1..9f11cddef 100644 --- a/app/views/oauth_clients/index.html.erb +++ b/app/views/oauth_clients/index.html.erb @@ -1,9 +1,10 @@ -
<%= flash[:notice] %>
-

OAuth Client Applications

+

<%= t'oauth.client_application.index.title' %>

<% unless @tokens.empty? %> -

The following tokens have been issued to applications in your name

+

<%= t'oauth.client_application.index.my_tokens' %>

+

<%= t'oauth.client_application.index.list_tokens' %>

- + + <% @tokens.each do |token|%> <% content_tag_for :tr, token do %> @@ -11,29 +12,22 @@ <% end %> <% end %>
ApplicationIssued 
<%= t'oauth.client_application.index.application' %><%= t'oauth.client_application.index.issued_at' %> 
<%= link_to token.client_application.name, token.client_application.url %> <% form_tag :controller => 'oauth', :action => 'revoke' do %> <%= hidden_field_tag 'token', token.token %> - <%= submit_tag "Revoke!" %> + <%= submit_tag t('oauth.client_application.index.revoke') %> <% end %>
<% end %> -

Application Developers

+

<%= t'oauth.client_application.index.my_apps' %>

<% if @client_applications.empty? %> -

- Do you have an application you would like to register for use with us using the OAuth standard? -

-

- You must register your web application before it can make OAuth requests to this service -

+

<%= t('oauth.client_application.index.no_apps', :oauth => "OAuth") %>

<% else %> -

- You have the following client applications registered: -

- <% @client_applications.each do |client|%> - <% div_for client do %> - <%= link_to client.name, :action => :show, :id => client.id %> - <% end %> - <% end %> +

<%= t'oauth.client_application.index.registered_apps' %>

+<% @client_applications.each do |client|%> + <% div_for client do %> + <%= link_to client.name, :action => :show, :id => client.id %> + <% end %> +<% end %> <% end %> -

<%= link_to "Register your application", :action => :new %>

+

<%= link_to t('oauth.client_application.index.register_new'), :action => :new %>