From 546c4718e781f8900ba6498307ccb1e659de5edd Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2016 23:56:03 +0100 Subject: Localizations for most server-side strings --- app/views/oauth/authorizations/new.html.haml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'app/views/oauth/authorizations/new.html.haml') diff --git a/app/views/oauth/authorizations/new.html.haml b/app/views/oauth/authorizations/new.html.haml index ba5d426f5..cd6e93e08 100644 --- a/app/views/oauth/authorizations/new.html.haml +++ b/app/views/oauth/authorizations/new.html.haml @@ -1,11 +1,11 @@ +- content_for :page_title do + = t('doorkeeper.authorizations.new.title') + .oauth-prompt - %h2 - Application - %strong=@pre_auth.client.name - requests access to your account + %h2= t('doorkeeper.authorizations.new.prompt', name: @pre_auth.client.name) %p - It will be able to + = t('doorkeeper.authorizations.new.able_to') = @pre_auth.scopes.map { |scope| t(scope, scope: [:doorkeeper, :scopes]) }.map { |s| "#{s}"}.to_sentence.html_safe = form_tag oauth_authorization_path, method: :post, class: 'simple_form' do -- cgit