diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-11-01 15:50:34 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-11-01 15:50:34 +0100 |
commit | f2d4c64c9a60211f9d932d3b3f6aedda5da37853 (patch) | |
tree | 08a8bbccd71e1f3ea85e9aa7d3f96d256b7b1a2a /core/templates | |
parent | 52b679a2d6f6b273f46334b15534ab312f974a1a (diff) | |
download | nextcloud-server-f2d4c64c9a60211f9d932d3b3f6aedda5da37853.tar.gz nextcloud-server-f2d4c64c9a60211f9d932d3b3f6aedda5da37853.zip |
Translate Grant Access
Fixes #7038
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/loginflow/authpicker.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/loginflow/authpicker.php b/core/templates/loginflow/authpicker.php index 810c32b4f09..1858f8bcb62 100644 --- a/core/templates/loginflow/authpicker.php +++ b/core/templates/loginflow/authpicker.php @@ -40,7 +40,7 @@ $urlGenerator = $_['urlGenerator']; <p id="redirect-link"> <a href="<?php p($urlGenerator->linkToRouteAbsolute('core.ClientFlowLogin.redirectPage', ['stateToken' => $_['stateToken'], 'clientIdentifier' => $_['clientIdentifier'], 'oauthState' => $_['oauthState']])) ?>"> - <input type="submit" class="login primary icon-confirm-white" value="<?php p('Grant access') ?>"> + <input type="submit" class="login primary icon-confirm-white" value="<?php p($l->t('Grant access')) ?>"> </a> </p> @@ -54,7 +54,7 @@ $urlGenerator = $_['urlGenerator']; <label for="password" class="infield"><?php p($l->t('Password')) ?></label> </p> <input type="hidden" id="serverHost" value="<?php p($_['serverHost']) ?>" /> - <input id="submit-app-token-login" type="submit" class="login primary icon-confirm-white" value="<?php p('Grant access') ?>"> + <input id="submit-app-token-login" type="submit" class="login primary icon-confirm-white" value="<?php p($l->t('Grant access')) ?>"> </fieldset> </div> |