@scopieflows/app-microsoft-sharepoint 0.2.3
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/README.md +2 -0
- package/package.json +31 -0
- package/src/i18n/de.json +131 -0
- package/src/i18n/es.json +131 -0
- package/src/i18n/fr.json +131 -0
- package/src/i18n/ja.json +131 -0
- package/src/i18n/nl.json +131 -0
- package/src/i18n/pt.json +131 -0
- package/src/i18n/ru.json +49 -0
- package/src/i18n/translation.json +131 -0
- package/src/i18n/vi.json +49 -0
- package/src/i18n/zh.json +131 -0
- package/src/index.d.ts +2 -0
- package/src/index.js +121 -0
- package/src/index.js.map +1 -0
- package/src/lib/actions/copy-item-within-site.d.ts +8 -0
- package/src/lib/actions/copy-item-within-site.js +155 -0
- package/src/lib/actions/copy-item-within-site.js.map +1 -0
- package/src/lib/actions/copy-item.d.ts +10 -0
- package/src/lib/actions/copy-item.js +118 -0
- package/src/lib/actions/copy-item.js.map +1 -0
- package/src/lib/actions/create-folder.d.ts +6 -0
- package/src/lib/actions/create-folder.js +44 -0
- package/src/lib/actions/create-folder.js.map +1 -0
- package/src/lib/actions/create-list-item.d.ts +5 -0
- package/src/lib/actions/create-list-item.js +43 -0
- package/src/lib/actions/create-list-item.js.map +1 -0
- package/src/lib/actions/create-list.d.ts +5 -0
- package/src/lib/actions/create-list.js +41 -0
- package/src/lib/actions/create-list.js.map +1 -0
- package/src/lib/actions/delete-list-item.d.ts +5 -0
- package/src/lib/actions/delete-list-item.js +33 -0
- package/src/lib/actions/delete-list-item.js.map +1 -0
- package/src/lib/actions/find-file.d.ts +8 -0
- package/src/lib/actions/find-file.js +133 -0
- package/src/lib/actions/find-file.js.map +1 -0
- package/src/lib/actions/get-folder-contents.d.ts +9 -0
- package/src/lib/actions/get-folder-contents.js +108 -0
- package/src/lib/actions/get-folder-contents.js.map +1 -0
- package/src/lib/actions/get-site-information.d.ts +4 -0
- package/src/lib/actions/get-site-information.js +38 -0
- package/src/lib/actions/get-site-information.js.map +1 -0
- package/src/lib/actions/move-file.d.ts +7 -0
- package/src/lib/actions/move-file.js +151 -0
- package/src/lib/actions/move-file.js.map +1 -0
- package/src/lib/actions/publish-page.d.ts +4 -0
- package/src/lib/actions/publish-page.js +52 -0
- package/src/lib/actions/publish-page.js.map +1 -0
- package/src/lib/actions/search-list-item.d.ts +5 -0
- package/src/lib/actions/search-list-item.js +40 -0
- package/src/lib/actions/search-list-item.js.map +1 -0
- package/src/lib/actions/update-list-item.d.ts +6 -0
- package/src/lib/actions/update-list-item.js +42 -0
- package/src/lib/actions/update-list-item.js.map +1 -0
- package/src/lib/actions/upload-file.d.ts +7 -0
- package/src/lib/actions/upload-file.js +49 -0
- package/src/lib/actions/upload-file.js.map +1 -0
- package/src/lib/common/index.d.ts +14 -0
- package/src/lib/common/index.js +394 -0
- package/src/lib/common/index.js.map +1 -0
- package/src/lib/triggers/new-file-in-folder.d.ts +18 -0
- package/src/lib/triggers/new-file-in-folder.js +155 -0
- package/src/lib/triggers/new-file-in-folder.js.map +1 -0
- package/src/lib/triggers/new-file-in-subfolders.d.ts +18 -0
- package/src/lib/triggers/new-file-in-subfolders.js +151 -0
- package/src/lib/triggers/new-file-in-subfolders.js.map +1 -0
- package/src/lib/triggers/new-list-item.d.ts +14 -0
- package/src/lib/triggers/new-list-item.js +95 -0
- package/src/lib/triggers/new-list-item.js.map +1 -0
- package/src/lib/triggers/new-list.d.ts +10 -0
- package/src/lib/triggers/new-list.js +89 -0
- package/src/lib/triggers/new-list.js.map +1 -0
- package/src/lib/triggers/new-or-updated-file.d.ts +18 -0
- package/src/lib/triggers/new-or-updated-file.js +152 -0
- package/src/lib/triggers/new-or-updated-file.js.map +1 -0
- package/src/lib/triggers/new-or-updated-folder.d.ts +18 -0
- package/src/lib/triggers/new-or-updated-folder.js +152 -0
- package/src/lib/triggers/new-or-updated-folder.js.map +1 -0
- package/src/lib/triggers/new-or-updated-list.d.ts +10 -0
- package/src/lib/triggers/new-or-updated-list.js +103 -0
- package/src/lib/triggers/new-or-updated-list.js.map +1 -0
- package/src/lib/triggers/updated-list-item.d.ts +14 -0
- package/src/lib/triggers/updated-list-item.js +108 -0
- package/src/lib/triggers/updated-list-item.js.map +1 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@scopieflows/app-microsoft-sharepoint",
|
|
3
|
+
"version": "0.2.3",
|
|
4
|
+
"dependencies": {
|
|
5
|
+
"@microsoft/microsoft-graph-client": "3.0.7",
|
|
6
|
+
"@microsoft/microsoft-graph-types": "2.40.0",
|
|
7
|
+
"@sinclair/typebox": "0.34.11",
|
|
8
|
+
"ai": "^6.0.0",
|
|
9
|
+
"axios": "1.13.1",
|
|
10
|
+
"axios-retry": "4.4.1",
|
|
11
|
+
"dayjs": "1.11.9",
|
|
12
|
+
"deepmerge-ts": "7.1.0",
|
|
13
|
+
"form-data": "4.0.4",
|
|
14
|
+
"i18next": "23.13.0",
|
|
15
|
+
"mime-types": "2.1.35",
|
|
16
|
+
"nanoid": "3.3.8",
|
|
17
|
+
"semver": "7.6.0",
|
|
18
|
+
"socket.io-client": "4.8.1",
|
|
19
|
+
"zod": "4.1.13",
|
|
20
|
+
"@scopieflows/pieces-common": "0.11.2",
|
|
21
|
+
"@scopieflows/pieces-framework": "0.25.0",
|
|
22
|
+
"@scopieflows/shared": "0.33.0",
|
|
23
|
+
"tslib": "2.6.2"
|
|
24
|
+
},
|
|
25
|
+
"resolutions": {
|
|
26
|
+
"rollup": "npm:@rollup/wasm-node"
|
|
27
|
+
},
|
|
28
|
+
"types": "./src/index.d.ts",
|
|
29
|
+
"main": "./src/index.js",
|
|
30
|
+
"type": "commonjs"
|
|
31
|
+
}
|
package/src/i18n/de.json
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
{
|
|
2
|
+
"\n1. Sign in to [Microsoft Azure Portal](https://portal.azure.com/).\n2. From the left sidebar, go to **Microsoft Enfra ID**.\n3. Under **Manage**, click on **App registrations**.\n4. Click the **New registration** button.\n5. Enter a **Name** for your app.\n6. For **Supported account types**, choose:\n - **Accounts in any organizational directory (Any Microsoft Entra ID tenant - Multitenant) and personal Microsoft accounts**\n - Or select based on your requirement.\n7. In **Redirect URI**, select **Web** and ad": "\n1. Melden Sie sich bei [Microsoft Azure Portal](https://portal.azure.com/).\n. Von der linken Seitenleiste gehen Sie zu **Microsoft Enfra ID**.\n3. Unter **Verwalten** klicken Sie auf **App-Registrierungen**.\n4. Klicken Sie auf die **Neue Registrierung** Schaltfläche.\nGib einen **Name** für deine App ein.\nFür **unterstützte Kontotypen**, auswählen:\n - **Konten in jedem Organisationsverzeichnis (jeder Microsoft-Entra-ID-Mieter - Multitenant) und persönlichen Microsoft-Konten**\n - Oder wählen Sie nach Ihren Anforderungen aus.\n7. In **Weiterleitungs-URI** wählen Sie **Web** und fügen Sie die angegebene URL hinzu: {{redirectUrl}}\n8. Klicken Sie auf **Registrieren**.\n9. Nach der Registrierung werden Sie zur Übersichtsseite der App weitergeleitet. Kopieren Sie die **Anwendungs-(Client)-ID**.\n10. Vom linken Menü gehen Sie zu **Zertifikate & Geheimnisse**.\n - Unter **Kundengeheimnis**, klicke **Neues Kundengeheimnis**.\n - Geben Sie eine Beschreibung an, setzen Sie ein Ablaufdatum und klicken Sie auf **Hinzufügen**.\n - Kopieren Sie den **Wert** des Client-Geheimnisses (dies wird nicht wieder angezeigt).\n11. Gehe zu **API-Berechtigungen** vom linken Menü.\n - Klicke auf **Berechtigung hinzufügen**.\n - Wähle **Microsoft Graph**.\n - Fügen Sie folgende **delegierte Berechtigungen**:\n - Sites.Read hinzu. ll \n - Sites.ReadWrite.Alle\n - Sites. anage.All\n - Files.ReadWrite. ll\n - openid\n - E-Mail\n - Profil\n - offline_access\n - Klicken Sie auf **Berechtigungen hinzufügen**.\n12. Kopieren Sie Ihre **Client-ID** und **Client-Geheimnis**.\n",
|
|
3
|
+
"Create Folder": "Ordner erstellen",
|
|
4
|
+
"Create List": "Liste erstellen",
|
|
5
|
+
"Create List Item": "Listenelement erstellen",
|
|
6
|
+
"Update List Item": "Listenelement aktualisieren",
|
|
7
|
+
"Delete List Item": "Listenelement löschen",
|
|
8
|
+
"Find List Item": "Listenelement finden",
|
|
9
|
+
"Upload File": "Datei hochladen",
|
|
10
|
+
"Publish Page": "Seite veröffentlichen",
|
|
11
|
+
"Copy File or Folder (Across Sites)": "Datei oder Ordner kopieren (Alle Seiten)",
|
|
12
|
+
"Copy File or Folder (Within Site)": "Datei oder Ordner kopieren (innerhalb der Site)",
|
|
13
|
+
"Move File": "Datei verschieben",
|
|
14
|
+
"Find File": "Datei suchen",
|
|
15
|
+
"Get Folder Contents": "Ordnerinhalte abrufen",
|
|
16
|
+
"Get Site Information": "Website-Informationen abrufen",
|
|
17
|
+
"Custom API Call": "Eigener API-Aufruf",
|
|
18
|
+
"Creates a new folder at path you specify.": "Erstellt einen neuen Ordner am Pfad, den Sie angeben.",
|
|
19
|
+
"Creates a new list.": "Erstellt eine neue Liste.",
|
|
20
|
+
"Creates a new item in a list.": "Erstellt ein neues Element in einer Liste.",
|
|
21
|
+
"Updates an existing item in a list.": "Aktualisiert ein vorhandenes Element in der Liste.",
|
|
22
|
+
"Deletes an existing item from a list.": "Löscht ein vorhandenes Element aus der Liste.",
|
|
23
|
+
"Finds a item in a list based on name.": "Findet ein Element in einer Liste basierend auf Namen.",
|
|
24
|
+
"Uploads a new file at path you specify.": "Lädt eine neue Datei im angegebenen Pfad hoch.",
|
|
25
|
+
"Publishes a SharePoint page, making it available to all users. If the page is checked out, it will be automatically checked in. Note: Pages with active approval flows will not publish until approval is complete.": "Veröffentlicht eine SharePoint-Seite, die allen Benutzern zur Verfügung steht. Wenn die Seite ausgecheckt ist, wird sie automatisch eingecheckt. Hinweis: Pages with active approval flows will not publish until approval is complete.",
|
|
26
|
+
"Copy a file or folder from one site to another within the same tenant, with overwrite option.": "Kopieren Sie eine Datei oder einen Ordner von einer Site auf eine andere innerhalb derselben Instanz mit der Option Überschreiben.",
|
|
27
|
+
"Copy a file or folder to another folder within the same site.": "Kopieren Sie eine Datei oder einen Ordner in einen anderen Ordner auf der gleichen Seite.",
|
|
28
|
+
"Move a file from one folder to another within the same drive.": "Verschieben Sie eine Datei von einem Ordner in einen anderen auf dem selben Laufwerk.",
|
|
29
|
+
"Look up a file by its name or path.": "Suchen Sie eine Datei mit ihrem Namen oder Pfad.",
|
|
30
|
+
"List all files and subfolders in a specified folder, optionally with detailed metadata.": "Alle Dateien und Unterordner in einem angegebenen Ordner auflisten, optional mit detaillierten Metadaten.",
|
|
31
|
+
"Fetch metadata of a SharePoint site (site ID, title, URL, description, etc.).": "Abrufen von Metadaten einer SharePoint-Website (Site-ID, Titel, URL, Beschreibung, etc.).",
|
|
32
|
+
"Make a custom API call to a specific endpoint": "Einen benutzerdefinierten API-Aufruf an einen bestimmten Endpunkt machen",
|
|
33
|
+
"Site": "Site",
|
|
34
|
+
"Drive": "Laufwerk",
|
|
35
|
+
"Parent Folder": "Eltern-Ordner",
|
|
36
|
+
"Folder Name": "Ordnername",
|
|
37
|
+
"List Name": "Listenname",
|
|
38
|
+
"List Description": "Listenbeschreibung",
|
|
39
|
+
"List": "Liste",
|
|
40
|
+
"List Columns": "Spalten anzeigen",
|
|
41
|
+
"List Item": "Listenelement",
|
|
42
|
+
"Title": "Titel",
|
|
43
|
+
"File": "Datei",
|
|
44
|
+
"File Name": "Dateiname",
|
|
45
|
+
"Page": "Seite",
|
|
46
|
+
"Source File or Folder": "Quelldatei oder Ordner",
|
|
47
|
+
"Destination Drive": "Ziellaufwerk",
|
|
48
|
+
"Destination Folder": "Zielordner",
|
|
49
|
+
"New Name (Optional)": "Neuer Name (optional)",
|
|
50
|
+
"Conflict Behavior": "Konfliktverhalten",
|
|
51
|
+
"File to Move": "Datei verschieben",
|
|
52
|
+
"Find Method": "Suchmethode",
|
|
53
|
+
"File Path": "Dateipfad",
|
|
54
|
+
"Search Query": "Suchanfrage",
|
|
55
|
+
"Folder to Search In (Optional)": "Zu suchender Ordner (optional)",
|
|
56
|
+
"Folder": "Ordner",
|
|
57
|
+
"Include Custom Metadata": "Benutzerdefinierte Metadaten einbeziehen",
|
|
58
|
+
"Page Size": "Einträge pro Seite",
|
|
59
|
+
"Select Fields (Optional)": "Felder auswählen (optional)",
|
|
60
|
+
"Order By (Optional)": "Bestellung nach (Optional)",
|
|
61
|
+
"Method": "Methode",
|
|
62
|
+
"Headers": "Kopfzeilen",
|
|
63
|
+
"Query Parameters": "Abfrageparameter",
|
|
64
|
+
"Body Type": "Körpertyp",
|
|
65
|
+
"Body": "Körper",
|
|
66
|
+
"Response is Binary ?": "Antwort ist binär?",
|
|
67
|
+
"No Error on Failure": "Kein Fehler bei Fehler",
|
|
68
|
+
"Timeout (in seconds)": "Timeout (in Sekunden)",
|
|
69
|
+
"Follow redirects": "Weiterleitungen folgen",
|
|
70
|
+
"Parent folder,like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**/**) level.": "Übergeordneter Ordner, wie \"/demo/\" oder \"/docs/assignment/\".Lassen Sie ihn Standardwert, wenn Sie einen Ordner auf der Root-Ebene erstellen wollen (**/**).",
|
|
71
|
+
"Item title to search": "Artikeltitel zu suchen",
|
|
72
|
+
"The file or url you want to upload": "Die Datei oder die URL, die Sie hochladen möchten",
|
|
73
|
+
"Parent folder, like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**CHANGE THIS BACK//**) level.": "Übergeordneter Ordner, wie \"/demo/\" oder \"/docs/assignment/\".Lassen Sie ihn standardmäßig, wenn Sie einen Ordner im Root erstellen wollen (**CHANGE THIS BACK//**).",
|
|
74
|
+
"The folder to copy the item into. Defaults to the root of the drive.": "Der Ordner, in den das Element kopiert wird. Standardmäßig ist das Stammverzeichnis des Laufwerks.",
|
|
75
|
+
"A new name for the copied item. If not provided, the original name is used.": "Ein neuer Name für das kopierte Element. Wenn nicht angegeben wird, wird der Originalname verwendet.",
|
|
76
|
+
"Action to take if a file with the same name already exists.": "Aktion zum Ausführen, wenn eine Datei mit dem gleichen Namen bereits vorhanden ist.",
|
|
77
|
+
"The folder to copy the item into. Select \"Root\" to copy to the top level of the drive.": "Der Ordner, in den das Element kopiert wird. Wähle \"Root\" um es in die oberste Ebene des Laufwerks zu kopieren.",
|
|
78
|
+
"Action to take if a file with the same name already exists in the destination.": "Aktion zum Ausführen, wenn eine Datei mit dem gleichen Namen bereits im Ziel vorhanden ist.",
|
|
79
|
+
"The file you want to move.": "Die Datei, die Sie verschieben möchten.",
|
|
80
|
+
"The folder to move the file into. Select \"Root\" to move to the top level of the drive.": "Der Ordner, in den die Datei verschoben wird. Wählen Sie \"Root\" um zur obersten Ebene des Laufwerks zu gelangen.",
|
|
81
|
+
"Provide a new name to rename the file during the move.": "Geben Sie einen neuen Namen an, um die Datei während des Verschiebens umzubenennen.",
|
|
82
|
+
"Choose how to find the file.": "Wählen Sie aus, wie die Datei gefunden werden soll.",
|
|
83
|
+
"The exact path to the file from the drive's root. **Required if finding by path.** Example: `Documents/Reports/Q1-Report.docx`": "Der genaue Pfad zur Datei vom Root des Laufwerks. **Wird benötigt, wenn Pfad gefunden wird.** Beispiel: `Documents/Reports/Q1-Report.docx`",
|
|
84
|
+
"The file name or keyword to search for. **Required if searching by name.** Example: `Q1-Report.docx`": "Der Dateiname oder Schlüsselwort nach dem gesucht werden soll. **Wird benötigt, wenn nach Namen gesucht wird.** Beispiel: `Q1-Report.docx`",
|
|
85
|
+
"The folder to search within. If not specified, the entire drive will be searched. **Only applies when searching by name.**": "Der zu durchsuchende Ordner. Falls nicht angegeben, wird das gesamte Laufwerk durchsucht. **Wird nur nach Namen gesucht.**",
|
|
86
|
+
"The folder whose contents you want to list. Select \"Root Folder\" for the top-level folder.": "Der Ordner, dessen Inhalt Sie auflisten möchten. Wählen Sie \"Root Ordner\" für den obersten Ordner.",
|
|
87
|
+
"Check this to include SharePoint-specific metadata (custom columns). This may slow down the request.": "Aktivieren Sie diese Option, um SharePoint-spezifische Metadaten (benutzerdefinierte Spalten) einzubinden. Dies kann die Anfrage verlangsamen.",
|
|
88
|
+
"The maximum number of items to return. The API default is 200. If more items exist, the output will contain a field `@odata.nextLink` that you can use in a custom API call to get the next page.": "Die maximale Anzahl an Gegenständen, die zurückgegeben werden sollen. Die API-Standardeinstellung ist 200. Wenn weitere Elemente vorhanden sind, enthält die Ausgabe ein Feld `@odata. extLink`, den du in einem benutzerdefinierten API-Aufruf verwenden kannst, um die nächste Seite zu erhalten.",
|
|
89
|
+
"A comma-separated list of properties to return. Example: `id,name,size,webUrl`": "Eine kommaseparierte Liste von Eigenschaften, die zurückgegeben werden sollen. Beispiel: `id,name,size,webUrl`",
|
|
90
|
+
"Specifies how to sort the returned items. Example: `name asc` or `lastModifiedDateTime desc`": "Gibt an, wie die zurückgegebenen Elemente sortiert werden sollen. Beispiel: `name asc` oder `lastModifiedDateTime desc`",
|
|
91
|
+
"A comma-separated list of properties to return. If left blank, all default properties are returned. Example: `id,displayName,webUrl,description`": "Eine kommaseparierte Liste von Eigenschaften, die zurückgegeben werden sollen. Wenn leer gelassen, werden alle Standardeinstellungen zurückgegeben. Beispiel: `id,displayName,webUrl,description`",
|
|
92
|
+
"Authorization headers are injected automatically from your connection.": "Autorisierungs-Header werden automatisch von Ihrer Verbindung injiziert.",
|
|
93
|
+
"Enable for files like PDFs, images, etc.": "Aktivieren für Dateien wie PDFs, Bilder usw.",
|
|
94
|
+
"Fail on conflict": "Fehler im Konflikt",
|
|
95
|
+
"Overwrite existing file": "Bestehende Datei überschreiben",
|
|
96
|
+
"Rename with a number": "Mit einer Zahl umbenennen",
|
|
97
|
+
"Find by Exact Path": "Suche nach exaktem Pfad",
|
|
98
|
+
"Search by Name": "Suche nach Name",
|
|
99
|
+
"GET": "ERHALTEN",
|
|
100
|
+
"POST": "POST",
|
|
101
|
+
"PATCH": "PATCH",
|
|
102
|
+
"PUT": "PUT",
|
|
103
|
+
"DELETE": "LÖSCHEN",
|
|
104
|
+
"HEAD": "HEAD",
|
|
105
|
+
"None": "Keine",
|
|
106
|
+
"JSON": "JSON",
|
|
107
|
+
"Form Data": "Formulardaten",
|
|
108
|
+
"Raw": "Rohe",
|
|
109
|
+
"New File in Folder": "Neue Datei im Ordner",
|
|
110
|
+
"New File in Subfolders": "Neue Datei in Unterordner",
|
|
111
|
+
"New or Updated File": "Neue oder aktualisierte Datei",
|
|
112
|
+
"New or Updated Folder": "Neuer oder aktualisierter Ordner",
|
|
113
|
+
"New List Item": "Neues Listenelement",
|
|
114
|
+
"Updated List Item": "Aktualisiertes Listenelement",
|
|
115
|
+
"New List": "Neue Liste",
|
|
116
|
+
"New or Updated List": "Neue oder aktualisierte Liste",
|
|
117
|
+
"Fires when a new file is created or added in a specific folder.": "Feuert ab, wenn eine neue Datei erstellt oder in einem bestimmten Ordner hinzugefügt wird.",
|
|
118
|
+
"Fires when a new file is added anywhere in the first-level subfolders of a folder. Note: This trigger will not monitor subfolders created after the flow is activated.": "Feuert ab, wenn eine neue Datei irgendwo in den Unterordnern eines Ordners auf der ersten Ebene hinzugefügt wird. Hinweis: Dieser Auslöser überwacht keine Unterordner die erstellt wurden, nachdem der Fluss aktiviert ist.",
|
|
119
|
+
"Triggers when a file is created or updated in a given folder.": "Wird ausgelöst, wenn eine Datei in einem bestimmten Ordner erstellt oder aktualisiert wird.",
|
|
120
|
+
"Triggers when a folder is created or updated (e.g., name change).": "Wird ausgelöst, wenn ein Ordner erstellt oder aktualisiert wird (z.B. Namensänderung).",
|
|
121
|
+
"Triggers when a new item is created in a SharePoint list.": "Wird ausgelöst, wenn ein neues Element in einer SharePoint-Liste erstellt wird.",
|
|
122
|
+
"Fires when an existing item in a SharePoint list is updated.": "Feuert ab, wenn ein vorhandenes Element in einer SharePoint-Liste aktualisiert wird.",
|
|
123
|
+
"Triggers when a new list is created in a site.": "Wird ausgelöst, wenn eine neue Liste in einer Site erstellt wird.",
|
|
124
|
+
"Triggers when a list is created or updated in a site.": "Wird ausgelöst, wenn eine Liste in einer Site erstellt oder aktualisiert wird.",
|
|
125
|
+
"Folder to Monitor": "Zu überwachender Ordner",
|
|
126
|
+
"Parent Folder to Monitor": "Übergeordneter Ordner zum Überwachen",
|
|
127
|
+
"The folder to watch for new files. Select \"Root Folder\" for the top-level folder of the drive.": "Der Ordner für neue Dateien. Wählen Sie \"Root Ordner\" für den obersten Ordner des Laufwerks.",
|
|
128
|
+
"The parent folder whose subfolders you want to monitor.": "Der übergeordnete Ordner, dessen Unterordner Sie überwachen möchten.",
|
|
129
|
+
"The folder to watch for new or updated files. Select \"Root Folder\" for the top-level folder of the drive.": "Der zu beobachtende Ordner für neue oder aktualisierte Dateien. Wählen Sie \"Root Ordner\" für den obersten Ordner des Laufwerks.",
|
|
130
|
+
"The folder to watch for new or updated subfolders. Select \"Root Folder\" to monitor the top-level of the drive.": "Der Ordner, der auf neue oder aktualisierte Unterordner zugreifen soll. Wählen Sie \"Root Ordner\", um die obere Ebene des Laufwerks zu überwachen."
|
|
131
|
+
}
|
package/src/i18n/es.json
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
{
|
|
2
|
+
"\n1. Sign in to [Microsoft Azure Portal](https://portal.azure.com/).\n2. From the left sidebar, go to **Microsoft Enfra ID**.\n3. Under **Manage**, click on **App registrations**.\n4. Click the **New registration** button.\n5. Enter a **Name** for your app.\n6. For **Supported account types**, choose:\n - **Accounts in any organizational directory (Any Microsoft Entra ID tenant - Multitenant) and personal Microsoft accounts**\n - Or select based on your requirement.\n7. In **Redirect URI**, select **Web** and ad": "\n1. Inicie sesión en [Microsoft Azure Portal](https://portal.azure.com/).\n. Desde la barra lateral izquierda, vaya a **Microsoft Enfra ID**. Rformat@@3 3. Bajo **Administrar**, haga clic en **registros de aplicación**.\n4. Haga clic en el botón **Nueva registro**.\n5. Introduce un **nombre** para tu aplicación.\n6. Para **Tipos de cuenta compatibles**, elegir:\n - **Cuentas en cualquier directorio organizacional (Cualquier cliente de Microsoft Entra ID - Multitenant) y cuentas personales de Microsoft**\n - O seleccione basándose en su requerimiento.\n7. En **Redirigir URI**, seleccione **Web** y añada la URL dada: {{redirectUrl}}\n8. Haga clic en **Registrar**.\n9. Después del registro, serás redirigido a la página de resumen de la aplicación. Copia el **ID de aplicación (cliente**.\n10. Desde el menú de la izquierda, vaya a **Certificados y secretos**.\n - Bajo **Secretos de cliente**, haga clic en **Nuevo secreto de cliente**.\n - Proporciona una descripción, establece un vencimiento y haz clic en **Añadir**.\n - Copia el **Valor** del secreto del cliente (no se mostrará de nuevo).\n11. Ve a **permisos de API** desde el menú de la izquierda.\n - Haga clic en **Agregar un permiso**.\n - Seleccione **Microsoft Graph**.\n - Agregue los siguientes **Permisos elegados**:\n - Sitios.Read. ll \n - Sites.ReadWrite.All\n - Sitios. anage.All\n - Files.ReadWrite. ll\n - openid\n - email\n - profile\n - offline_access\n - Click **Add permissions**.\n12. Copie su **ID de cliente** y su **Código de cliente**.\n",
|
|
3
|
+
"Create Folder": "Crear carpeta",
|
|
4
|
+
"Create List": "Crear Lista",
|
|
5
|
+
"Create List Item": "Crear elemento de lista",
|
|
6
|
+
"Update List Item": "Actualizar elemento de lista",
|
|
7
|
+
"Delete List Item": "Eliminar elemento de lista",
|
|
8
|
+
"Find List Item": "Buscar elemento de lista",
|
|
9
|
+
"Upload File": "Subir archivo",
|
|
10
|
+
"Publish Page": "Publicar página",
|
|
11
|
+
"Copy File or Folder (Across Sites)": "Copiar archivo o carpeta (a través de sitios)",
|
|
12
|
+
"Copy File or Folder (Within Site)": "Copiar archivo o carpeta (dentro del sitio)",
|
|
13
|
+
"Move File": "Mover archivo",
|
|
14
|
+
"Find File": "Buscar archivo",
|
|
15
|
+
"Get Folder Contents": "Obtener contenido de carpeta",
|
|
16
|
+
"Get Site Information": "Obtener información del sitio",
|
|
17
|
+
"Custom API Call": "Llamada API personalizada",
|
|
18
|
+
"Creates a new folder at path you specify.": "Crea una nueva carpeta en la ruta que especificas.",
|
|
19
|
+
"Creates a new list.": "Crea una lista nueva.",
|
|
20
|
+
"Creates a new item in a list.": "Crea un nuevo elemento en una lista.",
|
|
21
|
+
"Updates an existing item in a list.": "Actualiza un elemento existente en una lista.",
|
|
22
|
+
"Deletes an existing item from a list.": "Elimina un elemento existente de una lista.",
|
|
23
|
+
"Finds a item in a list based on name.": "Encuentra un elemento en una lista basado en el nombre.",
|
|
24
|
+
"Uploads a new file at path you specify.": "Sube un nuevo archivo en la ruta que especificas.",
|
|
25
|
+
"Publishes a SharePoint page, making it available to all users. If the page is checked out, it will be automatically checked in. Note: Pages with active approval flows will not publish until approval is complete.": "Publica una página de SharePoint, poniéndola a disposición de todos los usuarios. Si la página está retirada, se registrará automáticamente. Nota: Las páginas con flujos de aprobación activos no se publicarán hasta que se complete la aprobación.",
|
|
26
|
+
"Copy a file or folder from one site to another within the same tenant, with overwrite option.": "Copie un archivo o carpeta de un sitio a otro dentro del mismo arrendatario, con opción de sobrescribir.",
|
|
27
|
+
"Copy a file or folder to another folder within the same site.": "Copiar un archivo o carpeta a otra carpeta dentro del mismo sitio.",
|
|
28
|
+
"Move a file from one folder to another within the same drive.": "Mover un archivo de una carpeta a otra dentro de la misma unidad.",
|
|
29
|
+
"Look up a file by its name or path.": "Buscar un archivo por su nombre o ruta.",
|
|
30
|
+
"List all files and subfolders in a specified folder, optionally with detailed metadata.": "Listar todos los archivos y subcarpetas en una carpeta especificada, opcionalmente con metadatos detallados.",
|
|
31
|
+
"Fetch metadata of a SharePoint site (site ID, title, URL, description, etc.).": "Obtener metadatos de un sitio SharePoint (ID del sitio, título, URL, descripción, etc.).",
|
|
32
|
+
"Make a custom API call to a specific endpoint": "Hacer una llamada API personalizada a un extremo específico",
|
|
33
|
+
"Site": "Sitio",
|
|
34
|
+
"Drive": "Unidad",
|
|
35
|
+
"Parent Folder": "Carpeta padre",
|
|
36
|
+
"Folder Name": "Nombre de carpeta",
|
|
37
|
+
"List Name": "Nombre de lista",
|
|
38
|
+
"List Description": "Descripción de la lista",
|
|
39
|
+
"List": "Lista",
|
|
40
|
+
"List Columns": "Lista de columnas",
|
|
41
|
+
"List Item": "Ítem de lista",
|
|
42
|
+
"Title": "Título",
|
|
43
|
+
"File": "Archivo",
|
|
44
|
+
"File Name": "Nombre del archivo",
|
|
45
|
+
"Page": "Pgina",
|
|
46
|
+
"Source File or Folder": "Archivo o carpeta de origen",
|
|
47
|
+
"Destination Drive": "Unidad de destino",
|
|
48
|
+
"Destination Folder": "Carpeta de destino",
|
|
49
|
+
"New Name (Optional)": "Nuevo nombre (opcional)",
|
|
50
|
+
"Conflict Behavior": "Comportamiento del conflicto",
|
|
51
|
+
"File to Move": "Archivo a mover",
|
|
52
|
+
"Find Method": "Método de búsqueda",
|
|
53
|
+
"File Path": "Ruta del archivo",
|
|
54
|
+
"Search Query": "Buscar consulta",
|
|
55
|
+
"Folder to Search In (Optional)": "Carpeta a buscar en (opcional)",
|
|
56
|
+
"Folder": "Carpeta",
|
|
57
|
+
"Include Custom Metadata": "Incluye metadatos personalizados",
|
|
58
|
+
"Page Size": "Tamaño de página",
|
|
59
|
+
"Select Fields (Optional)": "Seleccionar campos (opcional)",
|
|
60
|
+
"Order By (Optional)": "Ordenar por (opcional)",
|
|
61
|
+
"Method": "Método",
|
|
62
|
+
"Headers": "Encabezados",
|
|
63
|
+
"Query Parameters": "Parámetros de consulta",
|
|
64
|
+
"Body Type": "Tipo de cuerpo",
|
|
65
|
+
"Body": "Cuerpo",
|
|
66
|
+
"Response is Binary ?": "¿Respuesta es binaria?",
|
|
67
|
+
"No Error on Failure": "No hay ningún error en fallo",
|
|
68
|
+
"Timeout (in seconds)": "Tiempo de espera (en segundos)",
|
|
69
|
+
"Follow redirects": "Seguir redirecciones",
|
|
70
|
+
"Parent folder,like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**/**) level.": "Carpeta padre, como \"/demo/\" o \"/docs/assignment/\".Déjalo por defecto si quieres crear una carpeta en el nivel raíz (**/**).",
|
|
71
|
+
"Item title to search": "Título del artículo a buscar",
|
|
72
|
+
"The file or url you want to upload": "El archivo o url que quieres subir",
|
|
73
|
+
"Parent folder, like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**CHANGE THIS BACK//**) level.": "Carpeta padre, como \"/demo/\" o \"/docs/assignment/\".Déjalo por defecto si quieres crear una carpeta en la raíz (**CHANGE ESTA BACK/**) nivel.",
|
|
74
|
+
"The folder to copy the item into. Defaults to the root of the drive.": "La carpeta en la que copiar el elemento. Por defecto es la raíz de la unidad.",
|
|
75
|
+
"A new name for the copied item. If not provided, the original name is used.": "Un nuevo nombre para el elemento copiado. Si no se proporciona, se utiliza el nombre original.",
|
|
76
|
+
"Action to take if a file with the same name already exists.": "Acción a tomar si ya existe un archivo con el mismo nombre.",
|
|
77
|
+
"The folder to copy the item into. Select \"Root\" to copy to the top level of the drive.": "La carpeta en la que copiar el elemento. Seleccione \"Raíz\" para copiar al nivel superior de la unidad.",
|
|
78
|
+
"Action to take if a file with the same name already exists in the destination.": "Acción a tomar si un archivo con el mismo nombre ya existe en el destino.",
|
|
79
|
+
"The file you want to move.": "El archivo que desea mover.",
|
|
80
|
+
"The folder to move the file into. Select \"Root\" to move to the top level of the drive.": "La carpeta a la que mover el archivo. Seleccione \"Raíz\" para moverse al nivel superior de la unidad.",
|
|
81
|
+
"Provide a new name to rename the file during the move.": "Proporcione un nuevo nombre para renombrar el archivo durante el movimiento.",
|
|
82
|
+
"Choose how to find the file.": "Elija cómo encontrar el archivo.",
|
|
83
|
+
"The exact path to the file from the drive's root. **Required if finding by path.** Example: `Documents/Reports/Q1-Report.docx`": "La ruta exacta al archivo de la raíz de la unidad. **Requerido si se encuentra por ruta.** Ejemplo: `Documents/Reports/Q1-Report.docx`",
|
|
84
|
+
"The file name or keyword to search for. **Required if searching by name.** Example: `Q1-Report.docx`": "El nombre del archivo o palabra clave a buscar. **Requerido si se busca por nombre.** Ejemplo: `Q1-Report.docx`",
|
|
85
|
+
"The folder to search within. If not specified, the entire drive will be searched. **Only applies when searching by name.**": "La carpeta en la que buscar dentro. Si no se especifica, toda la unidad se buscará. **Sólo se aplica al buscar por nombre.**",
|
|
86
|
+
"The folder whose contents you want to list. Select \"Root Folder\" for the top-level folder.": "La carpeta cuyo contenido desea enumerar. Seleccione \"Carpeta de root\" para la carpeta de nivel superior.",
|
|
87
|
+
"Check this to include SharePoint-specific metadata (custom columns). This may slow down the request.": "Marque esto para incluir metadatos específicos de SharePoint (columnas personalizadas). Esto puede ralentizar la solicitud.",
|
|
88
|
+
"The maximum number of items to return. The API default is 200. If more items exist, the output will contain a field `@odata.nextLink` that you can use in a custom API call to get the next page.": "El número máximo de elementos a retornar. El valor predeterminado de la API es 200. Si existen más elementos, la salida contendrá un campo `@odata. extLink` que puedes usar en una llamada API personalizada para obtener la siguiente página.",
|
|
89
|
+
"A comma-separated list of properties to return. Example: `id,name,size,webUrl`": "Una lista separada por comas de propiedades a regresar. Ejemplo: `id,name,size,webUrl`",
|
|
90
|
+
"Specifies how to sort the returned items. Example: `name asc` or `lastModifiedDateTime desc`": "Especifica cómo ordenar los elementos devueltos. Ejemplo: `name asc` o `lastModifiedDateTime desc`",
|
|
91
|
+
"A comma-separated list of properties to return. If left blank, all default properties are returned. Example: `id,displayName,webUrl,description`": "Una lista separada por comas de propiedades a regresar. Si se deja en blanco, todas las propiedades por defecto son devueltas. Ejemplo: `id,displayName,webUrl,description`",
|
|
92
|
+
"Authorization headers are injected automatically from your connection.": "Las cabeceras de autorización se inyectan automáticamente desde tu conexión.",
|
|
93
|
+
"Enable for files like PDFs, images, etc.": "Activar para archivos como PDFs, imágenes, etc.",
|
|
94
|
+
"Fail on conflict": "Fallo en conflicto",
|
|
95
|
+
"Overwrite existing file": "Sobrescribir archivo existente",
|
|
96
|
+
"Rename with a number": "Renombrar con un número",
|
|
97
|
+
"Find by Exact Path": "Buscar por ruta exacta",
|
|
98
|
+
"Search by Name": "Buscar por nombre",
|
|
99
|
+
"GET": "RECOGER",
|
|
100
|
+
"POST": "POST",
|
|
101
|
+
"PATCH": "PATCH",
|
|
102
|
+
"PUT": "PUT",
|
|
103
|
+
"DELETE": "BORRAR",
|
|
104
|
+
"HEAD": "LIMPIO",
|
|
105
|
+
"None": "Ninguna",
|
|
106
|
+
"JSON": "JSON",
|
|
107
|
+
"Form Data": "Datos de Formulario",
|
|
108
|
+
"Raw": "Rápido",
|
|
109
|
+
"New File in Folder": "Nuevo archivo en carpeta",
|
|
110
|
+
"New File in Subfolders": "Nuevo archivo en subcarpetas",
|
|
111
|
+
"New or Updated File": "Archivo nuevo o actualizado",
|
|
112
|
+
"New or Updated Folder": "Carpeta nueva o actualizada",
|
|
113
|
+
"New List Item": "Nuevo elemento de lista",
|
|
114
|
+
"Updated List Item": "Elemento de lista actualizado",
|
|
115
|
+
"New List": "Nueva lista",
|
|
116
|
+
"New or Updated List": "Lista nueva o actualizada",
|
|
117
|
+
"Fires when a new file is created or added in a specific folder.": "Se activa cuando un nuevo archivo es creado o añadido en una carpeta específica.",
|
|
118
|
+
"Fires when a new file is added anywhere in the first-level subfolders of a folder. Note: This trigger will not monitor subfolders created after the flow is activated.": "Se activa cuando se añade un nuevo archivo en cualquier lugar de las subcarpetas de primer nivel de una carpeta. Nota: Este disparador no supervisará las subcarpetas creadas después de que el flujo esté activado.",
|
|
119
|
+
"Triggers when a file is created or updated in a given folder.": "Se activa cuando un archivo es creado o actualizado en una carpeta determinada.",
|
|
120
|
+
"Triggers when a folder is created or updated (e.g., name change).": "Se activa cuando se crea o actualiza una carpeta (por ejemplo, cambiar de nombre).",
|
|
121
|
+
"Triggers when a new item is created in a SharePoint list.": "Se activa cuando se crea un nuevo elemento en una lista de SharePoint.",
|
|
122
|
+
"Fires when an existing item in a SharePoint list is updated.": "Dispara cuando se actualiza un elemento existente en una lista de SharePoint.",
|
|
123
|
+
"Triggers when a new list is created in a site.": "Dispara cuando se crea una nueva lista en un sitio.",
|
|
124
|
+
"Triggers when a list is created or updated in a site.": "Dispara cuando una lista es creada o actualizada en un sitio.",
|
|
125
|
+
"Folder to Monitor": "Carpeta para el seguidor",
|
|
126
|
+
"Parent Folder to Monitor": "Carpeta padre para el seguimiento",
|
|
127
|
+
"The folder to watch for new files. Select \"Root Folder\" for the top-level folder of the drive.": "La carpeta para ver los nuevos archivos. Seleccione \"Carpeta de root\" para la carpeta de nivel superior de la unidad.",
|
|
128
|
+
"The parent folder whose subfolders you want to monitor.": "La carpeta padre cuyas subcarpetas desea monitor.",
|
|
129
|
+
"The folder to watch for new or updated files. Select \"Root Folder\" for the top-level folder of the drive.": "La carpeta a ver para archivos nuevos o actualizados. Seleccione \"Carpeta de root\" para la carpeta de nivel superior de la unidad.",
|
|
130
|
+
"The folder to watch for new or updated subfolders. Select \"Root Folder\" to monitor the top-level of the drive.": "La carpeta a ver para subcarpetas nuevas o actualizadas. Seleccione \"Carpeta raíz\" para supervisar el nivel superior de la unidad."
|
|
131
|
+
}
|
package/src/i18n/fr.json
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
{
|
|
2
|
+
"\n1. Sign in to [Microsoft Azure Portal](https://portal.azure.com/).\n2. From the left sidebar, go to **Microsoft Enfra ID**.\n3. Under **Manage**, click on **App registrations**.\n4. Click the **New registration** button.\n5. Enter a **Name** for your app.\n6. For **Supported account types**, choose:\n - **Accounts in any organizational directory (Any Microsoft Entra ID tenant - Multitenant) and personal Microsoft accounts**\n - Or select based on your requirement.\n7. In **Redirect URI**, select **Web** and ad": "\n1. Sign in to [Microsoft Azure Portal](https://portal.azure.com/).\n2. From the left sidebar, go to **Microsoft Enfra ID**.\n3. Under **Manage**, click on **App registrations**.\n4. Click the **New registration** button.\n5. Enter a **Name** for your app.\n6. For **Supported account types**, choose:\n - **Accounts in any organizational directory (Any Microsoft Entra ID tenant - Multitenant) and personal Microsoft accounts**\n - Or select based on your requirement.\n7. In **Redirect URI**, select **Web** and add the given URL: {{redirectUrl}}\n8. Click **Register**.\n9. After registration, you’ll be redirected to the app’s overview page. Copy the **Application (client) ID**.\n10. From the left menu, go to **Certificates & secrets**.\n - Under **Client secrets**, click **New client secret**.\n - Provide a description, set an expiry, and click **Add**.\n - Copy the **Value** of the client secret (this will not be shown again).\n11. Go to **API permissions** from the left menu.\n - Click **Add a permission**.\n - Select **Microsoft Graph**.\n - Add the following **Delegated permissions**:\n - Sites.Read.All\n - Sites.ReadWrite.All\n - Sites.Manage.All\n - Files.ReadWrite.All\n - openid\n - email\n - profile\n - offline_access\n - Click **Add permissions**.\n12. Copy your **Client ID** and **Client Secret**.\n",
|
|
3
|
+
"Create Folder": "Créer un dossier",
|
|
4
|
+
"Create List": "Créer une liste",
|
|
5
|
+
"Create List Item": "Créer un élément de liste",
|
|
6
|
+
"Update List Item": "Mettre à jour l'élément de la liste",
|
|
7
|
+
"Delete List Item": "Supprimer l'élément de la liste",
|
|
8
|
+
"Find List Item": "Rechercher un élément de la liste",
|
|
9
|
+
"Upload File": "Charger un fichier",
|
|
10
|
+
"Publish Page": "Publier la page",
|
|
11
|
+
"Copy File or Folder (Across Sites)": "Copier un fichier ou un dossier (traverser des espaces)",
|
|
12
|
+
"Copy File or Folder (Within Site)": "Copier un fichier ou un dossier (au sein du site)",
|
|
13
|
+
"Move File": "Déplacer le fichier",
|
|
14
|
+
"Find File": "Rechercher un fichier",
|
|
15
|
+
"Get Folder Contents": "Récupérer le contenu du dossier",
|
|
16
|
+
"Get Site Information": "Obtenir les informations du site",
|
|
17
|
+
"Custom API Call": "Appel API personnalisé",
|
|
18
|
+
"Creates a new folder at path you specify.": "Crée un nouveau dossier au chemin que vous spécifiez.",
|
|
19
|
+
"Creates a new list.": "Crée une nouvelle liste.",
|
|
20
|
+
"Creates a new item in a list.": "Crée un nouvel élément dans une liste.",
|
|
21
|
+
"Updates an existing item in a list.": "Met à jour un élément existant dans une liste.",
|
|
22
|
+
"Deletes an existing item from a list.": "Supprime un élément existant d'une liste.",
|
|
23
|
+
"Finds a item in a list based on name.": "Trouve un élément dans une liste basée sur son nom.",
|
|
24
|
+
"Uploads a new file at path you specify.": "Téléverse un nouveau fichier au chemin que vous spécifiez.",
|
|
25
|
+
"Publishes a SharePoint page, making it available to all users. If the page is checked out, it will be automatically checked in. Note: Pages with active approval flows will not publish until approval is complete.": "Publie une page SharePoint, la rendant disponible à tous les utilisateurs. Si la page est extraite, elle sera automatiquement enregistrée. Remarque : Les pages avec des flux d’approbation actifs ne seront pas publiées tant que l’approbation n’est pas terminée.",
|
|
26
|
+
"Copy a file or folder from one site to another within the same tenant, with overwrite option.": "Copiez un fichier ou un dossier d'un site à un autre dans le même locataire, avec l'option d'écrasement.",
|
|
27
|
+
"Copy a file or folder to another folder within the same site.": "Copiez un fichier ou un dossier dans un autre dossier du même site.",
|
|
28
|
+
"Move a file from one folder to another within the same drive.": "Déplacer un fichier d'un dossier vers un autre dans le même lecteur.",
|
|
29
|
+
"Look up a file by its name or path.": "Rechercher un fichier par son nom ou son chemin.",
|
|
30
|
+
"List all files and subfolders in a specified folder, optionally with detailed metadata.": "Lister tous les fichiers et sous-dossiers dans un dossier spécifié, éventuellement avec des métadonnées détaillées.",
|
|
31
|
+
"Fetch metadata of a SharePoint site (site ID, title, URL, description, etc.).": "Récupérer les métadonnées d'un site SharePoint (ID du site, titre, URL, description, etc.).",
|
|
32
|
+
"Make a custom API call to a specific endpoint": "Passez un appel API personnalisé à un point de terminaison spécifique",
|
|
33
|
+
"Site": "Site",
|
|
34
|
+
"Drive": "Lecteur",
|
|
35
|
+
"Parent Folder": "Dossier parent",
|
|
36
|
+
"Folder Name": "Folder Name",
|
|
37
|
+
"List Name": "Nom de la liste",
|
|
38
|
+
"List Description": "Description de la liste",
|
|
39
|
+
"List": "Liste",
|
|
40
|
+
"List Columns": "Liste des colonnes",
|
|
41
|
+
"List Item": "Élément de la liste",
|
|
42
|
+
"Title": "Titre de la page",
|
|
43
|
+
"File": "Ficher",
|
|
44
|
+
"File Name": "Nom du fichier",
|
|
45
|
+
"Page": "Page",
|
|
46
|
+
"Source File or Folder": "Fichier ou dossier source",
|
|
47
|
+
"Destination Drive": "Disque de destination",
|
|
48
|
+
"Destination Folder": "Dossier de destination",
|
|
49
|
+
"New Name (Optional)": "Nouveau nom (facultatif)",
|
|
50
|
+
"Conflict Behavior": "Comportement de conflit",
|
|
51
|
+
"File to Move": "Fichier à déplacer",
|
|
52
|
+
"Find Method": "Méthode de recherche",
|
|
53
|
+
"File Path": "Chemin du fichier",
|
|
54
|
+
"Search Query": "Requête de recherche",
|
|
55
|
+
"Folder to Search In (Optional)": "Dossier à rechercher (facultatif)",
|
|
56
|
+
"Folder": "Dossier",
|
|
57
|
+
"Include Custom Metadata": "Inclure les métadonnées personnalisées",
|
|
58
|
+
"Page Size": "Nombre d'élément",
|
|
59
|
+
"Select Fields (Optional)": "Sélectionner les champs (facultatif)",
|
|
60
|
+
"Order By (Optional)": "Commander par (facultatif)",
|
|
61
|
+
"Method": "Méthode",
|
|
62
|
+
"Headers": "En-têtes",
|
|
63
|
+
"Query Parameters": "Paramètres de requête",
|
|
64
|
+
"Body Type": "Body Type",
|
|
65
|
+
"Body": "Corps",
|
|
66
|
+
"Response is Binary ?": "La réponse est Binaire ?",
|
|
67
|
+
"No Error on Failure": "Aucune erreur en cas d'échec",
|
|
68
|
+
"Timeout (in seconds)": "Délai d'attente (en secondes)",
|
|
69
|
+
"Follow redirects": "Suivre les redirections",
|
|
70
|
+
"Parent folder,like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**/**) level.": "Dossier parent, comme \"/demo/\" ou \"/docs/assignment/\".Laissez le dossier par défaut si vous voulez créer un dossier à la racine (**/**).",
|
|
71
|
+
"Item title to search": "Titre de l'élément à rechercher",
|
|
72
|
+
"The file or url you want to upload": "Le fichier ou l'url que vous voulez télécharger",
|
|
73
|
+
"Parent folder, like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**CHANGE THIS BACK//**) level.": "Répertoire parent, comme \"/demo/\" ou \"/docs/assignment/\".Laissez le dossier par défaut si vous voulez créer un dossier à la racine (**CHANGER CE BACK//**).",
|
|
74
|
+
"The folder to copy the item into. Defaults to the root of the drive.": "Le dossier dans lequel copier l'élément. Par défaut, la racine du lecteur.",
|
|
75
|
+
"A new name for the copied item. If not provided, the original name is used.": "Un nouveau nom pour l'élément copié. Si non fourni, le nom original est utilisé.",
|
|
76
|
+
"Action to take if a file with the same name already exists.": "Action à prendre si un fichier avec le même nom existe déjà.",
|
|
77
|
+
"The folder to copy the item into. Select \"Root\" to copy to the top level of the drive.": "Le dossier dans lequel copier l'élément. Sélectionnez \"Racine\" à copier au niveau supérieur du lecteur.",
|
|
78
|
+
"Action to take if a file with the same name already exists in the destination.": "Action à prendre si un fichier portant le même nom existe déjà dans la destination.",
|
|
79
|
+
"The file you want to move.": "Le fichier que vous voulez déplacer.",
|
|
80
|
+
"The folder to move the file into. Select \"Root\" to move to the top level of the drive.": "Le dossier dans lequel déplacer le fichier. Sélectionnez \"Racine\" pour passer au niveau supérieur du lecteur.",
|
|
81
|
+
"Provide a new name to rename the file during the move.": "Fournissez un nouveau nom pour renommer le fichier pendant le déplacement.",
|
|
82
|
+
"Choose how to find the file.": "Choisissez comment trouver le fichier.",
|
|
83
|
+
"The exact path to the file from the drive's root. **Required if finding by path.** Example: `Documents/Reports/Q1-Report.docx`": "Le chemin exact vers le fichier depuis la racine du lecteur. **Requis si trouvé par le chemin.** Exemple: `Documents/Reports/Q1-Report.docx`",
|
|
84
|
+
"The file name or keyword to search for. **Required if searching by name.** Example: `Q1-Report.docx`": "Le nom du fichier ou mot clé à rechercher. **Requis si recherche par nom.** Exemple: `Q1-Report.docx`",
|
|
85
|
+
"The folder to search within. If not specified, the entire drive will be searched. **Only applies when searching by name.**": "Le dossier à rechercher à l'intérieur. S'il n'est pas spécifié, le lecteur entier sera recherché. **Ne s'applique que lorsque la recherche par nom.**",
|
|
86
|
+
"The folder whose contents you want to list. Select \"Root Folder\" for the top-level folder.": "Le dossier dont le contenu est à afficher. Sélectionnez \"Racine du dossier\" pour le dossier de premier niveau.",
|
|
87
|
+
"Check this to include SharePoint-specific metadata (custom columns). This may slow down the request.": "Cochez cette case pour inclure les métadonnées spécifiques à SharePoint (colonnes personnalisées). Cela peut ralentir la requête.",
|
|
88
|
+
"The maximum number of items to return. The API default is 200. If more items exist, the output will contain a field `@odata.nextLink` that you can use in a custom API call to get the next page.": "Le nombre maximum d'éléments à renvoyer. La valeur par défaut de l'API est de 200. Si plus d'éléments existent, la sortie contiendra un champ `@odata. extLink` que vous pouvez utiliser dans un appel d'API personnalisé pour obtenir la page suivante.",
|
|
89
|
+
"A comma-separated list of properties to return. Example: `id,name,size,webUrl`": "Une liste de propriétés séparées par des virgules. Exemple: `id,name,size,webUrl`",
|
|
90
|
+
"Specifies how to sort the returned items. Example: `name asc` or `lastModifiedDateTime desc`": "Spécifie comment trier les éléments retournés. Exemple: `name asc` ou `lastModifiedDateTime desc`",
|
|
91
|
+
"A comma-separated list of properties to return. If left blank, all default properties are returned. Example: `id,displayName,webUrl,description`": "Une liste de propriétés à retourner séparées par des virgules. Si laissé vide, toutes les propriétés par défaut sont retournées. Exemple: `id,displayName,webUrl,description`",
|
|
92
|
+
"Authorization headers are injected automatically from your connection.": "Les en-têtes d'autorisation sont injectés automatiquement à partir de votre connexion.",
|
|
93
|
+
"Enable for files like PDFs, images, etc.": "Activer pour les fichiers comme les PDFs, les images, etc.",
|
|
94
|
+
"Fail on conflict": "Échec du conflit",
|
|
95
|
+
"Overwrite existing file": "Écraser le fichier existant",
|
|
96
|
+
"Rename with a number": "Renommer avec un nombre",
|
|
97
|
+
"Find by Exact Path": "Trouver par chemin exact",
|
|
98
|
+
"Search by Name": "Rechercher par nom",
|
|
99
|
+
"GET": "OBTENIR",
|
|
100
|
+
"POST": "POSTER",
|
|
101
|
+
"PATCH": "PATCH",
|
|
102
|
+
"PUT": "EFFACER",
|
|
103
|
+
"DELETE": "SUPPRIMER",
|
|
104
|
+
"HEAD": "HEAD",
|
|
105
|
+
"None": "Aucun",
|
|
106
|
+
"JSON": "JSON",
|
|
107
|
+
"Form Data": "Données du formulaire",
|
|
108
|
+
"Raw": "Brut",
|
|
109
|
+
"New File in Folder": "Nouveau fichier dans le dossier",
|
|
110
|
+
"New File in Subfolders": "Nouveau fichier dans les sous-dossiers",
|
|
111
|
+
"New or Updated File": "Fichier nouveau ou mis à jour",
|
|
112
|
+
"New or Updated Folder": "Nouveau ou mis à jour le dossier",
|
|
113
|
+
"New List Item": "Nouvel élément de la liste",
|
|
114
|
+
"Updated List Item": "Élément de liste mis à jour",
|
|
115
|
+
"New List": "Nouvelle liste",
|
|
116
|
+
"New or Updated List": "Liste nouvelle ou mise à jour",
|
|
117
|
+
"Fires when a new file is created or added in a specific folder.": "Se déclenche lorsqu'un nouveau fichier est créé ou ajouté dans un dossier spécifique.",
|
|
118
|
+
"Fires when a new file is added anywhere in the first-level subfolders of a folder. Note: This trigger will not monitor subfolders created after the flow is activated.": "Se déclenche lorsqu'un nouveau fichier est ajouté n'importe où dans les sous-dossiers de premier niveau d'un dossier. Note: Ce déclencheur ne surveillera pas les sous-dossiers créés après l'activation du flux.",
|
|
119
|
+
"Triggers when a file is created or updated in a given folder.": "Déclenche lorsqu'un fichier est créé ou mis à jour dans un dossier donné.",
|
|
120
|
+
"Triggers when a folder is created or updated (e.g., name change).": "Déclenche lorsqu'un dossier est créé ou mis à jour (ex. : changement de nom).",
|
|
121
|
+
"Triggers when a new item is created in a SharePoint list.": "Déclenche lorsqu'un nouvel élément est créé dans une liste SharePoint.",
|
|
122
|
+
"Fires when an existing item in a SharePoint list is updated.": "Déclenche lorsqu'un élément existant dans une liste SharePoint est mis à jour.",
|
|
123
|
+
"Triggers when a new list is created in a site.": "Déclenche quand une nouvelle liste est créée dans un espace.",
|
|
124
|
+
"Triggers when a list is created or updated in a site.": "Déclenche quand une liste est créée ou mise à jour dans un site.",
|
|
125
|
+
"Folder to Monitor": "Dossier à surveiller",
|
|
126
|
+
"Parent Folder to Monitor": "Dossier parent à surveiller",
|
|
127
|
+
"The folder to watch for new files. Select \"Root Folder\" for the top-level folder of the drive.": "Le dossier à surveiller pour les nouveaux fichiers. Sélectionnez \"Racine du dossier\" pour le dossier supérieur du lecteur.",
|
|
128
|
+
"The parent folder whose subfolders you want to monitor.": "Le dossier parent dont vous voulez surveiller les sous-dossiers.",
|
|
129
|
+
"The folder to watch for new or updated files. Select \"Root Folder\" for the top-level folder of the drive.": "Le dossier à surveiller pour les fichiers nouveaux ou mis à jour. Sélectionnez \"Racine\" pour le dossier supérieur du lecteur.",
|
|
130
|
+
"The folder to watch for new or updated subfolders. Select \"Root Folder\" to monitor the top-level of the drive.": "Le dossier à surveiller pour les sous-dossiers nouveaux ou mis à jour. Sélectionnez \"Dossier racine\" pour surveiller le niveau supérieur du lecteur."
|
|
131
|
+
}
|
package/src/i18n/ja.json
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
{
|
|
2
|
+
"\n1. Sign in to [Microsoft Azure Portal](https://portal.azure.com/).\n2. From the left sidebar, go to **Microsoft Enfra ID**.\n3. Under **Manage**, click on **App registrations**.\n4. Click the **New registration** button.\n5. Enter a **Name** for your app.\n6. For **Supported account types**, choose:\n - **Accounts in any organizational directory (Any Microsoft Entra ID tenant - Multitenant) and personal Microsoft accounts**\n - Or select based on your requirement.\n7. In **Redirect URI**, select **Web** and ad": "\n1. Sign in to [Microsoft Azure Portal](https://portal.azure.com/).\n2. From the left sidebar, go to **Microsoft Enfra ID**.\n3. Under **Manage**, click on **App registrations**.\n4. Click the **New registration** button.\n5. Enter a **Name** for your app.\n6. For **Supported account types**, choose:\n - **Accounts in any organizational directory (Any Microsoft Entra ID tenant - Multitenant) and personal Microsoft accounts**\n - Or select based on your requirement.\n7. In **Redirect URI**, select **Web** and add the given URL: {{redirectUrl}}\n8. Click **Register**.\n9. After registration, you’ll be redirected to the app’s overview page. Copy the **Application (client) ID**.\n10. From the left menu, go to **Certificates & secrets**.\n - Under **Client secrets**, click **New client secret**.\n - Provide a description, set an expiry, and click **Add**.\n - Copy the **Value** of the client secret (this will not be shown again).\n11. Go to **API permissions** from the left menu.\n - Click **Add a permission**.\n - Select **Microsoft Graph**.\n - Add the following **Delegated permissions**:\n - Sites.Read.All\n - Sites.ReadWrite.All\n - Sites.Manage.All\n - Files.ReadWrite.All\n - openid\n - email\n - profile\n - offline_access\n - Click **Add permissions**.\n12. Copy your **Client ID** and **Client Secret**.\n",
|
|
3
|
+
"Create Folder": "フォルダを作成",
|
|
4
|
+
"Create List": "リストを作成",
|
|
5
|
+
"Create List Item": "リストアイテムを作成",
|
|
6
|
+
"Update List Item": "リスト項目を更新",
|
|
7
|
+
"Delete List Item": "リスト項目を削除",
|
|
8
|
+
"Find List Item": "検索リスト アイテム",
|
|
9
|
+
"Upload File": "ファイルをアップロード",
|
|
10
|
+
"Publish Page": "ページを公開",
|
|
11
|
+
"Copy File or Folder (Across Sites)": "ファイルまたはフォルダ(サイト間で)をコピー",
|
|
12
|
+
"Copy File or Folder (Within Site)": "ファイルまたはフォルダ(サイト内) をコピー",
|
|
13
|
+
"Move File": "ファイルを移動",
|
|
14
|
+
"Find File": "ファイルを検索",
|
|
15
|
+
"Get Folder Contents": "フォルダの内容を取得する",
|
|
16
|
+
"Get Site Information": "サイト情報を取得する",
|
|
17
|
+
"Custom API Call": "カスタムAPI呼び出し",
|
|
18
|
+
"Creates a new folder at path you specify.": "指定したパスに新しいフォルダを作成します。",
|
|
19
|
+
"Creates a new list.": "新しいリストを作成します。",
|
|
20
|
+
"Creates a new item in a list.": "リスト内に新しいアイテムを作成します。",
|
|
21
|
+
"Updates an existing item in a list.": "リスト内の既存の項目を更新します。",
|
|
22
|
+
"Deletes an existing item from a list.": "リストから既存の項目を削除します。",
|
|
23
|
+
"Finds a item in a list based on name.": "名前に基づいてリスト内の項目を検索します。",
|
|
24
|
+
"Uploads a new file at path you specify.": "指定したパスに新しいファイルをアップロードします。",
|
|
25
|
+
"Publishes a SharePoint page, making it available to all users. If the page is checked out, it will be automatically checked in. Note: Pages with active approval flows will not publish until approval is complete.": "SharePointページを公開し、すべてのユーザーが利用できるようにします。ページがチェックアウトされている場合は、自動的にチェックインされます。 注意: 承認が完了するまで、アクティブな承認フローを持つページは公開されません。",
|
|
26
|
+
"Copy a file or folder from one site to another within the same tenant, with overwrite option.": "上書きオプションを使用して、同じテナント内のあるサイトから別のサイトにファイルまたはフォルダをコピーします。",
|
|
27
|
+
"Copy a file or folder to another folder within the same site.": "同じサイト内の別のフォルダにファイルまたはフォルダをコピーします。",
|
|
28
|
+
"Move a file from one folder to another within the same drive.": "同じドライブ内のフォルダから別のフォルダにファイルを移動します。",
|
|
29
|
+
"Look up a file by its name or path.": "名前またはパスでファイルを検索します。",
|
|
30
|
+
"List all files and subfolders in a specified folder, optionally with detailed metadata.": "必要に応じて、指定したフォルダ内のすべてのファイルとサブフォルダを詳細なメタデータで一覧表示します。",
|
|
31
|
+
"Fetch metadata of a SharePoint site (site ID, title, URL, description, etc.).": "SharePointサイト(サイトID、タイトル、URL、説明など)のメタデータを取得します。",
|
|
32
|
+
"Make a custom API call to a specific endpoint": "特定のエンドポイントへのカスタム API コールを実行します。",
|
|
33
|
+
"Site": "サイト",
|
|
34
|
+
"Drive": "ドライブ",
|
|
35
|
+
"Parent Folder": "親フォルダ",
|
|
36
|
+
"Folder Name": "フォルダ名",
|
|
37
|
+
"List Name": "リスト名",
|
|
38
|
+
"List Description": "リストの説明",
|
|
39
|
+
"List": "リスト",
|
|
40
|
+
"List Columns": "列の一覧",
|
|
41
|
+
"List Item": "リストアイテム",
|
|
42
|
+
"Title": "タイトル",
|
|
43
|
+
"File": "ファイル",
|
|
44
|
+
"File Name": "ファイル名",
|
|
45
|
+
"Page": "ページ",
|
|
46
|
+
"Source File or Folder": "ソースファイルまたはフォルダ",
|
|
47
|
+
"Destination Drive": "宛先ドライブ",
|
|
48
|
+
"Destination Folder": "宛先フォルダ",
|
|
49
|
+
"New Name (Optional)": "新しい名前(任意)",
|
|
50
|
+
"Conflict Behavior": "競合の動作",
|
|
51
|
+
"File to Move": "移動するファイル",
|
|
52
|
+
"Find Method": "メソッドを検索",
|
|
53
|
+
"File Path": "ファイルパス",
|
|
54
|
+
"Search Query": "検索クエリ",
|
|
55
|
+
"Folder to Search In (Optional)": "検索するフォルダ (オプション)",
|
|
56
|
+
"Folder": "Folder",
|
|
57
|
+
"Include Custom Metadata": "カスタムメタデータを含める",
|
|
58
|
+
"Page Size": "ページサイズ",
|
|
59
|
+
"Select Fields (Optional)": "項目の選択(オプション)",
|
|
60
|
+
"Order By (Optional)": "注文順 (オプション)",
|
|
61
|
+
"Method": "方法",
|
|
62
|
+
"Headers": "ヘッダー",
|
|
63
|
+
"Query Parameters": "クエリパラメータ",
|
|
64
|
+
"Body Type": "ボディタイプ",
|
|
65
|
+
"Body": "本文",
|
|
66
|
+
"Response is Binary ?": "応答はバイナリですか?",
|
|
67
|
+
"No Error on Failure": "失敗時にエラーはありません",
|
|
68
|
+
"Timeout (in seconds)": "タイムアウト(秒)",
|
|
69
|
+
"Follow redirects": "リダイレクトをフォローする",
|
|
70
|
+
"Parent folder,like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**/**) level.": "親フォルダは、「/demo/」または「/docs/assignment/」のように、ルート(**/**)レベルにフォルダを作成する場合は、デフォルトのままにしておいてください。",
|
|
71
|
+
"Item title to search": "検索するアイテムタイトル",
|
|
72
|
+
"The file or url you want to upload": "アップロードしたいファイルまたはURL",
|
|
73
|
+
"Parent folder, like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**CHANGE THIS BACK//**) level.": "親フォルダ(「/demo/」または「/docs/assignment/」)。ルートにフォルダを作成したい場合はデフォルトのままにしておきます(**この背景を変更//**)。",
|
|
74
|
+
"The folder to copy the item into. Defaults to the root of the drive.": "アイテムをコピーするフォルダ。デフォルトはドライブのルートです。",
|
|
75
|
+
"A new name for the copied item. If not provided, the original name is used.": "コピーされたアイテムの新しい名前。指定されていない場合は、元の名前が使用されます。",
|
|
76
|
+
"Action to take if a file with the same name already exists.": "同じ名前のファイルがすでに存在する場合に処理します。",
|
|
77
|
+
"The folder to copy the item into. Select \"Root\" to copy to the top level of the drive.": "アイテムをコピーするフォルダ。「ルート」を選択すると、ドライブのトップレベルにコピーします。",
|
|
78
|
+
"Action to take if a file with the same name already exists in the destination.": "同じ名前のファイルが既に宛先に存在する場合に取るアクション。",
|
|
79
|
+
"The file you want to move.": "移動したいファイル。",
|
|
80
|
+
"The folder to move the file into. Select \"Root\" to move to the top level of the drive.": "ファイルを移動するフォルダ。「ルート」を選択すると、ドライブのトップレベルに移動します。",
|
|
81
|
+
"Provide a new name to rename the file during the move.": "移動中にファイルの名前を変更する新しい名前を指定します。",
|
|
82
|
+
"Choose how to find the file.": "ファイルの検索方法を選択します。",
|
|
83
|
+
"The exact path to the file from the drive's root. **Required if finding by path.** Example: `Documents/Reports/Q1-Report.docx`": "ドライブのルートからファイルへの正確なパス。**パスで見つける場合は必要です。** 例: `Documents/Reports/Q1-Report.docx`",
|
|
84
|
+
"The file name or keyword to search for. **Required if searching by name.** Example: `Q1-Report.docx`": "検索するファイル名またはキーワード。**名前で検索する場合は必須** 例: `Q1-Report.docx`",
|
|
85
|
+
"The folder to search within. If not specified, the entire drive will be searched. **Only applies when searching by name.**": "内で検索するフォルダ。指定しない場合、ドライブ全体が検索されます。**名前で検索する場合にのみ適用されます。**",
|
|
86
|
+
"The folder whose contents you want to list. Select \"Root Folder\" for the top-level folder.": "一覧表示するフォルダ。最上位フォルダの場合は「ルートフォルダ」を選択します。",
|
|
87
|
+
"Check this to include SharePoint-specific metadata (custom columns). This may slow down the request.": "これにSharePoint固有のメタデータ (カスタム列) を含める場合チェックします。これはリクエストを遅くする可能性があります。",
|
|
88
|
+
"The maximum number of items to return. The API default is 200. If more items exist, the output will contain a field `@odata.nextLink` that you can use in a custom API call to get the next page.": "The maximum number of items to return. The API default is 200. If more items exists, the output will contain a field `@odata. カスタムAPI呼び出しで次のページを取得するために使用できるextLink。",
|
|
89
|
+
"A comma-separated list of properties to return. Example: `id,name,size,webUrl`": "返すプロパティのカンマ区切りのリスト。例: `id,name,size,webUrl`",
|
|
90
|
+
"Specifies how to sort the returned items. Example: `name asc` or `lastModifiedDateTime desc`": "返されるアイテムの並べ替え方法を指定します。例: `name asc` または `lastModifiedDateTime desc`",
|
|
91
|
+
"A comma-separated list of properties to return. If left blank, all default properties are returned. Example: `id,displayName,webUrl,description`": "返すプロパティのカンマ区切りのリスト。空白の場合は、すべてのデフォルトのプロパティが返されます。例: `id,displayName,webUrl,description`",
|
|
92
|
+
"Authorization headers are injected automatically from your connection.": "認証ヘッダは接続から自動的に注入されます。",
|
|
93
|
+
"Enable for files like PDFs, images, etc.": "PDF、画像などのファイルを有効にする",
|
|
94
|
+
"Fail on conflict": "競合に失敗しました",
|
|
95
|
+
"Overwrite existing file": "既存のファイルを上書き",
|
|
96
|
+
"Rename with a number": "数字で名前を変更",
|
|
97
|
+
"Find by Exact Path": "正確なパスで検索",
|
|
98
|
+
"Search by Name": "名前で検索",
|
|
99
|
+
"GET": "GET",
|
|
100
|
+
"POST": "POST",
|
|
101
|
+
"PATCH": "PATCH",
|
|
102
|
+
"PUT": "PUT",
|
|
103
|
+
"DELETE": "DELETE",
|
|
104
|
+
"HEAD": "HEAD",
|
|
105
|
+
"None": "なし",
|
|
106
|
+
"JSON": "JSON",
|
|
107
|
+
"Form Data": "フォームデータ",
|
|
108
|
+
"Raw": "Raw",
|
|
109
|
+
"New File in Folder": "フォルダ内の新規ファイル",
|
|
110
|
+
"New File in Subfolders": "サブフォルダ内の新規ファイル",
|
|
111
|
+
"New or Updated File": "新規または更新されたファイル",
|
|
112
|
+
"New or Updated Folder": "新規または更新されたフォルダ",
|
|
113
|
+
"New List Item": "新しいリストアイテム",
|
|
114
|
+
"Updated List Item": "リストアイテムを更新しました",
|
|
115
|
+
"New List": "新規リスト",
|
|
116
|
+
"New or Updated List": "新規または更新されたリスト",
|
|
117
|
+
"Fires when a new file is created or added in a specific folder.": "新しいファイルが特定のフォルダに作成または追加されたときに発行されます。",
|
|
118
|
+
"Fires when a new file is added anywhere in the first-level subfolders of a folder. Note: This trigger will not monitor subfolders created after the flow is activated.": "フォルダの最初のレベルのサブフォルダのどこかに新しいファイルが追加されたときに発生します。 注:このトリガーはフローが有効になった後に作成されたサブフォルダーを監視しません。",
|
|
119
|
+
"Triggers when a file is created or updated in a given folder.": "指定したフォルダにファイルが作成または更新されたときにトリガーします。",
|
|
120
|
+
"Triggers when a folder is created or updated (e.g., name change).": "フォルダが作成または更新されたときにトリガーします(名前の変更など)。",
|
|
121
|
+
"Triggers when a new item is created in a SharePoint list.": "SharePoint リストに新しい項目が作成されたときにトリガーします。",
|
|
122
|
+
"Fires when an existing item in a SharePoint list is updated.": "SharePoint リストの既存のアイテムが更新されたときに発生します。",
|
|
123
|
+
"Triggers when a new list is created in a site.": "サイトに新しいリストが作成されたときにトリガーされます。",
|
|
124
|
+
"Triggers when a list is created or updated in a site.": "サイト内でリストが作成または更新されたときにトリガーします。",
|
|
125
|
+
"Folder to Monitor": "モニターするフォルダ",
|
|
126
|
+
"Parent Folder to Monitor": "モニターする親フォルダ",
|
|
127
|
+
"The folder to watch for new files. Select \"Root Folder\" for the top-level folder of the drive.": "新しいファイルを監視するフォルダ。ドライブの最上位フォルダには「ルートフォルダ」を選択します。",
|
|
128
|
+
"The parent folder whose subfolders you want to monitor.": "サブフォルダを監視する親フォルダ。",
|
|
129
|
+
"The folder to watch for new or updated files. Select \"Root Folder\" for the top-level folder of the drive.": "新規または更新されたファイルを監視するフォルダ。ドライブの最上位フォルダに「ルートフォルダ」を選択します。",
|
|
130
|
+
"The folder to watch for new or updated subfolders. Select \"Root Folder\" to monitor the top-level of the drive.": "新規または更新されたサブフォルダを監視するフォルダ。ドライブのトップレベルを監視するには、「ルートフォルダ」を選択します。"
|
|
131
|
+
}
|