Issue #24584:create supply order with correct order number
[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 available in the future with this client. The private key " +
21       "is only available now as a one-time download.",
22     "_logoURL": "Logo URL",
23     "_maintainOauth2clients": "Maintain OAUTH2 Clients",
24     "_oauth2": "OAUTH2",
25     "_oauth2Client": "OAUTH2 Client",
26     "_oauth2Clients": "OAUTH2 Clients",
27     "_redirects": "Redirects",
28     "_redirectURI": "Redirect URI",
29     "_secret": "Secret",
30     "_serviceAccount": "Service Account",
31     "_singleResourceUrl": "Single Resource URL",
32     "_tokenURI": "Token URI",
33     "_tokenRevocationURI": "Token Revocation URI",
34     "_webServer": "Web Server",
35     "_website": "Website",
36     "_x509PubCert": "X.509 Public Key Certificate"
37   });
38
39   if (typeof exports !== 'undefined') {
40     exports.language = lang;
41   }
42 }());