Merge pull request #1609 from xtuple/4_5_x
[xtuple] / enyo-client / extensions / source / oauth2 / client / en / strings.js
1 /*jshint node:true, indent:2, curly:false, eqeqeq:true, immed:true,
2 latedef:true, newcap:true, noarg:true, regexp:true, undef:true,
3 strict:true, trailing:true, white:true */
4 /*global XT:true */
5
6 (function () {
7   "use strict";
8
9   var lang = XT.stringsFor("en_US", {
10     "_authURI": "Auth URI",
11     "_clientName": "Client Name",
12     "_clientEmail": "Client Email",
13     "_clientType": "Client Type",
14     "_delegatedAccess": "Delegated Access",
15     "_details": "Details",
16     "_id": "ID",
17     "_issued": "Issued",
18     "_fullListUrl": "Full List URL",
19     "_generatingPrivateKey": "A new keypair will be generated for this OAUTH2 client. " +
20       "The public key will be saved in the database with this client. The private key " +
21       "is available as a one-time download. The password for the key store file will be " +
22       "\"notasecret\". Click \"ok\" to downloading the private key.",
23     "_logoURL": "Logo URL",
24     "_maintainOauth2clients": "Maintain OAUTH2 Clients",
25     "_oauth2": "OAUTH2",
26     "_oauth2Client": "OAUTH2 Client",
27     "_oauth2Clients": "OAUTH2 Clients",
28     "_redirects": "Redirects",
29     "_redirectURI": "Redirect URI",
30     "_secret": "Secret",
31     "_serviceAccount": "Service Account",
32     "_singleResourceUrl": "Single Resource URL",
33     "_tokenURI": "Token URI",
34     "_tokenRevocationURI": "Token Revocation URI",
35     "_webServer": "Web Server",
36     "_website": "Website",
37     "_x509PubCert": "X.509 Public Key Certificate"
38   });
39
40   if (typeof exports !== 'undefined') {
41     exports.language = lang;
42   }
43 }());