You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- This textarea(hidden) is to store the original example value, this will remain unchanged when users switches from one example to another, its is used to populate the editable textarea -->
510
+
<textarea
511
+
class = "textarea is-hidden request-body-param ${reqBody.mimeType.substring(reqBody.mimeType.indexOf('/')+1)}"
<!-- This textarea(hidden) is to store the original example value, this will remain unchanged when users switches from one example to another, its is used to populate the editable textarea -->
508
-
<textarea
509
-
class = "textarea is-hidden request-body-param ${reqBody.mimeType.substring(reqBody.mimeType.indexOf('/')+1)}"
Copy file name to clipboardExpand all lines: src/languages/en.js
+20-2Lines changed: 20 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,16 @@
1
1
exportdefault{
2
2
translation: {
3
3
'menu': {
4
+
'menu': 'API Menu',
4
5
'filter': 'Filter',
5
6
'search': 'Search',
6
7
'overview': 'Overview',
7
8
'api-servers': 'API Servers',
8
9
'authentication': 'Authentication',
9
10
'operations': 'OPERATIONS',
10
11
'components': 'COMPONENTS',
11
-
'schemas': 'Schemas'
12
+
'schemas': 'Schemas',
13
+
'callbacks': 'CALLBACKS'
12
14
},
13
15
'headers': {
14
16
'api-servers': 'API SERVER',
@@ -23,6 +25,7 @@ export default {
23
25
'selected': 'SELECTED'
24
26
},
25
27
'authentication': {
28
+
'auth-header': 'Authorization header',
26
29
'no-api-key-applied': 'No API key applied',
27
30
'http-basic': 'HTTP Basic',
28
31
'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.',
'http-basic-desc': "Envoyez l'en-tête <code>Authorization contenant</code> le type <code>Basic</code> suivi d'un espace et d'une chaîne encodée en base64 de nom <code>d'utilisateur:mot</code> de passe",
@@ -31,10 +34,15 @@ export default {
31
34
'requires': 'Nécessite',
32
35
'http-basic-note': "un nom d'utilisateur/mot de passe encodé en base64",
33
36
'in-auth-header': "dans l'en-tête Authorization",
34
-
'set': 'DÉFINIR'
37
+
'set': 'DÉFINIR',
38
+
'remove': 'RETIRER',
39
+
'clear': 'EFFACER TOUTES LES CLÉS API',
40
+
'update': 'MISE À JOUR',
41
+
'get': 'OBTENIR UN JETON'
35
42
},
36
43
'operations': {
37
44
'request': 'REQUÊTE',
45
+
'callback-request': 'REQUÊTE DE RAPPEL',
38
46
'request-body': 'CORPS DE LA REQUÊTE',
39
47
'model': 'MODÈLE',
40
48
'body': 'CORPS',
@@ -44,13 +52,23 @@ export default {
44
52
'clear-response': 'VIDER LA RÉPONSE',
45
53
'execute': 'EXÉCUTER',
46
54
'response': 'RÉPONSE',
55
+
'callback-response': 'RÉPONSE DE RAPPEL',
47
56
'response-headers': 'EN-TÊTES DE LA RÉPONSE',
48
57
'example': 'EXEMPLE',
58
+
'webhook': 'WEBHOOK',
59
+
'deprecated': 'OBSOLÈTE',
49
60
'response-status': 'Statut de réponse',
50
61
'fetch-fail': "Échec d'obtenir (Consultez l'onglet Réseau de navigateur pour plus d'information.)",
0 commit comments