X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/05e212027339733cf39aa9b7536c3f5f69ba0962..0030c7753740820fab12455dd841cd39c58b6475:/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..d95c68bcb 100644 --- a/app/views/oauth_clients/index.html.erb +++ b/app/views/oauth_clients/index.html.erb @@ -1,9 +1,10 @@ -
The following tokens have been issued to applications in your name
+<%= t'oauth_clients.index.list_tokens' %>
Application | Issued | |
---|---|---|
<%= t'oauth_clients.index.application' %> | +<%= t'oauth_clients.index.issued_at' %> | <%= link_to token.client_application.name, token.client_application.url %> | @@ -11,29 +12,22 @@<% form_tag :controller => 'oauth', :action => 'revoke' do %> <%= hidden_field_tag 'token', token.token %> - <%= submit_tag "Revoke!" %> + <%= submit_tag t('oauth_clients.index.revoke') %> <% end %> | <% end %> <% end %>
- 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_clients.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_clients.index.registered_apps' %>
+<% @client_applications.each do |client|%> + <% div_for client do %> + <%= link_to client.name, :action => :show, :id => client.id %> + <% end %> +<% end %> <% end %> -