@scopieflows/app-microsoft-excel-365 0.3.2
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 +7 -0
- package/package.json +30 -0
- package/src/i18n/ca.json +92 -0
- package/src/i18n/de.json +167 -0
- package/src/i18n/es.json +167 -0
- package/src/i18n/fr.json +167 -0
- package/src/i18n/hi.json +92 -0
- package/src/i18n/id.json +92 -0
- package/src/i18n/ja.json +167 -0
- package/src/i18n/nl.json +167 -0
- package/src/i18n/pt.json +167 -0
- package/src/i18n/ru.json +98 -0
- package/src/i18n/translation.json +167 -0
- package/src/i18n/vi.json +98 -0
- package/src/i18n/zh.json +167 -0
- package/src/index.d.ts +2 -0
- package/src/index.js +128 -0
- package/src/index.js.map +1 -0
- package/src/lib/actions/add-worksheet.d.ts +4 -0
- package/src/lib/actions/add-worksheet.js +43 -0
- package/src/lib/actions/add-worksheet.js.map +1 -0
- package/src/lib/actions/append-multiple-rows.d.ts +35 -0
- package/src/lib/actions/append-multiple-rows.js +225 -0
- package/src/lib/actions/append-multiple-rows.js.map +1 -0
- package/src/lib/actions/append-row.d.ts +6 -0
- package/src/lib/actions/append-row.js +57 -0
- package/src/lib/actions/append-row.js.map +1 -0
- package/src/lib/actions/append-table-rows.d.ts +6 -0
- package/src/lib/actions/append-table-rows.js +41 -0
- package/src/lib/actions/append-table-rows.js.map +1 -0
- package/src/lib/actions/clear-cells-by-range.d.ts +6 -0
- package/src/lib/actions/clear-cells-by-range.js +68 -0
- package/src/lib/actions/clear-cells-by-range.js.map +1 -0
- package/src/lib/actions/clear-column-by-index.d.ts +6 -0
- package/src/lib/actions/clear-column-by-index.js +74 -0
- package/src/lib/actions/clear-column-by-index.js.map +1 -0
- package/src/lib/actions/clear-row-by-id.d.ts +6 -0
- package/src/lib/actions/clear-row-by-id.js +70 -0
- package/src/lib/actions/clear-row-by-id.js.map +1 -0
- package/src/lib/actions/clear-worksheet.d.ts +5 -0
- package/src/lib/actions/clear-worksheet.js +52 -0
- package/src/lib/actions/clear-worksheet.js.map +1 -0
- package/src/lib/actions/convert-to-range.d.ts +5 -0
- package/src/lib/actions/convert-to-range.js +36 -0
- package/src/lib/actions/convert-to-range.js.map +1 -0
- package/src/lib/actions/create-table.d.ts +7 -0
- package/src/lib/actions/create-table.js +93 -0
- package/src/lib/actions/create-table.js.map +1 -0
- package/src/lib/actions/create-workbook.d.ts +4 -0
- package/src/lib/actions/create-workbook.js +45 -0
- package/src/lib/actions/create-workbook.js.map +1 -0
- package/src/lib/actions/create-worksheet.d.ts +5 -0
- package/src/lib/actions/create-worksheet.js +81 -0
- package/src/lib/actions/create-worksheet.js.map +1 -0
- package/src/lib/actions/delete-table.d.ts +5 -0
- package/src/lib/actions/delete-table.js +36 -0
- package/src/lib/actions/delete-table.js.map +1 -0
- package/src/lib/actions/delete-workbook.d.ts +3 -0
- package/src/lib/actions/delete-workbook.js +34 -0
- package/src/lib/actions/delete-workbook.js.map +1 -0
- package/src/lib/actions/delete-worksheet.d.ts +4 -0
- package/src/lib/actions/delete-worksheet.js +35 -0
- package/src/lib/actions/delete-worksheet.js.map +1 -0
- package/src/lib/actions/find-row.d.ts +7 -0
- package/src/lib/actions/find-row.js +108 -0
- package/src/lib/actions/find-row.js.map +1 -0
- package/src/lib/actions/get-cells-in-range.d.ts +5 -0
- package/src/lib/actions/get-cells-in-range.js +44 -0
- package/src/lib/actions/get-cells-in-range.js.map +1 -0
- package/src/lib/actions/get-row-by-id.d.ts +6 -0
- package/src/lib/actions/get-row-by-id.js +61 -0
- package/src/lib/actions/get-row-by-id.js.map +1 -0
- package/src/lib/actions/get-table-columns.d.ts +6 -0
- package/src/lib/actions/get-table-columns.js +47 -0
- package/src/lib/actions/get-table-columns.js.map +1 -0
- package/src/lib/actions/get-table-rows.d.ts +6 -0
- package/src/lib/actions/get-table-rows.js +47 -0
- package/src/lib/actions/get-table-rows.js.map +1 -0
- package/src/lib/actions/get-workbooks.d.ts +3 -0
- package/src/lib/actions/get-workbooks.js +49 -0
- package/src/lib/actions/get-workbooks.js.map +1 -0
- package/src/lib/actions/get-worksheet-by-id.d.ts +4 -0
- package/src/lib/actions/get-worksheet-by-id.js +37 -0
- package/src/lib/actions/get-worksheet-by-id.js.map +1 -0
- package/src/lib/actions/get-worksheet-rows.d.ts +7 -0
- package/src/lib/actions/get-worksheet-rows.js +69 -0
- package/src/lib/actions/get-worksheet-rows.js.map +1 -0
- package/src/lib/actions/get-worksheets.d.ts +5 -0
- package/src/lib/actions/get-worksheets.js +61 -0
- package/src/lib/actions/get-worksheets.js.map +1 -0
- package/src/lib/actions/get-wroksheet-columns.d.ts +4 -0
- package/src/lib/actions/get-wroksheet-columns.js +35 -0
- package/src/lib/actions/get-wroksheet-columns.js.map +1 -0
- package/src/lib/actions/lookup-table-column.d.ts +8 -0
- package/src/lib/actions/lookup-table-column.js +78 -0
- package/src/lib/actions/lookup-table-column.js.map +1 -0
- package/src/lib/actions/rename-worksheet.d.ts +5 -0
- package/src/lib/actions/rename-worksheet.js +51 -0
- package/src/lib/actions/rename-worksheet.js.map +1 -0
- package/src/lib/actions/update-row.d.ts +7 -0
- package/src/lib/actions/update-row.js +58 -0
- package/src/lib/actions/update-row.js.map +1 -0
- package/src/lib/common/common.d.ts +22 -0
- package/src/lib/common/common.js +325 -0
- package/src/lib/common/common.js.map +1 -0
- package/src/lib/trigger/new-row-added.d.ts +18 -0
- package/src/lib/trigger/new-row-added.js +87 -0
- package/src/lib/trigger/new-row-added.js.map +1 -0
- package/src/lib/trigger/new-row-in-table.d.ts +22 -0
- package/src/lib/trigger/new-row-in-table.js +139 -0
- package/src/lib/trigger/new-row-in-table.js.map +1 -0
- package/src/lib/trigger/new-worksheet.d.ts +10 -0
- package/src/lib/trigger/new-worksheet.js +94 -0
- package/src/lib/trigger/new-worksheet.js.map +1 -0
- package/src/lib/trigger/updated-row.d.ts +18 -0
- package/src/lib/trigger/updated-row.js +129 -0
- package/src/lib/trigger/updated-row.js.map +1 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@scopieflows/app-microsoft-excel-365",
|
|
3
|
+
"version": "0.3.2",
|
|
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
|
+
"deepmerge-ts": "7.1.0",
|
|
12
|
+
"form-data": "4.0.4",
|
|
13
|
+
"i18next": "23.13.0",
|
|
14
|
+
"mime-types": "2.1.35",
|
|
15
|
+
"nanoid": "3.3.8",
|
|
16
|
+
"semver": "7.6.0",
|
|
17
|
+
"socket.io-client": "4.8.1",
|
|
18
|
+
"zod": "4.1.13",
|
|
19
|
+
"@scopieflows/pieces-common": "0.11.2",
|
|
20
|
+
"@scopieflows/pieces-framework": "0.25.0",
|
|
21
|
+
"@scopieflows/shared": "0.33.0",
|
|
22
|
+
"tslib": "2.6.2"
|
|
23
|
+
},
|
|
24
|
+
"resolutions": {
|
|
25
|
+
"rollup": "npm:@rollup/wasm-node"
|
|
26
|
+
},
|
|
27
|
+
"types": "./src/index.d.ts",
|
|
28
|
+
"main": "./src/index.js",
|
|
29
|
+
"type": "commonjs"
|
|
30
|
+
}
|
package/src/i18n/ca.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Microsoft Excel 365": "Microsoft Excel 365",
|
|
3
|
+
"Spreadsheet software by Microsoft": "Spreadsheet software by Microsoft",
|
|
4
|
+
"Authentication for Microsoft Excel 365": "Authentication for Microsoft Excel 365",
|
|
5
|
+
"Append Row to Worksheet": "Append Row to Worksheet",
|
|
6
|
+
"Get Worksheets": "Get Worksheets",
|
|
7
|
+
"Get Worksheet Rows": "Get Worksheet Rows",
|
|
8
|
+
"Update Worksheet Rows": "Update Worksheet Rows",
|
|
9
|
+
"Clear Worksheet": "Clear Worksheet",
|
|
10
|
+
"Delete Worksheet": "Delete Worksheet",
|
|
11
|
+
"Get Workbooks": "Get Workbooks",
|
|
12
|
+
"Delete Workbook": "Delete Workbook",
|
|
13
|
+
"Add a Worksheet to a Workbook": "Add a Worksheet to a Workbook",
|
|
14
|
+
"Get Table Rows": "Get Table Rows",
|
|
15
|
+
"Get Table Columns": "Get Table Columns",
|
|
16
|
+
"Create Table": "Create Table",
|
|
17
|
+
"Delete Table": "Delete Table",
|
|
18
|
+
"Lookup Table Column": "Lookup Table Column",
|
|
19
|
+
"Append Rows to a Table": "Append Rows to a Table",
|
|
20
|
+
"Convert to Range": "Convert to Range",
|
|
21
|
+
"Custom API Call": "Custom API Call",
|
|
22
|
+
"Append row of values to a worksheet": "Append row of values to a worksheet",
|
|
23
|
+
"Retrieve worksheets from a workbook": "Retrieve worksheets from a workbook",
|
|
24
|
+
"Retrieve rows from a worksheet": "Retrieve rows from a worksheet",
|
|
25
|
+
"Update a row in a worksheet": "Update a row in a worksheet",
|
|
26
|
+
"Clear a worksheet": "Clear a worksheet",
|
|
27
|
+
"Delete a worksheet in a workbook": "Delete a worksheet in a workbook",
|
|
28
|
+
"Retrieve a list of workbooks": "Retrieve a list of workbooks",
|
|
29
|
+
"Delete a workbook": "Delete a workbook",
|
|
30
|
+
"Add a worksheet to a workbook": "Add a worksheet to a workbook",
|
|
31
|
+
"List rows of a table in a worksheet": "List rows of a table in a worksheet",
|
|
32
|
+
"List columns of a table in a worksheet": "List columns of a table in a worksheet",
|
|
33
|
+
"Create a table in a worksheet": "Create a table in a worksheet",
|
|
34
|
+
"Delete a table from a worksheet": "Delete a table from a worksheet",
|
|
35
|
+
"Lookup a value in a table column in a worksheet": "Lookup a value in a table column in a worksheet",
|
|
36
|
+
"Append rows to a table": "Append rows to a table",
|
|
37
|
+
"Converts a table to a range": "Converts a table to a range",
|
|
38
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
39
|
+
"Workbook": "Workbook",
|
|
40
|
+
"Worksheet": "Worksheet",
|
|
41
|
+
"Does the first row contain headers?": "Does the first row contain headers?",
|
|
42
|
+
"Values": "Values",
|
|
43
|
+
"Return All": "Return All",
|
|
44
|
+
"Limit": "Limit",
|
|
45
|
+
"Range": "Range",
|
|
46
|
+
"Header Row": "Header Row",
|
|
47
|
+
"First Data Row": "First Data Row",
|
|
48
|
+
"Row number": "Row number",
|
|
49
|
+
"Worksheet Name": "Worksheet Name",
|
|
50
|
+
"Table": "Table",
|
|
51
|
+
"Select Range": "Select Range",
|
|
52
|
+
"Has Headers": "Has Headers",
|
|
53
|
+
"Lookup Column": "Lookup Column",
|
|
54
|
+
"Lookup Value": "Lookup Value",
|
|
55
|
+
"Return All Matches": "Return All Matches",
|
|
56
|
+
"Method": "Method",
|
|
57
|
+
"Headers": "Headers",
|
|
58
|
+
"Query Parameters": "Query Parameters",
|
|
59
|
+
"Body": "Body",
|
|
60
|
+
"No Error on Failure": "No Error on Failure",
|
|
61
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
62
|
+
"If the first row is headers": "If the first row is headers",
|
|
63
|
+
"The values to insert": "The values to insert",
|
|
64
|
+
"If checked, all worksheets will be returned": "If checked, all worksheets will be returned",
|
|
65
|
+
"Limit the number of worksheets returned": "Limit the number of worksheets returned",
|
|
66
|
+
"Range of the rows to retrieve (e.g., A2:B2)": "Range of the rows to retrieve (e.g., A2:B2)",
|
|
67
|
+
"Row number of the header": "Row number of the header",
|
|
68
|
+
"Row number of the first data row": "Row number of the first data row",
|
|
69
|
+
"The row number to update": "The row number to update",
|
|
70
|
+
"The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet": "The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet",
|
|
71
|
+
"Limits the number of workbooks returned, returns all workbooks if empty": "Limits the number of workbooks returned, returns all workbooks if empty",
|
|
72
|
+
"The name of the new worksheet": "The name of the new worksheet",
|
|
73
|
+
"Limit the number of rows retrieved": "Limit the number of rows retrieved",
|
|
74
|
+
"Limit the number of columns retrieved": "Limit the number of columns retrieved",
|
|
75
|
+
"How to select the range for the table": "How to select the range for the table",
|
|
76
|
+
"The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table": "The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table",
|
|
77
|
+
"Whether the range has column labels": "Whether the range has column labels",
|
|
78
|
+
"The column name to lookup the value in": "The column name to lookup the value in",
|
|
79
|
+
"The value to lookup": "The value to lookup",
|
|
80
|
+
"If checked, all matching rows will be returned": "If checked, all matching rows will be returned",
|
|
81
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
82
|
+
"GET": "GET",
|
|
83
|
+
"POST": "POST",
|
|
84
|
+
"PATCH": "PATCH",
|
|
85
|
+
"PUT": "PUT",
|
|
86
|
+
"DELETE": "DELETE",
|
|
87
|
+
"HEAD": "HEAD",
|
|
88
|
+
"New Row": "New Row",
|
|
89
|
+
"Trigger when a new row is added, and it can include existing rows as well.": "Trigger when a new row is added, and it can include existing rows as well.",
|
|
90
|
+
"Max Rows to Poll": "Max Rows to Poll",
|
|
91
|
+
"The maximum number of rows to poll, the rest will be polled on the next run.": "The maximum number of rows to poll, the rest will be polled on the next run."
|
|
92
|
+
}
|
package/src/i18n/de.json
ADDED
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Spreadsheet software by Microsoft": "Tabellensoftware von Microsoft",
|
|
3
|
+
"\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 ": "\n1. Melden Sie sich bei [Microsoft Azure Portal](https://portal.azure.com/).\n. Von der linken Seitenleiste gehen Sie zur **Microsoft Enfra ID**.\n3. Unter **Verwalten** klicken Sie auf **App-Registrierungen**.\n4. Klicken Sie auf die **Neue Registrierung** Schaltfläche.\n5. Geben Sie einen **Name** für Ihre App ein.\n6. Fü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 **Umleitungs-URI** wählen Sie **Web** und fügen Sie die angegebene URL hinzu.\n8. Klicken Sie auf **Registrieren**.\n9. Nach der Registrierung werden Sie zur Übersichtsseite der App weitergeleitet. Kopieren Sie die **Application (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 **Berechtigung hinzufügen**.\n - Wählen Sie **Microsoft Graph** → **delegierte Berechtigungen**.\n - Fügen Sie folgende Bereiche hinzu:\n - Dateien. eadWrite\n - offline_access \n - Klicken Sie auf **Berechtigungen hinzufügen**.\n12. Kopieren Sie Ihre **Client-ID** und **Client-Geheimnis**.\n",
|
|
4
|
+
"Append Row to Worksheet": "Zeile an Arbeitsblatt anhängen",
|
|
5
|
+
"Append Multiple Rows": "Mehrere Zeilen anhängen",
|
|
6
|
+
"Get Worksheets": "Arbeitsblätter abrufen",
|
|
7
|
+
"Get Worksheet Rows": "Arbeitsblatt Zeilen abrufen",
|
|
8
|
+
"Update Worksheet Rows": "Arbeitsblatt Zeilen aktualisieren",
|
|
9
|
+
"Clear Worksheet": "Arbeitsblatt löschen",
|
|
10
|
+
"Delete Worksheet": "Arbeitsblatt löschen",
|
|
11
|
+
"Get Workbooks": "Arbeitsbücher abrufen",
|
|
12
|
+
"Get Worksheet Columns": "Arbeitsblatt-Spalten abrufen",
|
|
13
|
+
"Delete Workbook": "Arbeitsbuch löschen",
|
|
14
|
+
"Add a Worksheet to a Workbook": "Ein Arbeitsblatt zu einem Arbeitsbuch hinzufügen",
|
|
15
|
+
"Get Table Rows": "Tabellenzeile erhalten",
|
|
16
|
+
"Get Table Columns": "Tabellenspalten erhalten",
|
|
17
|
+
"Create Table": "Tabelle erstellen",
|
|
18
|
+
"Delete Table": "Tabelle löschen",
|
|
19
|
+
"Lookup Table Column": "Tabellenspalte suchen",
|
|
20
|
+
"Append Rows to a Table": "Zeilen an einen Tisch anhängen",
|
|
21
|
+
"Convert to Range": "In Bereich umwandeln",
|
|
22
|
+
"Create Workbook": "Arbeitsbuch erstellen",
|
|
23
|
+
"Clear Column by Index": "Spalte nach Index löschen",
|
|
24
|
+
"Clear Cells by Range": "Lösche Zellen nach Reichweite",
|
|
25
|
+
"Clear Row by ID": "Zeile durch ID löschen",
|
|
26
|
+
"Create Worksheet": "Arbeitsblatt erstellen",
|
|
27
|
+
"Find Row": "Finde Zeile",
|
|
28
|
+
"Get Cells in Range": "Hol dir Zellen in Reichweite",
|
|
29
|
+
"Get Row by ID": "Zeile per ID erhalten",
|
|
30
|
+
"Get Worksheet by ID": "Arbeitsblatt über ID abrufen",
|
|
31
|
+
"Rename Worksheet": "Arbeitsblatt umbenennen",
|
|
32
|
+
"Custom API Call": "Eigener API-Aufruf",
|
|
33
|
+
"Append row of values to a worksheet": "Füge eine Zeile von Werten zu einer Tabelle hinzu",
|
|
34
|
+
"Appends multiple row of values to a worksheet.": "Fügt mehrere Wertezeilen zu einer Tabelle hinzu.",
|
|
35
|
+
"Retrieve worksheets from a workbook": "Arbeitsblätter aus einem Arbeitsbuch abrufen",
|
|
36
|
+
"Retrieve rows from a worksheet": "Datensätze von einem Arbeitsblatt abrufen",
|
|
37
|
+
"Update a row in a worksheet": "Eine Zeile in einer Tabelle aktualisieren",
|
|
38
|
+
"Clear a worksheet": "Arbeitsblatt leeren",
|
|
39
|
+
"Delete a worksheet in a workbook": "Arbeitsblatt in einem Arbeitsbuch löschen",
|
|
40
|
+
"Retrieve a list of workbooks": "Liste der Arbeitsbücher abrufen",
|
|
41
|
+
"List columns of a worksheet.": "Spalten einer Tabelle auflisten.",
|
|
42
|
+
"Delete a workbook": "Ein Arbeitsbuch löschen",
|
|
43
|
+
"Add a worksheet to a workbook": "Ein Arbeitsblatt zu einem Arbeitsbuch hinzufügen",
|
|
44
|
+
"List rows of a table in a worksheet": "Datensätze einer Tabelle in einer Tabelle auflisten",
|
|
45
|
+
"List columns of a table in a worksheet": "Spalten einer Tabelle in einer Tabelle auflisten",
|
|
46
|
+
"Create a table in a worksheet": "Tabelle in einer Tabelle erstellen",
|
|
47
|
+
"Delete a table from a worksheet": "Tabelle aus Arbeitsblatt löschen",
|
|
48
|
+
"Lookup a value in a table column in a worksheet": "Suche einen Wert in einer Tabellenspalte in einem Arbeitsblatt",
|
|
49
|
+
"Append rows to a table": "Zeilen an eine Tabelle anhängen",
|
|
50
|
+
"Converts a table to a range": "Konvertiert eine Tabelle in einen Bereich",
|
|
51
|
+
"Create a new workbook at the specified location": "Neues Arbeitsbuch an dem angegebenen Ort erstellen",
|
|
52
|
+
"Clear contents/formatting of a column by its index.": "Lösche Inhalte/Formatierung einer Spalte nach ihrem Index.",
|
|
53
|
+
"Clear a block of cells (range) content or formatting.": "Lösche einen Block von Zellen (Bereich) Inhalt oder Formatierung.",
|
|
54
|
+
"Clear contents/formatting of an entire row by its ID.": "Lösche Inhalte/Formatierung eines ganzen Datensatzes mit seiner ID.",
|
|
55
|
+
"Add a new worksheet (tab) to an existing workbook with optional default headers.": "Fügen Sie ein neues Arbeitsblatt (Tab) zu einem bestehenden Arbeitsbuch mit optionalen Headern hinzu.",
|
|
56
|
+
"Locate a row by specifying a lookup column and value (e.g. find a row where “ID” = 123).": "Suchen Sie eine Zeile, indem Sie eine Spalte und einen Wert angeben (z.B. finden Sie eine Zeile, in der „ID“ = 123).",
|
|
57
|
+
"Retrieve the values in a given cell range (e.g., “A1:C10”).": "Rufen Sie die Werte in einem vorgegebenen Zellbereich ab (z.B. „A1:C10“).",
|
|
58
|
+
" Retrieve the entire content of a row by its row ID.": " Ruft den gesamten Inhalt einer Zeile nach ihrer Zeilennummer ab.",
|
|
59
|
+
"Retrieve metadata of a worksheet by its ID.": "Abrufen von Metadaten eines Arbeitsblatts durch seine ID.",
|
|
60
|
+
"Change the name of an existing worksheet.": "Ändern Sie den Namen einer vorhandenen Tabelle.",
|
|
61
|
+
"Make a custom API call to a specific endpoint": "Einen benutzerdefinierten API-Aufruf an einen bestimmten Endpunkt machen",
|
|
62
|
+
"Workbook": "Arbeitsbuch",
|
|
63
|
+
"Worksheet": "Arbeitsblatt",
|
|
64
|
+
"Does the first row contain headers?": "Enthält die erste Zeile Kopfzeilen?",
|
|
65
|
+
"Values": "Werte",
|
|
66
|
+
"Markdown": "Markdown",
|
|
67
|
+
"Filter Column": "Spalte filtern",
|
|
68
|
+
"Filter Type": "Filtertyp",
|
|
69
|
+
"Filter Value": "Filterwert",
|
|
70
|
+
"Return All": "Alle zurückgeben",
|
|
71
|
+
"Limit": "Limit",
|
|
72
|
+
"Range": "Range",
|
|
73
|
+
"Header Row": "Kopfzeile",
|
|
74
|
+
"First Data Row": "Erste Datenzeile",
|
|
75
|
+
"Row number": "Zeilennummer",
|
|
76
|
+
"Worksheet Name": "Arbeitsblattname",
|
|
77
|
+
"Table": "Tisch",
|
|
78
|
+
"Select Range": "Bereich auswählen",
|
|
79
|
+
"Has Headers": "Hat Kopfzeilen",
|
|
80
|
+
"Lookup Column": "Spalte suchen",
|
|
81
|
+
"Lookup Value": "Suchwert",
|
|
82
|
+
"Return All Matches": "Alle Matches zurückgeben",
|
|
83
|
+
"Name": "Name",
|
|
84
|
+
"Parent Folder": "Eltern-Ordner",
|
|
85
|
+
"Column Index": "Spaltenindex",
|
|
86
|
+
"Clear Type": "Typ löschen",
|
|
87
|
+
"Row Number": "Zeilennummer",
|
|
88
|
+
"Headers": "Kopfzeilen",
|
|
89
|
+
"Row ID (Index)": "Zeilennummer (Index)",
|
|
90
|
+
"New Worksheet Name": "Neuer Arbeitsblattname",
|
|
91
|
+
"Method": "Methode",
|
|
92
|
+
"Query Parameters": "Abfrageparameter",
|
|
93
|
+
"Body Type": "Körpertyp",
|
|
94
|
+
"Body": "Körper",
|
|
95
|
+
"Response is Binary ?": "Antwort ist binär?",
|
|
96
|
+
"No Error on Failure": "Kein Fehler bei Fehler",
|
|
97
|
+
"Timeout (in seconds)": "Timeout (in Sekunden)",
|
|
98
|
+
"Follow redirects": "Weiterleitungen folgen",
|
|
99
|
+
"If the first row is headers": "Wenn die erste Zeile Kopfzeilen ist",
|
|
100
|
+
"The values to insert": "Die einzufügenden Werte",
|
|
101
|
+
"Use below Filter properties to insert only the rows that meet your conditions.": "Verwenden Sie die unten stehenden Filtereigenschaften, um nur die Zeilen einzufügen, die Ihren Bedingungen entsprechen.",
|
|
102
|
+
"If checked, all worksheets will be returned": "Wenn aktiviert, werden alle Arbeitsblätter zurückgegeben",
|
|
103
|
+
"Limit the number of worksheets returned": "Anzahl der zurückgegebenen Arbeitsblätter begrenzen",
|
|
104
|
+
"Range of the rows to retrieve (e.g., A2:B2)": "Bereich der zu holenden Zeilen (z.B. A2:B2)",
|
|
105
|
+
"Row number of the header": "Zeilennummer der Kopfzeile",
|
|
106
|
+
"Row number of the first data row": "Zeilennummer der ersten Datenzeile",
|
|
107
|
+
"The row number to update": "Die zu aktualisierende Zeilennummer",
|
|
108
|
+
"The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet": "Der Bereich in der Schreibweise A1 (z. B. A2:B2), um in der Tabelle zu löschen, falls nicht vorhanden, löschen Sie das gesamte Arbeitsblatt",
|
|
109
|
+
"Limits the number of workbooks returned, returns all workbooks if empty": "Begrenzt die Anzahl der zurückgegebenen Arbeitsbücher zurück, gibt alle Arbeitsbücher zurück, wenn leer",
|
|
110
|
+
"The name of the new worksheet": "Der Name des neuen Arbeitsblatts",
|
|
111
|
+
"Limit the number of rows retrieved": "Anzahl der abgerufenen Zeilen begrenzen",
|
|
112
|
+
"Limit the number of columns retrieved": "Anzahl der abgerufenen Spalten begrenzen",
|
|
113
|
+
"How to select the range for the table": "Auswahl des Bereichs für die Tabelle",
|
|
114
|
+
"The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table": "Der Bereich der Zellen in A1-Notation (z. B. A2:B2), die in eine Tabelle konvertiert werden",
|
|
115
|
+
"Whether the range has column labels": "Gibt an, ob der Bereich Spaltenbezeichnungen hat",
|
|
116
|
+
"The column name to lookup the value in": "Der Spaltenname für die Suche nach dem Wert in",
|
|
117
|
+
"The value to lookup": "Der zu durchsuchende Wert",
|
|
118
|
+
"If checked, all matching rows will be returned": "Wenn aktiviert, werden alle übereinstimmenden Zeilen zurückgegeben",
|
|
119
|
+
"The name of the new workbook": "Der Name des neuen Arbeitsbuchs",
|
|
120
|
+
"The parent folder to use": "Der zu verwendende übergeordnete Ordner",
|
|
121
|
+
"The 1-based index of the column to be cleared (e.g., 1 for column A, 2 for column B).": "Der 1-basierte Index der zu löschenden Spalte (z.B. 1 für Spalte A, 2 für Spalte B).",
|
|
122
|
+
"Specify what to clear from the column.": "Legen Sie fest, was aus der Spalte zu löschen ist.",
|
|
123
|
+
"The range of cells to clear, in A1 notation (e.g., \"A1:C5\").": "Der Bereich der Zellen zu löschen, in A1 Notation (z. B. \"A1:C5\").",
|
|
124
|
+
"Specify what to clear from the range.": "Legen Sie fest, was aus dem Bereich zu löschen ist.",
|
|
125
|
+
"The number of the row to be cleared (e.g., 5 for the 5th row).": "Die Anzahl der zu löschenden Zeilen (z.B. 5 für die 5. Zeile).",
|
|
126
|
+
"Specify what to clear from the row.": "Legen Sie fest, was aus der Zeile zu löschen ist.",
|
|
127
|
+
"The name for the new worksheet. If not provided, a default name like 'Sheet1' will be assigned.": "Der Name für das neue Arbeitsblatt. Falls nicht angegeben wird, wird ein Standardname wie 'Sheet1' zugewiesen.",
|
|
128
|
+
"Optional: A list of headers to add to the first row. A table will be created from these headers.": "Optional: Eine Liste von Kopfzeilen, die zur ersten Zeile hinzugefügt werden sollen. Eine Tabelle wird aus diesen Kopfzeilen erstellt.",
|
|
129
|
+
"The column to search in.": "Die Spalte in der gesucht werden soll.",
|
|
130
|
+
"The value to find in the lookup column.": "Der Wert, der in der Suchspalte zu finden ist.",
|
|
131
|
+
"The range of cells to retrieve, in A1 notation (e.g., \"A1:C10\").": "Der Bereich der Zellen, die in A1-Notation abgerufen werden sollen (z.B. \"A1:C10\").",
|
|
132
|
+
"The zero-based index of the row to retrieve (e.g., 0 for the first row, 1 for the second).": "Der null-basierte Index der zu holenden Zeile (z.B. 0 für die erste Zeile, 1 für die zweite Zeile).",
|
|
133
|
+
"\nThe new name for the worksheet. The name must adhere to the following rules:\n- Cannot be blank.\n- Cannot exceed 31 characters.\n- Must not contain any of the following characters: `/`, `\\`, `?`, `*`, `:`, `[`, `]`.\n- The name \"History\" is reserved by Excel and cannot be used.\n": "\nDer neue Name für das Arbeitsblatt. Der Name muss die folgenden Regeln beachten:\n- darf nicht leer sein.\n- 31 Zeichen nicht überschreiten.\n- Darf keine der folgenden Zeichen enthalten: `/`, `\\`, `?`, `*`, `:`, `[`, `]`.\n- Der Name \"History\" ist von Excel reserviert und kann nicht verwendet werden.\n",
|
|
134
|
+
"Authorization headers are injected automatically from your connection.": "Autorisierungs-Header werden automatisch von Ihrer Verbindung injiziert.",
|
|
135
|
+
"Enable for files like PDFs, images, etc.": "Aktivieren für Dateien wie PDFs, Bilder usw.",
|
|
136
|
+
"(Text) Exactly matches": "(Text) Genaue Übereinstimmung",
|
|
137
|
+
"(Text) Does not exactly match": "(Text) Stimmt nicht genau überein",
|
|
138
|
+
"(Text) Matches any of": "(Text) passt zu irgendeinem von",
|
|
139
|
+
"(Text) Matches none of": "(Text) stimmt keiner von",
|
|
140
|
+
"All (Contents and Formatting)": "Alle (Inhalt und Formatierung)",
|
|
141
|
+
"Contents Only": "Nur Inhalte",
|
|
142
|
+
"Formats Only": "Nur Formate",
|
|
143
|
+
"GET": "ERHALTEN",
|
|
144
|
+
"POST": "POST",
|
|
145
|
+
"PATCH": "PATCH",
|
|
146
|
+
"PUT": "PUT",
|
|
147
|
+
"DELETE": "LÖSCHEN",
|
|
148
|
+
"HEAD": "HEAD",
|
|
149
|
+
"None": "Keine",
|
|
150
|
+
"JSON": "JSON",
|
|
151
|
+
"Form Data": "Formulardaten",
|
|
152
|
+
"Raw": "Rohe",
|
|
153
|
+
"New Row": "Neue Zeile",
|
|
154
|
+
"New Row in Table": "Neue Zeile in Tabelle",
|
|
155
|
+
"New Worksheet": "Neues Arbeitsblatt",
|
|
156
|
+
"Updated Row": "Aktualisierte Zeile",
|
|
157
|
+
"Trigger when a new row is added, and it can include existing rows as well.": "Wird ausgelöst, wenn eine neue Zeile hinzugefügt wird, und kann auch vorhandene Datensätze enthalten.",
|
|
158
|
+
"Fires when a new row is added to a table within a worksheet.": "Feuert ab, wenn eine neue Zeile einer Tabelle innerhalb einer Tabelle hinzugefügt wird.",
|
|
159
|
+
"Fires when a new worksheet is created in a workbook.": "Feuert ab, wenn ein neues Arbeitsblatt in einem Arbeitsbuch erstellt wird.",
|
|
160
|
+
"Fires when a row (in a worksheet) is added or updated.": "Feuert ab, wenn eine Zeile (in einem Arbeitsblatt) hinzugefügt oder aktualisiert wird.",
|
|
161
|
+
"Max Rows to Poll": "Max. Zeilen zur Abfrage",
|
|
162
|
+
"My table has headers": "Meine Tabelle hat Kopfzeilen",
|
|
163
|
+
"First row has headers": "Erste Zeile hat Kopfzeilen",
|
|
164
|
+
"The maximum number of rows to poll, the rest will be polled on the next run.": "Die maximale Anzahl der zu befragenden Zeilen, der Rest wird beim nächsten Lauf befragt.",
|
|
165
|
+
"Enable this if the first row of your table is a header row.": "Aktivieren Sie dies, wenn die erste Zeile Ihrer Tabelle eine Kopfzeile ist.",
|
|
166
|
+
"Enable this if the first row of your worksheet should be treated as headers.": "Aktivieren Sie dies, wenn die erste Zeile Ihres Arbeitsblatts als Header behandelt werden soll."
|
|
167
|
+
}
|
package/src/i18n/es.json
ADDED
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Spreadsheet software by Microsoft": "Software de hoja de cálculo por Microsoft",
|
|
3
|
+
"\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 ": "\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.\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** → **Delegated permissions**.\n - Add the following scopes:\n - Files.ReadWrite\n - offline_access\n - Click **Add permissions**.\n12. Copy your **Client ID** and **Client Secret**.\n",
|
|
4
|
+
"Append Row to Worksheet": "Añadir fila a la hoja de trabajo",
|
|
5
|
+
"Append Multiple Rows": "Añadir múltiples filas",
|
|
6
|
+
"Get Worksheets": "Obtener hojas de trabajo",
|
|
7
|
+
"Get Worksheet Rows": "Obtener filas de hojas de trabajo",
|
|
8
|
+
"Update Worksheet Rows": "Actualizar Filas de Hoja de Trabajo",
|
|
9
|
+
"Clear Worksheet": "Limpiar hoja de trabajo",
|
|
10
|
+
"Delete Worksheet": "Eliminar hoja de trabajo",
|
|
11
|
+
"Get Workbooks": "Obtener libros de trabajo",
|
|
12
|
+
"Get Worksheet Columns": "Obtener columnas de hojas de trabajo",
|
|
13
|
+
"Delete Workbook": "Eliminar Libro de Trabajo",
|
|
14
|
+
"Add a Worksheet to a Workbook": "Añadir una hoja de trabajo a un libro de trabajo",
|
|
15
|
+
"Get Table Rows": "Obtener Arcos de Tabla",
|
|
16
|
+
"Get Table Columns": "Obtener columnas de tabla",
|
|
17
|
+
"Create Table": "Crear tabla",
|
|
18
|
+
"Delete Table": "Eliminar tabla",
|
|
19
|
+
"Lookup Table Column": "Columna de Tabla de Búsqueda",
|
|
20
|
+
"Append Rows to a Table": "Añadir filas a una tabla",
|
|
21
|
+
"Convert to Range": "Convertir a rango",
|
|
22
|
+
"Create Workbook": "Crear Libro de Trabajo",
|
|
23
|
+
"Clear Column by Index": "Limpiar columna por índice",
|
|
24
|
+
"Clear Cells by Range": "Limpiar celdas por rango",
|
|
25
|
+
"Clear Row by ID": "Limpiar fila por ID",
|
|
26
|
+
"Create Worksheet": "Crear hoja de trabajo",
|
|
27
|
+
"Find Row": "Buscar fila",
|
|
28
|
+
"Get Cells in Range": "Obtener celdas en el rango",
|
|
29
|
+
"Get Row by ID": "Obtener fila por ID",
|
|
30
|
+
"Get Worksheet by ID": "Obtener Hoja de Trabajo por ID",
|
|
31
|
+
"Rename Worksheet": "Renombrar hoja de trabajo",
|
|
32
|
+
"Custom API Call": "Llamada API personalizada",
|
|
33
|
+
"Append row of values to a worksheet": "Añadir fila de valores a una hoja de trabajo",
|
|
34
|
+
"Appends multiple row of values to a worksheet.": "Añade varias filas de valores a una hoja de cálculo.",
|
|
35
|
+
"Retrieve worksheets from a workbook": "Recuperar hojas de trabajo de un libro",
|
|
36
|
+
"Retrieve rows from a worksheet": "Recuperar filas de una hoja de trabajo",
|
|
37
|
+
"Update a row in a worksheet": "Actualizar una fila en una hoja de trabajo",
|
|
38
|
+
"Clear a worksheet": "Limpiar una hoja de trabajo",
|
|
39
|
+
"Delete a worksheet in a workbook": "Eliminar una hoja de trabajo en un libro",
|
|
40
|
+
"Retrieve a list of workbooks": "Recuperar una lista de libros de trabajo",
|
|
41
|
+
"List columns of a worksheet.": "Listar columnas de una hoja de cálculo.",
|
|
42
|
+
"Delete a workbook": "Eliminar un libro",
|
|
43
|
+
"Add a worksheet to a workbook": "Añadir una hoja de trabajo a un libro",
|
|
44
|
+
"List rows of a table in a worksheet": "Listar filas de una tabla en una hoja de trabajo",
|
|
45
|
+
"List columns of a table in a worksheet": "Listar columnas de una tabla en una hoja de trabajo",
|
|
46
|
+
"Create a table in a worksheet": "Crear una tabla en una hoja de trabajo",
|
|
47
|
+
"Delete a table from a worksheet": "Eliminar una tabla de una hoja de trabajo",
|
|
48
|
+
"Lookup a value in a table column in a worksheet": "Buscar un valor en una columna de tabla en una hoja de trabajo",
|
|
49
|
+
"Append rows to a table": "Añadir filas a una tabla",
|
|
50
|
+
"Converts a table to a range": "Convierte una tabla a un rango",
|
|
51
|
+
"Create a new workbook at the specified location": "Crear un nuevo libro en la ubicación especificada",
|
|
52
|
+
"Clear contents/formatting of a column by its index.": "Elimina el contenido/formato de una columna por su índice.",
|
|
53
|
+
"Clear a block of cells (range) content or formatting.": "Elimina un bloque de contenido o formato de celdas (rango).",
|
|
54
|
+
"Clear contents/formatting of an entire row by its ID.": "Elimina el contenido/formato de una fila entera por su ID.",
|
|
55
|
+
"Add a new worksheet (tab) to an existing workbook with optional default headers.": "Añadir una nueva hoja de trabajo (pestaña) a un libro de trabajo existente con cabeceras predeterminadas opcionales.",
|
|
56
|
+
"Locate a row by specifying a lookup column and value (e.g. find a row where “ID” = 123).": "Busque una fila especificando una columna de búsqueda y un valor (por ejemplo, encuentre una fila donde “ID” = 123).",
|
|
57
|
+
"Retrieve the values in a given cell range (e.g., “A1:C10”).": "Recuperar los valores en un determinado rango de celdas (por ejemplo, “A1:C10”).",
|
|
58
|
+
" Retrieve the entire content of a row by its row ID.": " Recuperar todo el contenido de una fila por su ID de fila.",
|
|
59
|
+
"Retrieve metadata of a worksheet by its ID.": "Recuperar metadatos de una hoja de trabajo por su ID.",
|
|
60
|
+
"Change the name of an existing worksheet.": "Cambiar el nombre de una hoja de trabajo existente.",
|
|
61
|
+
"Make a custom API call to a specific endpoint": "Hacer una llamada API personalizada a un extremo específico",
|
|
62
|
+
"Workbook": "Libro de trabajo",
|
|
63
|
+
"Worksheet": "Hoja de trabajo",
|
|
64
|
+
"Does the first row contain headers?": "¿La primera fila contiene cabeceras?",
|
|
65
|
+
"Values": "Valores",
|
|
66
|
+
"Markdown": "Markdown",
|
|
67
|
+
"Filter Column": "Columna de filtro",
|
|
68
|
+
"Filter Type": "Tipo de filtro",
|
|
69
|
+
"Filter Value": "Valor del filtro",
|
|
70
|
+
"Return All": "Devolver todos",
|
|
71
|
+
"Limit": "Límite",
|
|
72
|
+
"Range": "Range",
|
|
73
|
+
"Header Row": "Fila de cabecera",
|
|
74
|
+
"First Data Row": "Primera fila de datos",
|
|
75
|
+
"Row number": "Número de fila",
|
|
76
|
+
"Worksheet Name": "Nombre de la hoja de trabajo",
|
|
77
|
+
"Table": "Tabla",
|
|
78
|
+
"Select Range": "Seleccionar rango",
|
|
79
|
+
"Has Headers": "Tiene cabeceras",
|
|
80
|
+
"Lookup Column": "Columna de Búsqueda",
|
|
81
|
+
"Lookup Value": "Valor de Búsqueda",
|
|
82
|
+
"Return All Matches": "Devolver todas las partidas",
|
|
83
|
+
"Name": "Nombre",
|
|
84
|
+
"Parent Folder": "Carpeta padre",
|
|
85
|
+
"Column Index": "Índice de columna",
|
|
86
|
+
"Clear Type": "Borrar tipo",
|
|
87
|
+
"Row Number": "Número de fila",
|
|
88
|
+
"Headers": "Encabezados",
|
|
89
|
+
"Row ID (Index)": "ID fila (índice)",
|
|
90
|
+
"New Worksheet Name": "Nuevo nombre de hoja de trabajo",
|
|
91
|
+
"Method": "Método",
|
|
92
|
+
"Query Parameters": "Parámetros de consulta",
|
|
93
|
+
"Body Type": "Tipo de cuerpo",
|
|
94
|
+
"Body": "Cuerpo",
|
|
95
|
+
"Response is Binary ?": "¿Respuesta es binaria?",
|
|
96
|
+
"No Error on Failure": "No hay ningún error en fallo",
|
|
97
|
+
"Timeout (in seconds)": "Tiempo de espera (en segundos)",
|
|
98
|
+
"Follow redirects": "Seguir redirecciones",
|
|
99
|
+
"If the first row is headers": "Si la primera fila son cabeceras",
|
|
100
|
+
"The values to insert": "Los valores a insertar",
|
|
101
|
+
"Use below Filter properties to insert only the rows that meet your conditions.": "Utilice debajo de las propiedades Filtro para insertar sólo los registros que cumplen con sus condiciones.",
|
|
102
|
+
"If checked, all worksheets will be returned": "Si está marcado, todas las hojas de trabajo serán devueltas",
|
|
103
|
+
"Limit the number of worksheets returned": "Limitar el número de hojas de cálculo devueltas",
|
|
104
|
+
"Range of the rows to retrieve (e.g., A2:B2)": "Rango de las filas a recuperar (por ejemplo, A2:B2)",
|
|
105
|
+
"Row number of the header": "Número de fila de la cabecera",
|
|
106
|
+
"Row number of the first data row": "Número de fila de la primera fila de datos",
|
|
107
|
+
"The row number to update": "El número de fila a actualizar",
|
|
108
|
+
"The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet": "El rango en notación A1 (por ej., A2:B2) para limpiar en la hoja de cálculo, si no se proporciona, limpiar toda la hoja de trabajo",
|
|
109
|
+
"Limits the number of workbooks returned, returns all workbooks if empty": "Limita el número de libros de trabajo devueltos, devuelve todos los libros de trabajo si está vacío",
|
|
110
|
+
"The name of the new worksheet": "El nombre de la nueva hoja de trabajo",
|
|
111
|
+
"Limit the number of rows retrieved": "Limitar el número de filas recuperadas",
|
|
112
|
+
"Limit the number of columns retrieved": "Limitar el número de columnas recuperadas",
|
|
113
|
+
"How to select the range for the table": "Cómo seleccionar el rango para la tabla",
|
|
114
|
+
"The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table": "El rango de celdas en notación A1 (por ejemplo, A2:B2) que se convertirá en una tabla",
|
|
115
|
+
"Whether the range has column labels": "Si el rango tiene etiquetas de columna",
|
|
116
|
+
"The column name to lookup the value in": "El nombre de la columna en la que buscar el valor",
|
|
117
|
+
"The value to lookup": "El valor a buscar",
|
|
118
|
+
"If checked, all matching rows will be returned": "Si está marcado, todas las filas coincidentes serán devueltas",
|
|
119
|
+
"The name of the new workbook": "El nombre del nuevo libro",
|
|
120
|
+
"The parent folder to use": "La carpeta padre a usar",
|
|
121
|
+
"The 1-based index of the column to be cleared (e.g., 1 for column A, 2 for column B).": "El índice 1 basado en la columna a ser borrada (por ejemplo, 1 para la columna A, 2 para la columna B).",
|
|
122
|
+
"Specify what to clear from the column.": "Especifique qué borrar de la columna.",
|
|
123
|
+
"The range of cells to clear, in A1 notation (e.g., \"A1:C5\").": "El rango de células a limpiar, en notación A1 (por ejemplo, \"A1:C5\").",
|
|
124
|
+
"Specify what to clear from the range.": "Especifique qué limpiar del rango.",
|
|
125
|
+
"The number of the row to be cleared (e.g., 5 for the 5th row).": "El número de la fila a limpiar (por ejemplo, 5 para la quinta fila).",
|
|
126
|
+
"Specify what to clear from the row.": "Especifique qué borrar de la fila.",
|
|
127
|
+
"The name for the new worksheet. If not provided, a default name like 'Sheet1' will be assigned.": "El nombre de la nueva hoja de cálculo. Si no se proporciona, se asignará un nombre por defecto como 'Sheet1'.",
|
|
128
|
+
"Optional: A list of headers to add to the first row. A table will be created from these headers.": "Opcional: Una lista de cabeceras a añadir a la primera fila. Se creará una tabla a partir de estas cabeceras.",
|
|
129
|
+
"The column to search in.": "La columna en la que buscar.",
|
|
130
|
+
"The value to find in the lookup column.": "El valor a encontrar en la columna de búsqueda.",
|
|
131
|
+
"The range of cells to retrieve, in A1 notation (e.g., \"A1:C10\").": "El rango de celdas a recuperar, en notación A1 (por ej., \"A1:C10\").",
|
|
132
|
+
"The zero-based index of the row to retrieve (e.g., 0 for the first row, 1 for the second).": "El índice cero de la fila a recuperar (por ejemplo, 0 para la primera fila, 1 para la segunda).",
|
|
133
|
+
"\nThe new name for the worksheet. The name must adhere to the following rules:\n- Cannot be blank.\n- Cannot exceed 31 characters.\n- Must not contain any of the following characters: `/`, `\\`, `?`, `*`, `:`, `[`, `]`.\n- The name \"History\" is reserved by Excel and cannot be used.\n": "\nThe new name for the worksheet. The name must adhere to the following rules:\n- Cannot be blank.\n- Cannot exceed 31 characters.\n- Must not contain any of the following characters: `/`, `\\`, `?`, `*`, `:`, `[`, `]`.\n- The name \"History\" is reserved by Excel and cannot be used.\n",
|
|
134
|
+
"Authorization headers are injected automatically from your connection.": "Las cabeceras de autorización se inyectan automáticamente desde tu conexión.",
|
|
135
|
+
"Enable for files like PDFs, images, etc.": "Activar para archivos como PDFs, imágenes, etc.",
|
|
136
|
+
"(Text) Exactly matches": "(Texto) Coincide Exactamente",
|
|
137
|
+
"(Text) Does not exactly match": "(Texto) No coincide exactamente",
|
|
138
|
+
"(Text) Matches any of": "(Texto) Coincide con cualquiera de",
|
|
139
|
+
"(Text) Matches none of": "(Texto) No coincide ninguno de",
|
|
140
|
+
"All (Contents and Formatting)": "Todo (contenido y formato)",
|
|
141
|
+
"Contents Only": "Sólo contenido",
|
|
142
|
+
"Formats Only": "Sólo formatos",
|
|
143
|
+
"GET": "RECOGER",
|
|
144
|
+
"POST": "POST",
|
|
145
|
+
"PATCH": "PATCH",
|
|
146
|
+
"PUT": "PUT",
|
|
147
|
+
"DELETE": "BORRAR",
|
|
148
|
+
"HEAD": "LIMPIO",
|
|
149
|
+
"None": "Ninguna",
|
|
150
|
+
"JSON": "JSON",
|
|
151
|
+
"Form Data": "Datos de Formulario",
|
|
152
|
+
"Raw": "Rápido",
|
|
153
|
+
"New Row": "Nueva fila",
|
|
154
|
+
"New Row in Table": "Nueva fila en la tabla",
|
|
155
|
+
"New Worksheet": "Nueva hoja de trabajo",
|
|
156
|
+
"Updated Row": "Fila actualizada",
|
|
157
|
+
"Trigger when a new row is added, and it can include existing rows as well.": "Activar cuando se agrega un nuevo registro, y también puede incluir registros existentes.",
|
|
158
|
+
"Fires when a new row is added to a table within a worksheet.": "Dispara cuando se agrega un nuevo registro a una tabla dentro de una hoja de cálculo.",
|
|
159
|
+
"Fires when a new worksheet is created in a workbook.": "Dispara cuando se crea una nueva hoja de trabajo en un libro.",
|
|
160
|
+
"Fires when a row (in a worksheet) is added or updated.": "Dispara cuando una fila (en una hoja de cálculo) es añadida o actualizada.",
|
|
161
|
+
"Max Rows to Poll": "Máximas filas a la encuesta",
|
|
162
|
+
"My table has headers": "Mi tabla tiene cabeceras",
|
|
163
|
+
"First row has headers": "La primera fila tiene cabeceras",
|
|
164
|
+
"The maximum number of rows to poll, the rest will be polled on the next run.": "El número máximo de filas a encuestar, el resto serán encuestados en la próxima ejecución.",
|
|
165
|
+
"Enable this if the first row of your table is a header row.": "Habilita esto si la primera fila de tu tabla es una fila de cabecera.",
|
|
166
|
+
"Enable this if the first row of your worksheet should be treated as headers.": "Habilite esto si la primera fila de su hoja de trabajo debe ser tratada como cabeceras."
|
|
167
|
+
}
|