Skip to content
Snippets Groups Projects
Select Git revision
  • e1efe21897b39de3e7ec37e2b17917ab8ca03dd5
  • master default protected
  • rednatco-v2
  • base-pairs-ladder
  • rednatco
  • test
  • ntc-tube-uniform-color
  • ntc-tube-missing-atoms
  • restore-vertex-array-per-program
  • watlas2
  • dnatco_new
  • cleanup-old-nodejs
  • webmmb
  • fix_auth_seq_id
  • update_deps
  • ext_dev
  • ntc_balls
  • nci-2
  • plugin
  • bugfix-0.4.5
  • nci
  • v0.5.0-dev.1
  • v0.4.5
  • v0.4.4
  • v0.4.3
  • v0.4.2
  • v0.4.1
  • v0.4.0
  • v0.3.12
  • v0.3.11
  • v0.3.10
  • v0.3.9
  • v0.3.8
  • v0.3.7
  • v0.3.6
  • v0.3.5
  • v0.3.4
  • v0.3.3
  • v0.3.2
  • v0.3.1
  • v0.3.0
41 results

parse-unit.ts

Blame
  • settings.php 1.19 KiB
    <?php
    /**
     * english language file for oauthgeneric plugin
     *
     * @author Andreas Gohr <dokuwiki@cosmocode.de>
     */
    
    $lang['key'] = 'The Application UID';
    $lang['secret'] = 'The Application Secret';
    $lang['authurl'] = 'URL to the authentication endpoint';
    $lang['tokenurl'] = 'URL to the token endpoint';
    $lang['userurl'] = 'URL to the user info API endpoint (must return JSON about the authenticated user)';
    $lang['authmethod'] = 'Authorization method used when talking to the user API';
    $lang['scopes'] = 'Scopes to request (comma separated)';
    
    $lang['json-user'] = 'Access to the username in dot notation';
    $lang['json-name'] = 'Access to the username in dot notation';
    $lang['json-mail'] = 'Access to the username in dot notation';
    $lang['json-grps'] = 'Access to the username in dot notation';
    
    $lang['label'] = 'Label to display on the login button';
    $lang['color'] = 'Color to use with the login button';
    
    $lang['authmethod_o_0'] = 'OAuth Header';
    $lang['authmethod_o_1'] = 'Bearer Header';
    $lang['authmethod_o_6'] = 'Token Header';
    $lang['authmethod_o_2'] = 'Query String v1';
    $lang['authmethod_o_3'] = 'Query String v2';
    $lang['authmethod_o_4'] = 'Query String v3';
    $lang['authmethod_o_5'] = 'Query String v4';