diff options
author | Joas Schilling <coding@schilljs.com> | 2017-11-01 21:30:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-01 21:30:55 +0100 |
commit | c04576ab1b02d8a1fee25de0138196b67232ac5b (patch) | |
tree | 57f97dde838fa7477471972289627546b5c604f0 | |
parent | 52b31a09ef26f1b8ff90ba9059485d7d8804e2a7 (diff) | |
parent | 1ff6f67474950e941f73a44ca53006d746c2312f (diff) | |
download | nextcloud-server-c04576ab1b02d8a1fee25de0138196b67232ac5b.tar.gz nextcloud-server-c04576ab1b02d8a1fee25de0138196b67232ac5b.zip |
Merge pull request #7040 from nextcloud/7039_12
[stable12] Translate Grant Access
-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 c427d657e4a..788e46f3657 100644 --- a/core/templates/loginflow/authpicker.php +++ b/core/templates/loginflow/authpicker.php @@ -36,7 +36,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> @@ -50,7 +50,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> |