@guayaba/workflow-piece-google-drive 0.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +3 -0
- package/.eslintrc.json +18 -0
- package/README.md +5 -0
- package/assets/logo.png +0 -0
- package/package.json +28 -0
- package/src/i18n/ca.json +125 -0
- package/src/i18n/de.json +136 -0
- package/src/i18n/es.json +136 -0
- package/src/i18n/fr.json +136 -0
- package/src/i18n/hi.json +125 -0
- package/src/i18n/id.json +125 -0
- package/src/i18n/ja.json +136 -0
- package/src/i18n/nl.json +136 -0
- package/src/i18n/pt.json +136 -0
- package/src/i18n/ru.json +127 -0
- package/src/i18n/translation.json +137 -0
- package/src/i18n/vi.json +127 -0
- package/src/i18n/zh.json +136 -0
- package/src/index.ts +74 -0
- package/src/lib/action/add-permission.action.ts +78 -0
- package/src/lib/action/create-new-folder.ts +38 -0
- package/src/lib/action/create-new-text-file.ts +89 -0
- package/src/lib/action/delete-file.ts +31 -0
- package/src/lib/action/delete-permission.action.ts +80 -0
- package/src/lib/action/duplicate-file.action.ts +78 -0
- package/src/lib/action/get-file-by-id.ts +34 -0
- package/src/lib/action/list-files.action.ts +209 -0
- package/src/lib/action/move-file.ts +44 -0
- package/src/lib/action/read-file.ts +24 -0
- package/src/lib/action/save-file-as-pdf.action.ts +72 -0
- package/src/lib/action/search-folder-or-file.action.ts +108 -0
- package/src/lib/action/send-to-trash.ts +34 -0
- package/src/lib/action/set-public-access.ts +64 -0
- package/src/lib/action/upload-file.ts +72 -0
- package/src/lib/auth.ts +80 -0
- package/src/lib/common/get-file-content.ts +109 -0
- package/src/lib/common/index.ts +179 -0
- package/src/lib/triggers/new-file.ts +115 -0
- package/src/lib/triggers/new-folder.ts +74 -0
- package/tsconfig.json +16 -0
- package/tsconfig.lib.json +15 -0
package/.babelrc
ADDED
package/.eslintrc.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": ["../../../../.eslintrc.json"],
|
|
3
|
+
"ignorePatterns": ["!**/*"],
|
|
4
|
+
"overrides": [
|
|
5
|
+
{
|
|
6
|
+
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
7
|
+
"rules": {}
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"files": ["*.ts", "*.tsx"],
|
|
11
|
+
"rules": {}
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"files": ["*.js", "*.jsx"],
|
|
15
|
+
"rules": {}
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
package/README.md
ADDED
package/assets/logo.png
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@guayaba/workflow-piece-google-drive",
|
|
3
|
+
"version": "0.7.5",
|
|
4
|
+
"main": "./dist/src/index.js",
|
|
5
|
+
"types": "./dist/src/index.d.ts",
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"@guayaba/workflows-common": "workspace:*",
|
|
8
|
+
"@guayaba/workflows-framework": "workspace:*",
|
|
9
|
+
"@guayaba/workflows-shared": "workspace:*",
|
|
10
|
+
"dayjs": "1.11.9",
|
|
11
|
+
"form-data": "4.0.4",
|
|
12
|
+
"googleapis": "129.0.0",
|
|
13
|
+
"googleapis-common": "7.2.0",
|
|
14
|
+
"mime-types": "2.1.35",
|
|
15
|
+
"tslib": "2.6.2"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsc -p tsconfig.lib.json && cp package.json dist/",
|
|
19
|
+
"lint": "eslint 'src/**/*.ts'"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@types/mime-types": "2.1.1"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"registry": "https://registry.npmjs.org",
|
|
26
|
+
"access": "public"
|
|
27
|
+
}
|
|
28
|
+
}
|
package/src/i18n/ca.json
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Google Drive": "Google Drive",
|
|
3
|
+
"Cloud storage and file backup": "Cloud storage and file backup",
|
|
4
|
+
"Create new folder": "Create new folder",
|
|
5
|
+
"Create new file": "Create new file",
|
|
6
|
+
"Upload file": "Upload file",
|
|
7
|
+
"Read file": "Read file",
|
|
8
|
+
"Get File": "Get File",
|
|
9
|
+
"List files": "List files",
|
|
10
|
+
"Search": "Search",
|
|
11
|
+
"Duplicate File": "Duplicate File",
|
|
12
|
+
"Save Document as PDF": "Save Document as PDF",
|
|
13
|
+
"Update permissions": "Update permissions",
|
|
14
|
+
"Delete permissions": "Delete permissions",
|
|
15
|
+
"Set public access": "Set public access",
|
|
16
|
+
"Move File": "Move File",
|
|
17
|
+
"Delete file": "Delete file",
|
|
18
|
+
"Trash file": "Trash file",
|
|
19
|
+
"Custom API Call": "Custom API Call",
|
|
20
|
+
"Create a new empty folder in your Google Drive": "Create a new empty folder in your Google Drive",
|
|
21
|
+
"Create a new text file in your Google Drive from text": "Create a new text file in your Google Drive from text",
|
|
22
|
+
"Upload a file in your Google Drive": "Upload a file in your Google Drive",
|
|
23
|
+
"Read a selected file from google drive file": "Read a selected file from google drive file",
|
|
24
|
+
"Get a file folder for files/sub-folders": "Get a file folder for files/sub-folders",
|
|
25
|
+
"List files from a Google Drive folder": "List files from a Google Drive folder",
|
|
26
|
+
"Search a Google Drive folder for files/sub-folders": "Search a Google Drive folder for files/sub-folders",
|
|
27
|
+
"Duplicate a file from Google Drive. Returns the new file ID.": "Duplicate a file from Google Drive. Returns the new file ID.",
|
|
28
|
+
"Save a document as PDF in a Google Drive folder": "Save a document as PDF in a Google Drive folder",
|
|
29
|
+
"Update permissions for a file or folder": "Update permissions for a file or folder",
|
|
30
|
+
"Removes a role from an user for a file or folder": "Removes a role from an user for a file or folder",
|
|
31
|
+
"Set public access for a file or folder": "Set public access for a file or folder",
|
|
32
|
+
"Moves a file from one folder to another.": "Moves a file from one folder to another.",
|
|
33
|
+
"Delete permanently a file from your Google Drive": "Delete permanently a file from your Google Drive",
|
|
34
|
+
"Move a file to the trash in your Google Drive": "Move a file to the trash in your Google Drive",
|
|
35
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
36
|
+
"Folder name": "Folder name",
|
|
37
|
+
"Parent Folder": "Parent Folder",
|
|
38
|
+
"Include Team Drives": "Include Team Drives",
|
|
39
|
+
"File name": "File name",
|
|
40
|
+
"Text": "Text",
|
|
41
|
+
"Content type": "Content type",
|
|
42
|
+
"File": "File",
|
|
43
|
+
"File ID": "File ID",
|
|
44
|
+
"Destination File name": "Destination File name",
|
|
45
|
+
"File / Folder Id": "File / Folder Id",
|
|
46
|
+
"Folder ID": "Folder ID",
|
|
47
|
+
"Include Trashed": "Include Trashed",
|
|
48
|
+
"Download Files": "Download Files",
|
|
49
|
+
"Query Term": "Query Term",
|
|
50
|
+
"Operator": "Operator",
|
|
51
|
+
"Value": "Value",
|
|
52
|
+
"File Type": "File Type",
|
|
53
|
+
"Name": "Name",
|
|
54
|
+
"Duplicate as": "Duplicate as",
|
|
55
|
+
"Document ID": "Document ID",
|
|
56
|
+
"File or Folder ID": "File or Folder ID",
|
|
57
|
+
"User email": "User email",
|
|
58
|
+
"Role": "Role",
|
|
59
|
+
"Send invitation email": "Send invitation email",
|
|
60
|
+
"Method": "Method",
|
|
61
|
+
"Headers": "Headers",
|
|
62
|
+
"Query Parameters": "Query Parameters",
|
|
63
|
+
"Body": "Body",
|
|
64
|
+
"No Error on Failure": "No Error on Failure",
|
|
65
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
66
|
+
"The name of the new folder": "The name of the new folder",
|
|
67
|
+
"Determines if folders from Team Drives should be included in the results.": "Determines if folders from Team Drives should be included in the results.",
|
|
68
|
+
"The name of the new text file": "The name of the new text file",
|
|
69
|
+
"The text content to add to file": "The text content to add to file",
|
|
70
|
+
"Select file type": "Select file type",
|
|
71
|
+
"The name of the file": "The name of the file",
|
|
72
|
+
"The file URL or base64 to upload": "The file URL or base64 to upload",
|
|
73
|
+
"File ID coming from | New File -> id |": "File ID coming from | New File -> id |",
|
|
74
|
+
"The Id of the file/folder to search for.": "The Id of the file/folder to search for.",
|
|
75
|
+
"Folder ID coming from | New Folder -> id | (or any other source)": "Folder ID coming from | New Folder -> id | (or any other source)",
|
|
76
|
+
"Include new files that have been trashed.": "Include new files that have been trashed.",
|
|
77
|
+
"Download all file contents in a list": "Download all file contents in a list",
|
|
78
|
+
"The Query term or field of file/folder to search upon.": "The Query term or field of file/folder to search upon.",
|
|
79
|
+
"The operator to create criteria.": "The operator to create criteria.",
|
|
80
|
+
"Value of the field of file/folder to search for.": "Value of the field of file/folder to search for.",
|
|
81
|
+
"(Optional) Choose between files and folders.": "(Optional) Choose between files and folders.",
|
|
82
|
+
"The ID of the file to duplicate": "The ID of the file to duplicate",
|
|
83
|
+
"The name of the new file": "The name of the new file",
|
|
84
|
+
"The ID of the folder where the file will be duplicated": "The ID of the folder where the file will be duplicated",
|
|
85
|
+
"If left unselected the file will be duplicated as it is": "If left unselected the file will be duplicated as it is",
|
|
86
|
+
"The ID of the document to export": "The ID of the document to export",
|
|
87
|
+
"The ID of the folder where the file will be exported": "The ID of the folder where the file will be exported",
|
|
88
|
+
"The name of the new file (do not include the extension)": "The name of the new file (do not include the extension)",
|
|
89
|
+
"The ID of the file or folder to update permissions for": "The ID of the file or folder to update permissions for",
|
|
90
|
+
"The email address of the user to update permissions for": "The email address of the user to update permissions for",
|
|
91
|
+
"The role to grant to user. See more at: https://developers.google.com/drive/api/guides/ref-roles": "The role to grant to user. See more at: https://developers.google.com/drive/api/guides/ref-roles",
|
|
92
|
+
"Send an email to the user to notify them of the new permissions": "Send an email to the user to notify them of the new permissions",
|
|
93
|
+
"The role to remove from user.": "The role to remove from user.",
|
|
94
|
+
"You can use **Search Folder/File** action to retrieve ID.": "You can use **Search Folder/File** action to retrieve ID.",
|
|
95
|
+
"The ID of the file to delete": "The ID of the file to delete",
|
|
96
|
+
"The ID of the file to trash": "The ID of the file to trash",
|
|
97
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
98
|
+
"CSV": "CSV",
|
|
99
|
+
"XML": "XML",
|
|
100
|
+
"Full text search": "Full text search",
|
|
101
|
+
"Contains": "Contains",
|
|
102
|
+
"Equals": "Equals",
|
|
103
|
+
"All": "All",
|
|
104
|
+
"Files": "Files",
|
|
105
|
+
"Folders": "Folders",
|
|
106
|
+
"Google Sheets": "Google Sheets",
|
|
107
|
+
"Google Docs": "Google Docs",
|
|
108
|
+
"Organizer": "Organizer",
|
|
109
|
+
"File Organizer": "File Organizer",
|
|
110
|
+
"Writer": "Writer",
|
|
111
|
+
"Commenter": "Commenter",
|
|
112
|
+
"Reader": "Reader",
|
|
113
|
+
"GET": "GET",
|
|
114
|
+
"POST": "POST",
|
|
115
|
+
"PATCH": "PATCH",
|
|
116
|
+
"PUT": "PUT",
|
|
117
|
+
"DELETE": "DELETE",
|
|
118
|
+
"HEAD": "HEAD",
|
|
119
|
+
"New File": "New File",
|
|
120
|
+
"New Folder": "New Folder",
|
|
121
|
+
"Trigger when a new file is uploaded.": "Trigger when a new file is uploaded.",
|
|
122
|
+
"Trigger when a new folder is created or uploaded.": "Trigger when a new folder is created or uploaded.",
|
|
123
|
+
"Include File Content": "Include File Content",
|
|
124
|
+
"Include the file content in the output. This will increase the time taken to fetch the files and might cause issues with large files.": "Include the file content in the output. This will increase the time taken to fetch the files and might cause issues with large files."
|
|
125
|
+
}
|
package/src/i18n/de.json
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cloud storage and file backup": "Cloudspeicher und Dateisicherung",
|
|
3
|
+
"Create new folder": "Neuen Ordner erstellen",
|
|
4
|
+
"Create new file": "Neue Datei erstellen",
|
|
5
|
+
"Upload file": "Datei hochladen",
|
|
6
|
+
"Read File Content": "Dateiinhalt lesen",
|
|
7
|
+
"Get File Information": "Dateiinformationen abrufen",
|
|
8
|
+
"List files": "Dateien auflisten",
|
|
9
|
+
"Search": "Suche",
|
|
10
|
+
"Duplicate File": "Datei duplizieren",
|
|
11
|
+
"Save Document as PDF": "Dokument als PDF speichern",
|
|
12
|
+
"Update permissions": "Update-Berechtigungen",
|
|
13
|
+
"Delete permissions": "Berechtigungen löschen",
|
|
14
|
+
"Set public access": "Öffentlichen Zugang festlegen",
|
|
15
|
+
"Move File": "Datei verschieben",
|
|
16
|
+
"Delete file": "Datei löschen",
|
|
17
|
+
"Trash file": "Papierkorb",
|
|
18
|
+
"Custom API Call": "Eigener API-Aufruf",
|
|
19
|
+
"Create a new empty folder in your Google Drive": "Erstellen Sie einen neuen leeren Ordner in Ihrem Google Drive",
|
|
20
|
+
"Create a new text file in your Google Drive from text": "Erstellen Sie eine neue Textdatei in Ihrem Google Drive aus Text",
|
|
21
|
+
"Upload a file in your Google Drive": "Laden Sie eine Datei in Ihrem Google Drive hoch",
|
|
22
|
+
"Read a selected file from google drive file": "Ausgewählte Datei aus Google Drive Datei lesen",
|
|
23
|
+
"Get a file folder for files/sub-folders": "Datei Ordner für Dateien/Unterordner herunterladen",
|
|
24
|
+
"List files from a Google Drive folder": "Dateien aus einem Google Drive-Ordner auflisten",
|
|
25
|
+
"Search a Google Drive folder for files/sub-folders": "Suche in einem Google Drive Ordner nach Dateien/Unterordner",
|
|
26
|
+
"Duplicate a file from Google Drive. Returns the new file ID.": "Dupliziere eine Datei von Google Drive. Gibt die neue Datei-ID zurück.",
|
|
27
|
+
"Save a document as PDF in a Google Drive folder": "Speichern Sie ein Dokument als PDF in einem Google Drive Ordner",
|
|
28
|
+
"Update permissions for a file or folder": "Update-Berechtigungen für eine Datei oder einen Ordner",
|
|
29
|
+
"Removes a role from an user for a file or folder": "Entfernt eine Rolle von einem Benutzer für eine Datei oder einen Ordner",
|
|
30
|
+
"Set public access for a file or folder": "Öffentlichen Zugriff für eine Datei oder einen Ordner festlegen",
|
|
31
|
+
"Moves a file from one folder to another.": "Verschiebt eine Datei von einem Ordner in einen anderen.",
|
|
32
|
+
"Delete permanently a file from your Google Drive": "Löschen Sie dauerhaft eine Datei aus Ihrem Google Drive",
|
|
33
|
+
"Move a file to the trash in your Google Drive": "Datei in den Papierkorb in Ihrem Google Drive verschieben",
|
|
34
|
+
"Make a custom API call to a specific endpoint": "Einen benutzerdefinierten API-Aufruf an einen bestimmten Endpunkt machen",
|
|
35
|
+
"Folder name": "Ordnername",
|
|
36
|
+
"Parent Folder": "Eltern-Ordner",
|
|
37
|
+
"Include Team Drives": "Team-Drives einbeziehen",
|
|
38
|
+
"File name": "Dateiname",
|
|
39
|
+
"Text": "Text",
|
|
40
|
+
"Content type": "Inhaltstyp",
|
|
41
|
+
"File": "Datei",
|
|
42
|
+
"File ID": "Datei-ID",
|
|
43
|
+
"Destination File name": "Name der Zieldatei",
|
|
44
|
+
"File / Folder Id": "Datei / Ordner-Id",
|
|
45
|
+
"Folder ID": "Ordner-ID",
|
|
46
|
+
"Include Trashed": "Papierkorb hinzufügen",
|
|
47
|
+
"Depth Level": "Tiefenlevel",
|
|
48
|
+
"Download Files": "Dateien herunterladen",
|
|
49
|
+
"Query Term": "Abfragetermin",
|
|
50
|
+
"Operator": "Operator",
|
|
51
|
+
"Value": "Wert",
|
|
52
|
+
"File Type": "Dateityp",
|
|
53
|
+
"Name": "Name",
|
|
54
|
+
"Duplicate as": "Duplizieren als",
|
|
55
|
+
"Document ID": "Dokument-ID",
|
|
56
|
+
"File or Folder ID": "Datei oder Ordner-ID",
|
|
57
|
+
"User email": "Benutzer-E-Mail",
|
|
58
|
+
"Role": "Rolle",
|
|
59
|
+
"Send invitation email": "Einladungs-E-Mail senden",
|
|
60
|
+
"Method": "Methode",
|
|
61
|
+
"Headers": "Kopfzeilen",
|
|
62
|
+
"Query Parameters": "Abfrageparameter",
|
|
63
|
+
"Body Type": "Körpertyp",
|
|
64
|
+
"Body": "Körper",
|
|
65
|
+
"Response is Binary ?": "Antwort ist binär?",
|
|
66
|
+
"No Error on Failure": "Kein Fehler bei Fehler",
|
|
67
|
+
"Timeout (in seconds)": "Timeout (in Sekunden)",
|
|
68
|
+
"Follow redirects": "Weiterleitungen folgen",
|
|
69
|
+
"The name of the new folder": "Der Name des neuen Ordners",
|
|
70
|
+
"Determines if folders from Team Drives should be included in the results.": "Legt fest, ob Ordner von Team-Laufwerken in die Ergebnisse aufgenommen werden sollen.",
|
|
71
|
+
"The name of the new text file": "Der Name der neuen Textdatei",
|
|
72
|
+
"The text content to add to file": "Der Textinhalt zum Hinzufügen in die Datei",
|
|
73
|
+
"Select file type": "Dateityp auswählen",
|
|
74
|
+
"The name of the file": "Der Dateiname",
|
|
75
|
+
"The file URL or base64 to upload": "Die URL oder base64 hochzuladen",
|
|
76
|
+
"File ID coming from | New File -> id |": "Datei-ID von | Neue Datei -> id |",
|
|
77
|
+
"The Id of the file/folder to search for.": "Die Id der zu suchenden Datei/Ordner.",
|
|
78
|
+
"Folder ID coming from | New Folder -> id | (or any other source)": "Ordner-ID von | Neuer Ordner -> id | (oder jede andere Quelle)",
|
|
79
|
+
"Include new files that have been trashed.": "Fügen Sie neue Dateien hinzu, die gelöscht wurden.",
|
|
80
|
+
"How many levels deep to search for files. 1 = current folder only, 2 = current + next level, etc.": "Wie viele Ebenen tief zu suchen sind. 1 = nur aktueller Ordner, 2 = aktuelle + nächste Ebene, etc.",
|
|
81
|
+
"Download all file contents in a list": "Alle Dateiinhalte in einer Liste herunterladen",
|
|
82
|
+
"The Query term or field of file/folder to search upon.": "Der Abfragebegriff oder Feld des zu suchenden Datei/Ordners.",
|
|
83
|
+
"The operator to create criteria.": "Der Operator, um Kriterien zu erstellen.",
|
|
84
|
+
"Value of the field of file/folder to search for.": "Wert des zu suchenden Datei-/Ordnerfeldes.",
|
|
85
|
+
"(Optional) Choose between files and folders.": "(Optional) Wählen Sie zwischen Dateien und Ordnern.",
|
|
86
|
+
"The ID of the file to duplicate": "Die ID der zu duplizierenden Datei",
|
|
87
|
+
"The name of the new file": "Der Name der neuen Datei",
|
|
88
|
+
"The ID of the folder where the file will be duplicated": "Die ID des Ordners, in dem die Datei dupliziert wird",
|
|
89
|
+
"If left unselected the file will be duplicated as it is": "Wenn nicht ausgewählt wird, wird die Datei wie sie ist dupliziert",
|
|
90
|
+
"The ID of the document to export": "Die ID des zu exportierenden Dokuments",
|
|
91
|
+
"The ID of the folder where the file will be exported": "Die ID des Ordners, in dem die Datei exportiert wird",
|
|
92
|
+
"The name of the new file (do not include the extension)": "Der Name der neuen Datei (keine Endung enthalten)",
|
|
93
|
+
"The ID of the file or folder to update permissions for": "Die ID der Datei oder des Ordners zum Aktualisieren der Berechtigungen für",
|
|
94
|
+
"The email address of the user to update permissions for": "Die E-Mail-Adresse des Benutzers zum Aktualisieren der Berechtigungen für",
|
|
95
|
+
"The role to grant to user. See more at: https://developers.google.com/drive/api/guides/ref-roles": "Die Rolle, die dem Benutzer gewährt werden soll. Siehe mehr unter: https://developers.google.com/drive/api/guides/ref-roles",
|
|
96
|
+
"Send an email to the user to notify them of the new permissions": "Sende eine E-Mail an den Benutzer, um ihn über die neuen Berechtigungen zu benachrichtigen",
|
|
97
|
+
"The role to remove from user.": "Die Rolle, die vom Benutzer entfernt werden soll.",
|
|
98
|
+
"The role to assign for public access": "Die Rolle, die dem öffentlichen Zugang zugewiesen wird",
|
|
99
|
+
"You can use **Search Folder/File** action to retrieve ID.": "Du kannst die **Ordner/Datei** Aktion verwenden, um ID zu erhalten.",
|
|
100
|
+
"The ID of the file to delete": "Die ID der zu löschenden Datei",
|
|
101
|
+
"The ID of the file to trash": "Die ID der zu trash Datei",
|
|
102
|
+
"Authorization headers are injected automatically from your connection.": "Autorisierungs-Header werden automatisch von Ihrer Verbindung injiziert.",
|
|
103
|
+
"Enable for files like PDFs, images, etc.": "Aktivieren für Dateien wie PDFs, Bilder usw.",
|
|
104
|
+
"CSV": "CSV",
|
|
105
|
+
"XML": "XML",
|
|
106
|
+
"Full text search": "Volltextsuche",
|
|
107
|
+
"Contains": "Enthält",
|
|
108
|
+
"Equals": "Gleich",
|
|
109
|
+
"All": "Alle",
|
|
110
|
+
"Files": "Dateien",
|
|
111
|
+
"Folders": "Ordner",
|
|
112
|
+
"Google Sheets": "Google Tabellen",
|
|
113
|
+
"Google Docs": "Google Docs",
|
|
114
|
+
"Organizer": "Organisator",
|
|
115
|
+
"File Organizer": "Datei-Organisator",
|
|
116
|
+
"Writer": "Schriftsteller",
|
|
117
|
+
"Commenter": "Kommentar",
|
|
118
|
+
"Reader": "Leser",
|
|
119
|
+
"Editor": "Redakteur",
|
|
120
|
+
"GET": "ERHALTEN",
|
|
121
|
+
"POST": "POST",
|
|
122
|
+
"PATCH": "PATCH",
|
|
123
|
+
"PUT": "PUT",
|
|
124
|
+
"DELETE": "LÖSCHEN",
|
|
125
|
+
"HEAD": "HEAD",
|
|
126
|
+
"None": "Keine",
|
|
127
|
+
"JSON": "JSON",
|
|
128
|
+
"Form Data": "Formulardaten",
|
|
129
|
+
"Raw": "Rohe",
|
|
130
|
+
"New File": "Neue Datei",
|
|
131
|
+
"New Folder": "Neuer Ordner",
|
|
132
|
+
"Trigger when a new file is uploaded.": "Auslösen wenn eine neue Datei hochgeladen wird.",
|
|
133
|
+
"Trigger when a new folder is created or uploaded.": "Auslösen wenn ein neuer Ordner erstellt oder hochgeladen wird.",
|
|
134
|
+
"Include File Content": "Dateiinhalt einbeziehen",
|
|
135
|
+
"Include the file content in the output. This will increase the time taken to fetch the files and might cause issues with large files.": "Fügen Sie den Dateiinhalt in die Ausgabe ein. Dies erhöht die Zeit, die benötigt wird, um die Dateien abzurufen, und kann Probleme mit großen Dateien verursachen."
|
|
136
|
+
}
|
package/src/i18n/es.json
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cloud storage and file backup": "Almacenamiento en la nube y copia de seguridad",
|
|
3
|
+
"Create new folder": "Crear nueva carpeta",
|
|
4
|
+
"Create new file": "Crear nuevo archivo",
|
|
5
|
+
"Upload file": "Subir archivo",
|
|
6
|
+
"Read File Content": "Leer contenido del archivo",
|
|
7
|
+
"Get File Information": "Obtener Información del Archivo",
|
|
8
|
+
"List files": "Listar archivos",
|
|
9
|
+
"Search": "Buscar",
|
|
10
|
+
"Duplicate File": "Duplicar archivo",
|
|
11
|
+
"Save Document as PDF": "Guardar documento como PDF",
|
|
12
|
+
"Update permissions": "Actualizar permisos",
|
|
13
|
+
"Delete permissions": "Eliminar permisos",
|
|
14
|
+
"Set public access": "Establecer acceso público",
|
|
15
|
+
"Move File": "Mover archivo",
|
|
16
|
+
"Delete file": "Eliminar archivo",
|
|
17
|
+
"Trash file": "Archivo basura",
|
|
18
|
+
"Custom API Call": "Llamada API personalizada",
|
|
19
|
+
"Create a new empty folder in your Google Drive": "Crear una nueva carpeta vacía en tu Google Drive",
|
|
20
|
+
"Create a new text file in your Google Drive from text": "Crear un nuevo archivo de texto en tu Google Drive desde el texto",
|
|
21
|
+
"Upload a file in your Google Drive": "Sube un archivo en tu Google Drive",
|
|
22
|
+
"Read a selected file from google drive file": "Leer un archivo seleccionado de google drive",
|
|
23
|
+
"Get a file folder for files/sub-folders": "Obtener una carpeta de archivos para archivos/subcarpetas",
|
|
24
|
+
"List files from a Google Drive folder": "Listar archivos de una carpeta de Google Drive",
|
|
25
|
+
"Search a Google Drive folder for files/sub-folders": "Buscar en una carpeta de Google Drive para archivos/subcarpetas",
|
|
26
|
+
"Duplicate a file from Google Drive. Returns the new file ID.": "Duplicar un archivo de Google Drive. Devuelve el nuevo archivo ID.",
|
|
27
|
+
"Save a document as PDF in a Google Drive folder": "Guardar un documento como PDF en una carpeta de Google Drive",
|
|
28
|
+
"Update permissions for a file or folder": "Actualizar permisos para un archivo o carpeta",
|
|
29
|
+
"Removes a role from an user for a file or folder": "Elimina un rol de un usuario para un archivo o carpeta",
|
|
30
|
+
"Set public access for a file or folder": "Establecer acceso público para un archivo o carpeta",
|
|
31
|
+
"Moves a file from one folder to another.": "Mueve un archivo de una carpeta a otra.",
|
|
32
|
+
"Delete permanently a file from your Google Drive": "Eliminar permanentemente un archivo de tu Google Drive",
|
|
33
|
+
"Move a file to the trash in your Google Drive": "Mover un archivo a la papelera en Google Drive",
|
|
34
|
+
"Make a custom API call to a specific endpoint": "Hacer una llamada API personalizada a un extremo específico",
|
|
35
|
+
"Folder name": "Nombre de carpeta",
|
|
36
|
+
"Parent Folder": "Carpeta padre",
|
|
37
|
+
"Include Team Drives": "Incluye unidades de equipo",
|
|
38
|
+
"File name": "Nombre del archivo",
|
|
39
|
+
"Text": "Texto",
|
|
40
|
+
"Content type": "Tipo de contenido",
|
|
41
|
+
"File": "Archivo",
|
|
42
|
+
"File ID": "ID de archivo",
|
|
43
|
+
"Destination File name": "Nombre del archivo de destino",
|
|
44
|
+
"File / Folder Id": "Archivo / Id de carpeta",
|
|
45
|
+
"Folder ID": "ID Carpeta",
|
|
46
|
+
"Include Trashed": "Incluye basura",
|
|
47
|
+
"Depth Level": "Nivel Profundo",
|
|
48
|
+
"Download Files": "Descargar archivos",
|
|
49
|
+
"Query Term": "Término de consulta",
|
|
50
|
+
"Operator": "Operador",
|
|
51
|
+
"Value": "Valor",
|
|
52
|
+
"File Type": "Tipo de archivo",
|
|
53
|
+
"Name": "Nombre",
|
|
54
|
+
"Duplicate as": "Duplicar como",
|
|
55
|
+
"Document ID": "ID del documento",
|
|
56
|
+
"File or Folder ID": "ID de archivo o carpeta",
|
|
57
|
+
"User email": "Email de usuario",
|
|
58
|
+
"Role": "Rol",
|
|
59
|
+
"Send invitation email": "Enviar email de invitación",
|
|
60
|
+
"Method": "Método",
|
|
61
|
+
"Headers": "Encabezados",
|
|
62
|
+
"Query Parameters": "Parámetros de consulta",
|
|
63
|
+
"Body Type": "Tipo de cuerpo",
|
|
64
|
+
"Body": "Cuerpo",
|
|
65
|
+
"Response is Binary ?": "¿Respuesta es binaria?",
|
|
66
|
+
"No Error on Failure": "No hay ningún error en fallo",
|
|
67
|
+
"Timeout (in seconds)": "Tiempo de espera (en segundos)",
|
|
68
|
+
"Follow redirects": "Seguir redirecciones",
|
|
69
|
+
"The name of the new folder": "El nombre de la nueva carpeta",
|
|
70
|
+
"Determines if folders from Team Drives should be included in the results.": "Determina si las carpetas de Team Drives deben incluirse en los resultados.",
|
|
71
|
+
"The name of the new text file": "El nombre del nuevo archivo de texto",
|
|
72
|
+
"The text content to add to file": "El contenido del texto a añadir al archivo",
|
|
73
|
+
"Select file type": "Seleccionar tipo de archivo",
|
|
74
|
+
"The name of the file": "El nombre del archivo",
|
|
75
|
+
"The file URL or base64 to upload": "La URL del archivo o base64 a subir",
|
|
76
|
+
"File ID coming from | New File -> id |": "ID de archivo procedente de | Nuevo archivo -> id |",
|
|
77
|
+
"The Id of the file/folder to search for.": "El Id del archivo/carpeta a buscar.",
|
|
78
|
+
"Folder ID coming from | New Folder -> id | (or any other source)": "ID de Carpeta procedente de | Nueva Carpeta -> id | (o cualquier otra fuente)",
|
|
79
|
+
"Include new files that have been trashed.": "Incluye nuevos archivos que han sido eliminados.",
|
|
80
|
+
"How many levels deep to search for files. 1 = current folder only, 2 = current + next level, etc.": "Cuántos niveles de profundidad para buscar archivos. 1 = carpeta actual, 2 = actual + nivel siguiente, etc.",
|
|
81
|
+
"Download all file contents in a list": "Descargar todo el contenido de un archivo en una lista",
|
|
82
|
+
"The Query term or field of file/folder to search upon.": "El término de consulta o campo de archivo/carpeta en el que buscar.",
|
|
83
|
+
"The operator to create criteria.": "El operador para crear criterios.",
|
|
84
|
+
"Value of the field of file/folder to search for.": "Valor del campo de archivo/carpeta a buscar.",
|
|
85
|
+
"(Optional) Choose between files and folders.": "(Opcional) Elige entre archivos y carpetas.",
|
|
86
|
+
"The ID of the file to duplicate": "El ID del archivo a duplicar",
|
|
87
|
+
"The name of the new file": "El nombre del nuevo archivo",
|
|
88
|
+
"The ID of the folder where the file will be duplicated": "El ID de la carpeta donde se duplicará el archivo",
|
|
89
|
+
"If left unselected the file will be duplicated as it is": "Si se deja sin seleccionar, el archivo será duplicado como está",
|
|
90
|
+
"The ID of the document to export": "El ID del documento a exportar",
|
|
91
|
+
"The ID of the folder where the file will be exported": "El ID de la carpeta donde se exportará el archivo",
|
|
92
|
+
"The name of the new file (do not include the extension)": "El nombre del nuevo archivo (no incluir la extensión)",
|
|
93
|
+
"The ID of the file or folder to update permissions for": "El ID del archivo o carpeta para actualizar los permisos para",
|
|
94
|
+
"The email address of the user to update permissions for": "La dirección de correo electrónico del usuario para actualizar los permisos para",
|
|
95
|
+
"The role to grant to user. See more at: https://developers.google.com/drive/api/guides/ref-roles": "El rol a otorgar al usuario. Ver más en: https://Developopers.google.com/drive/api/guides/ref-roles",
|
|
96
|
+
"Send an email to the user to notify them of the new permissions": "Enviar un correo electrónico al usuario para notificarle de los nuevos permisos",
|
|
97
|
+
"The role to remove from user.": "El rol a eliminar del usuario.",
|
|
98
|
+
"The role to assign for public access": "El rol a asignar para acceso público",
|
|
99
|
+
"You can use **Search Folder/File** action to retrieve ID.": "Puedes usar la acción **Buscar carpeta/archivo** para recuperar el ID.",
|
|
100
|
+
"The ID of the file to delete": "El ID del archivo a eliminar",
|
|
101
|
+
"The ID of the file to trash": "El ID del archivo a la papelera",
|
|
102
|
+
"Authorization headers are injected automatically from your connection.": "Las cabeceras de autorización se inyectan automáticamente desde tu conexión.",
|
|
103
|
+
"Enable for files like PDFs, images, etc.": "Activar para archivos como PDFs, imágenes, etc.",
|
|
104
|
+
"CSV": "CSV",
|
|
105
|
+
"XML": "XML",
|
|
106
|
+
"Full text search": "Búsqueda de texto completo",
|
|
107
|
+
"Contains": "Contiene",
|
|
108
|
+
"Equals": "Iguales",
|
|
109
|
+
"All": "Todos",
|
|
110
|
+
"Files": "Archivos",
|
|
111
|
+
"Folders": "Carpetas",
|
|
112
|
+
"Google Sheets": "Hojas de Google",
|
|
113
|
+
"Google Docs": "Google Docs",
|
|
114
|
+
"Organizer": "Organizador",
|
|
115
|
+
"File Organizer": "Organizador de archivos",
|
|
116
|
+
"Writer": "Escritor",
|
|
117
|
+
"Commenter": "Comentario",
|
|
118
|
+
"Reader": "Lector",
|
|
119
|
+
"Editor": "Editor",
|
|
120
|
+
"GET": "RECOGER",
|
|
121
|
+
"POST": "POST",
|
|
122
|
+
"PATCH": "PATCH",
|
|
123
|
+
"PUT": "PUT",
|
|
124
|
+
"DELETE": "BORRAR",
|
|
125
|
+
"HEAD": "LIMPIO",
|
|
126
|
+
"None": "Ninguna",
|
|
127
|
+
"JSON": "JSON",
|
|
128
|
+
"Form Data": "Datos de Formulario",
|
|
129
|
+
"Raw": "Rápido",
|
|
130
|
+
"New File": "Nuevo archivo",
|
|
131
|
+
"New Folder": "Nueva carpeta",
|
|
132
|
+
"Trigger when a new file is uploaded.": "Activar cuando se sube un nuevo archivo.",
|
|
133
|
+
"Trigger when a new folder is created or uploaded.": "Activar cuando se crea o sube una nueva carpeta.",
|
|
134
|
+
"Include File Content": "Incluye contenido del archivo",
|
|
135
|
+
"Include the file content in the output. This will increase the time taken to fetch the files and might cause issues with large files.": "Incluye el contenido del archivo en la salida. Esto aumentará el tiempo que tarda en obtener los archivos y puede causar problemas con archivos grandes."
|
|
136
|
+
}
|
package/src/i18n/fr.json
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cloud storage and file backup": "Stockage et sauvegarde de fichiers dans le cloud",
|
|
3
|
+
"Create new folder": "Créer un nouveau dossier",
|
|
4
|
+
"Create new file": "Créer un nouveau fichier",
|
|
5
|
+
"Upload file": "Charger un fichier",
|
|
6
|
+
"Read File Content": "Lire le contenu du fichier",
|
|
7
|
+
"Get File Information": "Obtenir des informations sur le fichier",
|
|
8
|
+
"List files": "Lister les fichiers",
|
|
9
|
+
"Search": "Rechercher",
|
|
10
|
+
"Duplicate File": "Dupliquer le fichier",
|
|
11
|
+
"Save Document as PDF": "Enregistrer le document au format PDF",
|
|
12
|
+
"Update permissions": "Mettre à jour les autorisations",
|
|
13
|
+
"Delete permissions": "Supprimer les permissions",
|
|
14
|
+
"Set public access": "Définir l'accès public",
|
|
15
|
+
"Move File": "Déplacer le fichier",
|
|
16
|
+
"Delete file": "Supprimer le fichier",
|
|
17
|
+
"Trash file": "Fichier de la corbeille",
|
|
18
|
+
"Custom API Call": "Appel API personnalisé",
|
|
19
|
+
"Create a new empty folder in your Google Drive": "Créer un nouveau dossier vide dans votre Google Drive",
|
|
20
|
+
"Create a new text file in your Google Drive from text": "Créez un nouveau fichier texte dans votre Google Drive à partir du texte",
|
|
21
|
+
"Upload a file in your Google Drive": "Télécharger un fichier dans votre Google Drive",
|
|
22
|
+
"Read a selected file from google drive file": "Lire un fichier sélectionné à partir du fichier Google Drive",
|
|
23
|
+
"Get a file folder for files/sub-folders": "Récupérer un dossier de fichiers pour les fichiers/sous-dossiers",
|
|
24
|
+
"List files from a Google Drive folder": "Lister les fichiers d'un dossier Google Drive",
|
|
25
|
+
"Search a Google Drive folder for files/sub-folders": "Rechercher des fichiers/sous-dossiers dans un dossier Google Drive",
|
|
26
|
+
"Duplicate a file from Google Drive. Returns the new file ID.": "Dupliquer un fichier depuis Google Drive. Renvoie le nouvel identifiant de fichier.",
|
|
27
|
+
"Save a document as PDF in a Google Drive folder": "Enregistrer un document au format PDF dans un dossier Google Drive",
|
|
28
|
+
"Update permissions for a file or folder": "Mettre à jour les permissions pour un fichier ou un dossier",
|
|
29
|
+
"Removes a role from an user for a file or folder": "Supprime un rôle d'un utilisateur pour un fichier ou un dossier",
|
|
30
|
+
"Set public access for a file or folder": "Définir l'accès public pour un fichier ou un dossier",
|
|
31
|
+
"Moves a file from one folder to another.": "Déplace un fichier d'un dossier vers un autre.",
|
|
32
|
+
"Delete permanently a file from your Google Drive": "Supprimer définitivement un fichier de votre Google Drive",
|
|
33
|
+
"Move a file to the trash in your Google Drive": "Déplacez un fichier dans la corbeille de votre Google Drive",
|
|
34
|
+
"Make a custom API call to a specific endpoint": "Passez un appel API personnalisé à un point de terminaison spécifique",
|
|
35
|
+
"Folder name": "Nom du dossier",
|
|
36
|
+
"Parent Folder": "Dossier parent",
|
|
37
|
+
"Include Team Drives": "Inclure les lectures d'équipe",
|
|
38
|
+
"File name": "Nom du fichier",
|
|
39
|
+
"Text": "Texte du texte",
|
|
40
|
+
"Content type": "Type de contenu",
|
|
41
|
+
"File": "Ficher",
|
|
42
|
+
"File ID": "ID du fichier",
|
|
43
|
+
"Destination File name": "Nom du fichier de destination",
|
|
44
|
+
"File / Folder Id": "Fichier / Id du dossier",
|
|
45
|
+
"Folder ID": "ID du dossier",
|
|
46
|
+
"Include Trashed": "Inclure la corbeille",
|
|
47
|
+
"Depth Level": "Niveau de profondeur",
|
|
48
|
+
"Download Files": "Télécharger les fichiers",
|
|
49
|
+
"Query Term": "Condition de requête",
|
|
50
|
+
"Operator": "Opérateur",
|
|
51
|
+
"Value": "Valeur",
|
|
52
|
+
"File Type": "Type de fichier",
|
|
53
|
+
"Name": "Nom",
|
|
54
|
+
"Duplicate as": "Dupliquer en tant que",
|
|
55
|
+
"Document ID": "ID du document",
|
|
56
|
+
"File or Folder ID": "ID du fichier ou du dossier",
|
|
57
|
+
"User email": "E-mail de l'utilisateur",
|
|
58
|
+
"Role": "Rôle",
|
|
59
|
+
"Send invitation email": "Envoyer un e-mail d'invitation",
|
|
60
|
+
"Method": "Méthode",
|
|
61
|
+
"Headers": "En-têtes",
|
|
62
|
+
"Query Parameters": "Paramètres de requête",
|
|
63
|
+
"Body Type": "Body Type",
|
|
64
|
+
"Body": "Corps",
|
|
65
|
+
"Response is Binary ?": "La réponse est Binaire ?",
|
|
66
|
+
"No Error on Failure": "Aucune erreur en cas d'échec",
|
|
67
|
+
"Timeout (in seconds)": "Délai d'attente (en secondes)",
|
|
68
|
+
"Follow redirects": "Suivre les redirections",
|
|
69
|
+
"The name of the new folder": "Le nom du nouveau dossier",
|
|
70
|
+
"Determines if folders from Team Drives should be included in the results.": "Détermine si les dossiers de Team Drives doivent être inclus dans les résultats.",
|
|
71
|
+
"The name of the new text file": "Le nom du nouveau fichier texte",
|
|
72
|
+
"The text content to add to file": "Le contenu du texte à ajouter au fichier",
|
|
73
|
+
"Select file type": "Sélectionnez le type de fichier",
|
|
74
|
+
"The name of the file": "Le nom du fichier",
|
|
75
|
+
"The file URL or base64 to upload": "L'URL du fichier ou base64 à télécharger",
|
|
76
|
+
"File ID coming from | New File -> id |": "ID du fichier venant de | Nouveau fichier -> id |",
|
|
77
|
+
"The Id of the file/folder to search for.": "L'identifiant du fichier/dossier à rechercher.",
|
|
78
|
+
"Folder ID coming from | New Folder -> id | (or any other source)": "ID du dossier venant de | Nouveau dossier -> id | (ou n'importe quelle autre source)",
|
|
79
|
+
"Include new files that have been trashed.": "Inclure les nouveaux fichiers qui ont été mis à la corbeille.",
|
|
80
|
+
"How many levels deep to search for files. 1 = current folder only, 2 = current + next level, etc.": "Combien de niveaux de profondeur pour rechercher des fichiers. 1 = dossier courant seulement, 2 = niveau actuel + niveau suivant, etc.",
|
|
81
|
+
"Download all file contents in a list": "Télécharger tout le contenu du fichier dans une liste",
|
|
82
|
+
"The Query term or field of file/folder to search upon.": "Le terme de requête ou le champ de fichier/dossier à rechercher.",
|
|
83
|
+
"The operator to create criteria.": "L'opérateur pour créer des critères.",
|
|
84
|
+
"Value of the field of file/folder to search for.": "Valeur du champ de fichier/dossier à rechercher.",
|
|
85
|
+
"(Optional) Choose between files and folders.": "(Facultatif) Choisissez entre les fichiers et les dossiers.",
|
|
86
|
+
"The ID of the file to duplicate": "L'ID du fichier à dupliquer",
|
|
87
|
+
"The name of the new file": "Le nom du nouveau fichier",
|
|
88
|
+
"The ID of the folder where the file will be duplicated": "L'ID du dossier où le fichier sera dupliqué",
|
|
89
|
+
"If left unselected the file will be duplicated as it is": "Si laissé désélectionné, le fichier sera dupliqué tel quel",
|
|
90
|
+
"The ID of the document to export": "L'ID du document à exporter",
|
|
91
|
+
"The ID of the folder where the file will be exported": "L'ID du dossier où le fichier sera exporté",
|
|
92
|
+
"The name of the new file (do not include the extension)": "Le nom du nouveau fichier (ne pas inclure l'extension)",
|
|
93
|
+
"The ID of the file or folder to update permissions for": "L'ID du fichier ou du dossier pour mettre à jour les permissions pour",
|
|
94
|
+
"The email address of the user to update permissions for": "L'adresse e-mail de l'utilisateur pour mettre à jour les autorisations pour",
|
|
95
|
+
"The role to grant to user. See more at: https://developers.google.com/drive/api/guides/ref-roles": "Le rôle à accorder à l'utilisateur. En savoir plus sur: https://developers.google.com/drive/api/guides/ref-roles",
|
|
96
|
+
"Send an email to the user to notify them of the new permissions": "Envoyer un email à l'utilisateur pour l'informer des nouvelles autorisations",
|
|
97
|
+
"The role to remove from user.": "Le rôle à supprimer de l'utilisateur.",
|
|
98
|
+
"The role to assign for public access": "Le rôle à assigner pour l'accès public",
|
|
99
|
+
"You can use **Search Folder/File** action to retrieve ID.": "Vous pouvez utiliser l'action **Recherche de dossier/fichier** pour récupérer l'ID.",
|
|
100
|
+
"The ID of the file to delete": "L'ID du fichier à supprimer",
|
|
101
|
+
"The ID of the file to trash": "L'ID du fichier à mettre dans la corbeille",
|
|
102
|
+
"Authorization headers are injected automatically from your connection.": "Les en-têtes d'autorisation sont injectés automatiquement à partir de votre connexion.",
|
|
103
|
+
"Enable for files like PDFs, images, etc.": "Activer pour les fichiers comme les PDFs, les images, etc.",
|
|
104
|
+
"CSV": "CSV",
|
|
105
|
+
"XML": "XML",
|
|
106
|
+
"Full text search": "Recherche en texte complet",
|
|
107
|
+
"Contains": "Contient",
|
|
108
|
+
"Equals": "Egal",
|
|
109
|
+
"All": "Tous",
|
|
110
|
+
"Files": "Fichiers",
|
|
111
|
+
"Folders": "Dossiers",
|
|
112
|
+
"Google Sheets": "Feuilles Google",
|
|
113
|
+
"Google Docs": "Google Docs",
|
|
114
|
+
"Organizer": "Organisateur",
|
|
115
|
+
"File Organizer": "Organisateur de fichiers",
|
|
116
|
+
"Writer": "Écrivain",
|
|
117
|
+
"Commenter": "Commentateur",
|
|
118
|
+
"Reader": "Lecteur",
|
|
119
|
+
"Editor": "Editor",
|
|
120
|
+
"GET": "OBTENIR",
|
|
121
|
+
"POST": "POSTER",
|
|
122
|
+
"PATCH": "PATCH",
|
|
123
|
+
"PUT": "EFFACER",
|
|
124
|
+
"DELETE": "SUPPRIMER",
|
|
125
|
+
"HEAD": "TÊTE",
|
|
126
|
+
"None": "Aucun",
|
|
127
|
+
"JSON": "JSON",
|
|
128
|
+
"Form Data": "Données du formulaire",
|
|
129
|
+
"Raw": "Brut",
|
|
130
|
+
"New File": "Nouveau fichier",
|
|
131
|
+
"New Folder": "New Folder",
|
|
132
|
+
"Trigger when a new file is uploaded.": "Déclencher quand un nouveau fichier est téléchargé.",
|
|
133
|
+
"Trigger when a new folder is created or uploaded.": "Déclencher lorsqu'un nouveau dossier est créé ou téléchargé.",
|
|
134
|
+
"Include File Content": "Inclure le contenu du fichier",
|
|
135
|
+
"Include the file content in the output. This will increase the time taken to fetch the files and might cause issues with large files.": "Inclure le contenu du fichier dans la sortie. Cela augmentera le temps de récupération des fichiers et pourrait causer des problèmes avec les gros fichiers."
|
|
136
|
+
}
|