-
Notifications
You must be signed in to change notification settings - Fork 42
/
en.js
60 lines (60 loc) · 1.81 KB
/
en.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
export default {
translation: {
'menu': {
'filter': 'Filter',
'search': 'Search',
'overview': 'Overview',
'api-servers': 'API Servers',
'authentication': 'Authentication',
'operations': 'OPERATIONS',
'components': 'COMPONENTS',
'schemas': 'Schemas'
},
'headers': {
'api-servers': 'API SERVER',
'authentication': 'AUTHENTICATION'
},
'overview': {
'email': 'Email',
'terms-of-service': 'Terms of Service'
},
'api-servers': {
'server-variables': 'SERVER VARIABLES',
'selected': 'SELECTED'
},
'authentication': {
'no-api-key-applied': 'No API key applied',
'http-basic': 'HTTP Basic',
'http-basic-desc': 'Sends the <code>Authorization header</code> containing the token type <code>Basic</code> followed by the base64 encoded <code>username:password</code> string.',
'username': 'username',
'password': 'password',
'requires': 'Requires',
'http-basic-note': 'Base 64 encoded username:password',
'in-auth-header': 'in Authorization header',
'set': 'SET'
},
'operations': {
'request': 'REQUEST',
'request-body': 'REQUEST BODY',
'model': 'MODEL',
'body': 'BODY',
'form': 'FORM',
'request-headers': 'REQUEST HEADERS',
'clear': 'CLEAR',
'clear-response': 'CLEAR RESPONSE',
'execute': 'EXECUTE',
'response': 'RESPONSE',
'response-headers': 'RESPONSE HEADERS',
'example': 'EXAMPLE',
'response-status': 'Response Status',
'fetch-fail': 'Failed to fetch (Check the browser network tab for more information.)',
'copy': 'Copy',
'copied': 'Copied'
},
'schemas': {
'collapse-desc': 'Collapse',
'expand-desc': 'Expand',
'schema-missing': 'Schema not found'
}
}
};