diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-08-21 10:04:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-21 10:04:13 +0200 |
commit | 2404c854c47de2a7a5c02bfe55a8b1197dd52266 (patch) | |
tree | 92022b337d8433818f54f31627c27e18c58e7259 | |
parent | 6e3b8db98dd00ca0473e1a7d41174ed3dc9c7830 (diff) | |
parent | c134afee404c3faf3acfbff6ab4056cf328728cf (diff) | |
download | nextcloud-server-2404c854c47de2a7a5c02bfe55a8b1197dd52266.tar.gz nextcloud-server-2404c854c47de2a7a5c02bfe55a8b1197dd52266.zip |
Merge pull request #6194 from nextcloud/proper-l10n-for-app-passwords
Use correct l10n for app password menu
-rw-r--r-- | settings/js/authtoken_view.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/js/authtoken_view.js b/settings/js/authtoken_view.js index a26981e632e..a20434be872 100644 --- a/settings/js/authtoken_view.js +++ b/settings/js/authtoken_view.js @@ -36,10 +36,10 @@ + '<div class="popovermenu bubble open menu configure">' + '{{#if canScope}}' + '<input class="filesystem checkbox" type="checkbox" id="{{id}}_filesystem" {{#if scope.filesystem}}checked{{/if}}/>' - + '<label for="{{id}}_filesystem">' + t('core', 'Allow filesystem access') + '</label><br/>' + + '<label for="{{id}}_filesystem">' + t('settings', 'Allow filesystem access') + '</label><br/>' + '{{/if}}' + '{{#if canDelete}}' - + '<a class="icon icon-delete has-tooltip" title="' + t('core', 'Disconnect') + '">' + t('core', 'Revoke') +'</a>' + + '<a class="icon icon-delete has-tooltip" title="' + t('settings', 'Disconnect') + '">' + t('settings', 'Revoke') +'</a>' + '{{/if}}' + '</div>' + '</td>' |