@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/src/i18n/fr.json
ADDED
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Spreadsheet software by Microsoft": "Logiciel de la feuille de calcul par 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": "Ajouter la ligne à la feuille de travail",
|
|
5
|
+
"Append Multiple Rows": "Ajouter plusieurs lignes",
|
|
6
|
+
"Get Worksheets": "Obtenir des feuilles de travail",
|
|
7
|
+
"Get Worksheet Rows": "Récupérer les lignes de feuilles de travail",
|
|
8
|
+
"Update Worksheet Rows": "Mettre à jour les lignes de la feuille de travail",
|
|
9
|
+
"Clear Worksheet": "Vider la fiche",
|
|
10
|
+
"Delete Worksheet": "Supprimer la fiche",
|
|
11
|
+
"Get Workbooks": "Obtenir des cahiers de travail",
|
|
12
|
+
"Get Worksheet Columns": "Obtenir les colonnes de la feuille de travail",
|
|
13
|
+
"Delete Workbook": "Supprimer le carnet de travail",
|
|
14
|
+
"Add a Worksheet to a Workbook": "Ajouter une feuille de travail à un cahier de travail",
|
|
15
|
+
"Get Table Rows": "Récupérer les lignes de la table",
|
|
16
|
+
"Get Table Columns": "Récupérer les colonnes de la table",
|
|
17
|
+
"Create Table": "Créer une table",
|
|
18
|
+
"Delete Table": "Supprimer la table",
|
|
19
|
+
"Lookup Table Column": "Colonne de table de recherche",
|
|
20
|
+
"Append Rows to a Table": "Ajouter les lignes à une table",
|
|
21
|
+
"Convert to Range": "Convertir en Portée",
|
|
22
|
+
"Create Workbook": "Créer un cahier de travail",
|
|
23
|
+
"Clear Column by Index": "Effacer la colonne par index",
|
|
24
|
+
"Clear Cells by Range": "Effacer les cellules à distance",
|
|
25
|
+
"Clear Row by ID": "Effacer la ligne par ID",
|
|
26
|
+
"Create Worksheet": "Créer une feuille de calcul",
|
|
27
|
+
"Find Row": "Trouver une ligne",
|
|
28
|
+
"Get Cells in Range": "Obtenir des cellules à portée",
|
|
29
|
+
"Get Row by ID": "Obtenir une ligne par ID",
|
|
30
|
+
"Get Worksheet by ID": "Obtenir la fiche par ID",
|
|
31
|
+
"Rename Worksheet": "Renommer la fiche",
|
|
32
|
+
"Custom API Call": "Appel API personnalisé",
|
|
33
|
+
"Append row of values to a worksheet": "Ajouter une ligne de valeurs à une feuille de calcul",
|
|
34
|
+
"Appends multiple row of values to a worksheet.": "Ajoute plusieurs lignes de valeurs à une feuille de travail.",
|
|
35
|
+
"Retrieve worksheets from a workbook": "Récupérer les feuilles de travail d'un classeur",
|
|
36
|
+
"Retrieve rows from a worksheet": "Récupérer les lignes d'une feuille de travail",
|
|
37
|
+
"Update a row in a worksheet": "Mettre à jour une ligne dans une feuille de calcul",
|
|
38
|
+
"Clear a worksheet": "Vider une fiche",
|
|
39
|
+
"Delete a worksheet in a workbook": "Supprimer une feuille de travail dans un cahier de travail",
|
|
40
|
+
"Retrieve a list of workbooks": "Récupérer une liste de classeurs",
|
|
41
|
+
"List columns of a worksheet.": "Liste les colonnes d'une feuille de travail.",
|
|
42
|
+
"Delete a workbook": "Supprimer un cahier de travail",
|
|
43
|
+
"Add a worksheet to a workbook": "Ajouter une feuille de travail à un cahier de travail",
|
|
44
|
+
"List rows of a table in a worksheet": "Liste les lignes d'une table dans une feuille de calcul",
|
|
45
|
+
"List columns of a table in a worksheet": "Liste les colonnes d'une table dans une feuille de travail",
|
|
46
|
+
"Create a table in a worksheet": "Créer une table dans une feuille de calcul",
|
|
47
|
+
"Delete a table from a worksheet": "Supprimer une table d'une feuille de calcul",
|
|
48
|
+
"Lookup a value in a table column in a worksheet": "Recherche une valeur dans une colonne de table dans une feuille de calcul",
|
|
49
|
+
"Append rows to a table": "Ajouter des lignes à une table",
|
|
50
|
+
"Converts a table to a range": "Convertit une table en une plage",
|
|
51
|
+
"Create a new workbook at the specified location": "Créer un nouveau cahier de travail à l'emplacement spécifié",
|
|
52
|
+
"Clear contents/formatting of a column by its index.": "Effacer le contenu/formatage d'une colonne par son index.",
|
|
53
|
+
"Clear a block of cells (range) content or formatting.": "Vider un bloc de cellules (rangées) contenu ou formatage.",
|
|
54
|
+
"Clear contents/formatting of an entire row by its ID.": "Effacer le contenu/formatage d'une ligne entière par son ID.",
|
|
55
|
+
"Add a new worksheet (tab) to an existing workbook with optional default headers.": "Ajouter une nouvelle feuille de travail (onglet) à un classeur existant avec des en-têtes optionnels par défaut.",
|
|
56
|
+
"Locate a row by specifying a lookup column and value (e.g. find a row where “ID” = 123).": "Localisez une ligne en spécifiant une colonne de recherche et une valeur (par exemple, trouver une ligne où « ID» = 123).",
|
|
57
|
+
"Retrieve the values in a given cell range (e.g., “A1:C10”).": "Récupère les valeurs dans une plage de cellules donnée (par exemple, « A1:C10 »).",
|
|
58
|
+
" Retrieve the entire content of a row by its row ID.": " Récupère tout le contenu d'une ligne par son identifiant de ligne.",
|
|
59
|
+
"Retrieve metadata of a worksheet by its ID.": "Récupère les métadonnées d'une feuille par son ID.",
|
|
60
|
+
"Change the name of an existing worksheet.": "Changer le nom d'une feuille de travail existante.",
|
|
61
|
+
"Make a custom API call to a specific endpoint": "Passez un appel API personnalisé à un point de terminaison spécifique",
|
|
62
|
+
"Workbook": "Carnet de travail",
|
|
63
|
+
"Worksheet": "Feuille de travail",
|
|
64
|
+
"Does the first row contain headers?": "La première ligne contient-elle des en-têtes ?",
|
|
65
|
+
"Values": "Valeurs",
|
|
66
|
+
"Markdown": "Markdown",
|
|
67
|
+
"Filter Column": "Filtrer la colonne",
|
|
68
|
+
"Filter Type": "Type de filtre",
|
|
69
|
+
"Filter Value": "Valeur du filtre",
|
|
70
|
+
"Return All": "Retourner tout",
|
|
71
|
+
"Limit": "Limite",
|
|
72
|
+
"Range": "Range",
|
|
73
|
+
"Header Row": "Ligne d'en-tête",
|
|
74
|
+
"First Data Row": "Première ligne de données",
|
|
75
|
+
"Row number": "Numéro de ligne",
|
|
76
|
+
"Worksheet Name": "Nom de la fiche",
|
|
77
|
+
"Table": "Tableau",
|
|
78
|
+
"Select Range": "Sélectionner la plage",
|
|
79
|
+
"Has Headers": "A des entêtes",
|
|
80
|
+
"Lookup Column": "Colonne de recherche",
|
|
81
|
+
"Lookup Value": "Valeur de recherche",
|
|
82
|
+
"Return All Matches": "Retourner tous les matchs",
|
|
83
|
+
"Name": "Nom",
|
|
84
|
+
"Parent Folder": "Dossier parent",
|
|
85
|
+
"Column Index": "Index des colonnes",
|
|
86
|
+
"Clear Type": "Effacer le type",
|
|
87
|
+
"Row Number": "Numéro de ligne",
|
|
88
|
+
"Headers": "En-têtes",
|
|
89
|
+
"Row ID (Index)": "ID de ligne (Index)",
|
|
90
|
+
"New Worksheet Name": "Nom de la nouvelle fiche",
|
|
91
|
+
"Method": "Méthode",
|
|
92
|
+
"Query Parameters": "Paramètres de requête",
|
|
93
|
+
"Body Type": "Body Type",
|
|
94
|
+
"Body": "Corps",
|
|
95
|
+
"Response is Binary ?": "La réponse est Binaire ?",
|
|
96
|
+
"No Error on Failure": "Aucune erreur en cas d'échec",
|
|
97
|
+
"Timeout (in seconds)": "Délai d'attente (en secondes)",
|
|
98
|
+
"Follow redirects": "Suivre les redirections",
|
|
99
|
+
"If the first row is headers": "Si la première ligne est des en-têtes",
|
|
100
|
+
"The values to insert": "Les valeurs à insérer",
|
|
101
|
+
"Use below Filter properties to insert only the rows that meet your conditions.": "Utilisez les propriétés de filtrage ci-dessous pour insérer uniquement les lignes qui répondent à vos conditions.",
|
|
102
|
+
"If checked, all worksheets will be returned": "Si coché, toutes les feuilles de travail seront retournées",
|
|
103
|
+
"Limit the number of worksheets returned": "Limiter le nombre de feuilles de travail retournées",
|
|
104
|
+
"Range of the rows to retrieve (e.g., A2:B2)": "Plage des lignes à récupérer (par exemple, A2:B2)",
|
|
105
|
+
"Row number of the header": "Numéro de ligne de l'en-tête",
|
|
106
|
+
"Row number of the first data row": "Numéro de ligne de la première ligne de données",
|
|
107
|
+
"The row number to update": "Le numéro de ligne à mettre à jour",
|
|
108
|
+
"The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet": "La plage en notation A1 (par exemple, A2:B2) à effacer dans la feuille de travail, si elle n'est pas fournie, effacer la feuille de travail entière",
|
|
109
|
+
"Limits the number of workbooks returned, returns all workbooks if empty": "Limite le nombre de classeurs retournés, retourne tous les classeurs si vide",
|
|
110
|
+
"The name of the new worksheet": "Le nom de la nouvelle fiche",
|
|
111
|
+
"Limit the number of rows retrieved": "Limiter le nombre de lignes récupérées",
|
|
112
|
+
"Limit the number of columns retrieved": "Limiter le nombre de colonnes récupérées",
|
|
113
|
+
"How to select the range for the table": "Comment sélectionner la plage pour la table",
|
|
114
|
+
"The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table": "La plage de cellules en notation A1 (par exemple, A2:B2) qui seront converties en table",
|
|
115
|
+
"Whether the range has column labels": "Si la plage a des libellés de colonnes",
|
|
116
|
+
"The column name to lookup the value in": "Le nom de la colonne dans laquelle rechercher la valeur",
|
|
117
|
+
"The value to lookup": "La valeur à rechercher",
|
|
118
|
+
"If checked, all matching rows will be returned": "Si coché, toutes les lignes correspondantes seront retournées",
|
|
119
|
+
"The name of the new workbook": "Le nom du nouveau classeur",
|
|
120
|
+
"The parent folder to use": "Le dossier parent à utiliser",
|
|
121
|
+
"The 1-based index of the column to be cleared (e.g., 1 for column A, 2 for column B).": "L'index basé sur 1 de la colonne à effacer (par exemple, 1 pour la colonne A, 2 pour la colonne B).",
|
|
122
|
+
"Specify what to clear from the column.": "Spécifie ce qu'il faut effacer de la colonne.",
|
|
123
|
+
"The range of cells to clear, in A1 notation (e.g., \"A1:C5\").": "La plage de cellules à effacer, en notation A1 (par exemple, \"A1:C5\").",
|
|
124
|
+
"Specify what to clear from the range.": "Spécifie ce qu'il faut effacer de l'intervalle.",
|
|
125
|
+
"The number of the row to be cleared (e.g., 5 for the 5th row).": "Le numéro de la ligne à effacer (par exemple, 5 pour la 5ème rangée).",
|
|
126
|
+
"Specify what to clear from the row.": "Spécifie ce qu'il faut effacer de la ligne.",
|
|
127
|
+
"The name for the new worksheet. If not provided, a default name like 'Sheet1' will be assigned.": "Le nom de la nouvelle feuille de travail. Si elle n'est pas fournie, un nom par défaut comme 'Sheet1' sera assigné.",
|
|
128
|
+
"Optional: A list of headers to add to the first row. A table will be created from these headers.": "Optionnel: Une liste d'entêtes à ajouter à la première ligne. Une table sera créée à partir de ces en-têtes.",
|
|
129
|
+
"The column to search in.": "La colonne à rechercher.",
|
|
130
|
+
"The value to find in the lookup column.": "La valeur à trouver dans la colonne de recherche.",
|
|
131
|
+
"The range of cells to retrieve, in A1 notation (e.g., \"A1:C10\").": "La plage de cellules à récupérer, en notation A1 (par exemple, \"A1:C10\").",
|
|
132
|
+
"The zero-based index of the row to retrieve (e.g., 0 for the first row, 1 for the second).": "L'index basé sur zéro de la ligne à récupérer (par exemple, 0 pour la première ligne, 1 pour la seconde).",
|
|
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.": "Les en-têtes d'autorisation sont injectés automatiquement à partir de votre connexion.",
|
|
135
|
+
"Enable for files like PDFs, images, etc.": "Activer pour les fichiers comme les PDFs, les images, etc.",
|
|
136
|
+
"(Text) Exactly matches": "(Texte) Correspond exactement",
|
|
137
|
+
"(Text) Does not exactly match": "(Texte) Ne correspond pas exactement",
|
|
138
|
+
"(Text) Matches any of": "(Texte) Correspond à l'un des",
|
|
139
|
+
"(Text) Matches none of": "(Texte) ne correspond à aucun de",
|
|
140
|
+
"All (Contents and Formatting)": "Tout (contenu et mise en forme)",
|
|
141
|
+
"Contents Only": "Contenu uniquement",
|
|
142
|
+
"Formats Only": "Formats seulement",
|
|
143
|
+
"GET": "OBTENIR",
|
|
144
|
+
"POST": "POSTER",
|
|
145
|
+
"PATCH": "PATCH",
|
|
146
|
+
"PUT": "EFFACER",
|
|
147
|
+
"DELETE": "SUPPRIMER",
|
|
148
|
+
"HEAD": "TÊTE",
|
|
149
|
+
"None": "Aucun",
|
|
150
|
+
"JSON": "JSON",
|
|
151
|
+
"Form Data": "Données du formulaire",
|
|
152
|
+
"Raw": "Brut",
|
|
153
|
+
"New Row": "Nouvelle ligne",
|
|
154
|
+
"New Row in Table": "Nouvelle ligne dans la table",
|
|
155
|
+
"New Worksheet": "Nouvelle feuille de travail",
|
|
156
|
+
"Updated Row": "Ligne mise à jour",
|
|
157
|
+
"Trigger when a new row is added, and it can include existing rows as well.": "Déclenche quand une nouvelle ligne est ajoutée, et peut également inclure des lignes existantes.",
|
|
158
|
+
"Fires when a new row is added to a table within a worksheet.": "Se déclenche lorsqu'une nouvelle ligne est ajoutée à une table dans une feuille de travail.",
|
|
159
|
+
"Fires when a new worksheet is created in a workbook.": "Déclenche lorsqu'une nouvelle feuille de travail est créée dans un classeur.",
|
|
160
|
+
"Fires when a row (in a worksheet) is added or updated.": "Déclenche lorsqu'une ligne (dans une feuille de travail) est ajoutée ou mise à jour.",
|
|
161
|
+
"Max Rows to Poll": "Nombre maximum de lignes au sondage",
|
|
162
|
+
"My table has headers": "Mon tableau a des en-têtes",
|
|
163
|
+
"First row has headers": "La première ligne a des en-têtes",
|
|
164
|
+
"The maximum number of rows to poll, the rest will be polled on the next run.": "Le nombre maximum de lignes à voter, le reste sera sondé lors de la prochaine exécution.",
|
|
165
|
+
"Enable this if the first row of your table is a header row.": "Activer cette option si la première ligne de votre table est une ligne d'en-tête.",
|
|
166
|
+
"Enable this if the first row of your worksheet should be treated as headers.": "Activer cette option si la première ligne de votre feuille de travail doit être traitée comme des en-têtes."
|
|
167
|
+
}
|
package/src/i18n/hi.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/id.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/ja.json
ADDED
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Spreadsheet software by Microsoft": "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": "行をワークシートに追加",
|
|
5
|
+
"Append Multiple Rows": "複数の行を追加",
|
|
6
|
+
"Get Worksheets": "ワークシートを取得",
|
|
7
|
+
"Get Worksheet Rows": "ワークシート行を取得",
|
|
8
|
+
"Update Worksheet Rows": "ワークシートの行を更新",
|
|
9
|
+
"Clear Worksheet": "ワークシートをクリア",
|
|
10
|
+
"Delete Worksheet": "ワークシートを削除",
|
|
11
|
+
"Get Workbooks": "ワークブックを入手",
|
|
12
|
+
"Get Worksheet Columns": "ワークシート列を取得",
|
|
13
|
+
"Delete Workbook": "ワークブックを削除",
|
|
14
|
+
"Add a Worksheet to a Workbook": "ワークシートをワークブックに追加",
|
|
15
|
+
"Get Table Rows": "表行の取得",
|
|
16
|
+
"Get Table Columns": "テーブル列の取得",
|
|
17
|
+
"Create Table": "テーブルを作成",
|
|
18
|
+
"Delete Table": "テーブルの削除",
|
|
19
|
+
"Lookup Table Column": "ルックアップテーブルの列",
|
|
20
|
+
"Append Rows to a Table": "表に行を追加",
|
|
21
|
+
"Convert to Range": "範囲に変換",
|
|
22
|
+
"Create Workbook": "ワークブックを作成",
|
|
23
|
+
"Clear Column by Index": "インデックスで列をクリア",
|
|
24
|
+
"Clear Cells by Range": "範囲でセルをクリア",
|
|
25
|
+
"Clear Row by ID": "IDで行をクリア",
|
|
26
|
+
"Create Worksheet": "ワークシートを作成",
|
|
27
|
+
"Find Row": "行を検索",
|
|
28
|
+
"Get Cells in Range": "セル範囲を取得する",
|
|
29
|
+
"Get Row by ID": "IDで行を取得",
|
|
30
|
+
"Get Worksheet by ID": "ワークシートを ID で取得",
|
|
31
|
+
"Rename Worksheet": "ワークシートの名前を変更",
|
|
32
|
+
"Custom API Call": "カスタムAPI呼び出し",
|
|
33
|
+
"Append row of values to a worksheet": "ワークシートに値の行を追加",
|
|
34
|
+
"Appends multiple row of values to a worksheet.": "ワークシートに複数の値の行を追加します。",
|
|
35
|
+
"Retrieve worksheets from a workbook": "ワークブックからワークシートを取得",
|
|
36
|
+
"Retrieve rows from a worksheet": "ワークシートから行を取得",
|
|
37
|
+
"Update a row in a worksheet": "ワークシートの行を更新",
|
|
38
|
+
"Clear a worksheet": "ワークシートをクリア",
|
|
39
|
+
"Delete a worksheet in a workbook": "ワークブック内のワークシートを削除",
|
|
40
|
+
"Retrieve a list of workbooks": "ワークブックの一覧を取得",
|
|
41
|
+
"List columns of a worksheet.": "ワークシートの列のリストです。",
|
|
42
|
+
"Delete a workbook": "ブックを削除する",
|
|
43
|
+
"Add a worksheet to a workbook": "ワークシートをワークブックに追加",
|
|
44
|
+
"List rows of a table in a worksheet": "ワークシート内のテーブルの行の一覧",
|
|
45
|
+
"List columns of a table in a worksheet": "ワークシート内のテーブルの列のリスト",
|
|
46
|
+
"Create a table in a worksheet": "ワークシートにテーブルを作成",
|
|
47
|
+
"Delete a table from a worksheet": "ワークシートからテーブルを削除",
|
|
48
|
+
"Lookup a value in a table column in a worksheet": "ワークシート内のテーブル列の値を参照する",
|
|
49
|
+
"Append rows to a table": "テーブルに行を追加",
|
|
50
|
+
"Converts a table to a range": "テーブルを範囲に変換します",
|
|
51
|
+
"Create a new workbook at the specified location": "指定された場所に新しいブックを作成",
|
|
52
|
+
"Clear contents/formatting of a column by its index.": "インデックスで列の内容/書式をクリアします。",
|
|
53
|
+
"Clear a block of cells (range) content or formatting.": "セル(範囲)の内容や書式設定のブロックをクリアします。",
|
|
54
|
+
"Clear contents/formatting of an entire row by its ID.": "行全体の内容/書式を ID でクリアします。",
|
|
55
|
+
"Add a new worksheet (tab) to an existing workbook with optional default headers.": "新しいワークシート(タブ)を既存のワークブックに追加します。",
|
|
56
|
+
"Locate a row by specifying a lookup column and value (e.g. find a row where “ID” = 123).": "検索列と値を指定して行を探します(例えば、「ID」=123の行を探します)。",
|
|
57
|
+
"Retrieve the values in a given cell range (e.g., “A1:C10”).": "指定されたセル範囲の値を取得します (例: A1:C10)。",
|
|
58
|
+
" Retrieve the entire content of a row by its row ID.": " 行IDで行全体の内容を取得します。",
|
|
59
|
+
"Retrieve metadata of a worksheet by its ID.": "IDでワークシートのメタデータを取得します。",
|
|
60
|
+
"Change the name of an existing worksheet.": "既存のワークシートの名前を変更します。",
|
|
61
|
+
"Make a custom API call to a specific endpoint": "特定のエンドポイントへのカスタム API コールを実行します。",
|
|
62
|
+
"Workbook": "ワークブック",
|
|
63
|
+
"Worksheet": "ワークシート",
|
|
64
|
+
"Does the first row contain headers?": "最初の行にはヘッダーが含まれていますか?",
|
|
65
|
+
"Values": "値",
|
|
66
|
+
"Markdown": "Markdown",
|
|
67
|
+
"Filter Column": "列をフィルターする",
|
|
68
|
+
"Filter Type": "フィルタタイプ",
|
|
69
|
+
"Filter Value": "フィルタの値",
|
|
70
|
+
"Return All": "すべて戻る",
|
|
71
|
+
"Limit": "制限",
|
|
72
|
+
"Range": "Range",
|
|
73
|
+
"Header Row": "ヘッダー行",
|
|
74
|
+
"First Data Row": "最初のデータ行",
|
|
75
|
+
"Row number": "行番号",
|
|
76
|
+
"Worksheet Name": "ワークシート名",
|
|
77
|
+
"Table": "表",
|
|
78
|
+
"Select Range": "範囲の選択",
|
|
79
|
+
"Has Headers": "ヘッダーがあります",
|
|
80
|
+
"Lookup Column": "検索列",
|
|
81
|
+
"Lookup Value": "ルックアップの値",
|
|
82
|
+
"Return All Matches": "すべての一致を返す",
|
|
83
|
+
"Name": "名前",
|
|
84
|
+
"Parent Folder": "親フォルダ",
|
|
85
|
+
"Column Index": "列のインデックス",
|
|
86
|
+
"Clear Type": "タイプをクリア",
|
|
87
|
+
"Row Number": "行番号",
|
|
88
|
+
"Headers": "ヘッダー",
|
|
89
|
+
"Row ID (Index)": "行 ID (インデックス)",
|
|
90
|
+
"New Worksheet Name": "新しいワークシート名",
|
|
91
|
+
"Method": "方法",
|
|
92
|
+
"Query Parameters": "クエリパラメータ",
|
|
93
|
+
"Body Type": "ボディタイプ",
|
|
94
|
+
"Body": "本文",
|
|
95
|
+
"Response is Binary ?": "応答はバイナリですか?",
|
|
96
|
+
"No Error on Failure": "失敗時にエラーはありません",
|
|
97
|
+
"Timeout (in seconds)": "タイムアウト(秒)",
|
|
98
|
+
"Follow redirects": "リダイレクトをフォローする",
|
|
99
|
+
"If the first row is headers": "最初の行がヘッダーの場合",
|
|
100
|
+
"The values to insert": "挿入する値",
|
|
101
|
+
"Use below Filter properties to insert only the rows that meet your conditions.": "条件に合う行のみを挿入するには、以下のformat@@0プロパティを使用します。",
|
|
102
|
+
"If checked, all worksheets will be returned": "チェックされている場合、すべてのワークシートが返されます",
|
|
103
|
+
"Limit the number of worksheets returned": "返されるワークシートの数を制限する",
|
|
104
|
+
"Range of the rows to retrieve (e.g., A2:B2)": "取得する行の範囲 (例: A2:B2)",
|
|
105
|
+
"Row number of the header": "ヘッダーの行番号",
|
|
106
|
+
"Row number of the first data row": "最初のデータ行の行番号",
|
|
107
|
+
"The row number to update": "更新する行番号",
|
|
108
|
+
"The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet": "A1 表記の範囲 (例: A2:B2) が指定されていない場合、ワークシート全体をクリアします",
|
|
109
|
+
"Limits the number of workbooks returned, returns all workbooks if empty": "返されたワークブックの数を制限します。空の場合はすべてのワークブックを返します。",
|
|
110
|
+
"The name of the new worksheet": "新しいワークシートの名前",
|
|
111
|
+
"Limit the number of rows retrieved": "取得した行数を制限する",
|
|
112
|
+
"Limit the number of columns retrieved": "取得した列の数を制限する",
|
|
113
|
+
"How to select the range for the table": "表の範囲を選択する方法",
|
|
114
|
+
"The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table": "A1表記のセル範囲 (例:A2:B2) がテーブルに変換されます。",
|
|
115
|
+
"Whether the range has column labels": "範囲に列ラベルがあるかどうか",
|
|
116
|
+
"The column name to lookup the value in": "値を検索する列名",
|
|
117
|
+
"The value to lookup": "検索する値",
|
|
118
|
+
"If checked, all matching rows will be returned": "チェックされている場合、一致するすべての行が返されます",
|
|
119
|
+
"The name of the new workbook": "新しいブックの名前",
|
|
120
|
+
"The parent folder to use": "使用する親フォルダ",
|
|
121
|
+
"The 1-based index of the column to be cleared (e.g., 1 for column A, 2 for column B).": "クリアする列の1ベースのインデックス(例えば、Aの場合は1、Bの場合は2)です。",
|
|
122
|
+
"Specify what to clear from the column.": "列から消去するものを指定します。",
|
|
123
|
+
"The range of cells to clear, in A1 notation (e.g., \"A1:C5\").": "A1表記(例:A1:C5)でクリアするセルの範囲。",
|
|
124
|
+
"Specify what to clear from the range.": "範囲からクリアするものを指定します。",
|
|
125
|
+
"The number of the row to be cleared (e.g., 5 for the 5th row).": "クリアする行の数(例:5行目)。",
|
|
126
|
+
"Specify what to clear from the row.": "行からクリアする項目を指定します。",
|
|
127
|
+
"The name for the new worksheet. If not provided, a default name like 'Sheet1' will be assigned.": "新しいワークシートの名前。指定されていない場合は、'Sheet1' のようなデフォルトの名前が割り当てられます。",
|
|
128
|
+
"Optional: A list of headers to add to the first row. A table will be created from these headers.": "オプション: 最初の行に追加するヘッダーのリスト。これらのヘッダーからテーブルが作成されます。",
|
|
129
|
+
"The column to search in.": "検索するカラム。",
|
|
130
|
+
"The value to find in the lookup column.": "ルックアップ列で検索する値。",
|
|
131
|
+
"The range of cells to retrieve, in A1 notation (e.g., \"A1:C10\").": "取得するセルの範囲(例:A1:C10\")。",
|
|
132
|
+
"The zero-based index of the row to retrieve (e.g., 0 for the first row, 1 for the second).": "取得する行のゼロベースのインデックス(最初の行の場合は0、2番目の行の場合は1)です。",
|
|
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.": "認証ヘッダは接続から自動的に注入されます。",
|
|
135
|
+
"Enable for files like PDFs, images, etc.": "PDF、画像などのファイルを有効にする",
|
|
136
|
+
"(Text) Exactly matches": "(テキスト)正確に一致",
|
|
137
|
+
"(Text) Does not exactly match": "(テキスト)完全に一致しません",
|
|
138
|
+
"(Text) Matches any of": "(テキスト)いずれかに一致する",
|
|
139
|
+
"(Text) Matches none of": "(テキスト)どれにも一致しません",
|
|
140
|
+
"All (Contents and Formatting)": "すべて(内容と書式設定)",
|
|
141
|
+
"Contents Only": "内容のみ",
|
|
142
|
+
"Formats Only": "書式のみ",
|
|
143
|
+
"GET": "GET",
|
|
144
|
+
"POST": "POST",
|
|
145
|
+
"PATCH": "PATCH",
|
|
146
|
+
"PUT": "PUT",
|
|
147
|
+
"DELETE": "DELETE",
|
|
148
|
+
"HEAD": "HEAD",
|
|
149
|
+
"None": "なし",
|
|
150
|
+
"JSON": "JSON",
|
|
151
|
+
"Form Data": "フォームデータ",
|
|
152
|
+
"Raw": "Raw",
|
|
153
|
+
"New Row": "新しい行",
|
|
154
|
+
"New Row in Table": "新しい行",
|
|
155
|
+
"New Worksheet": "新しいワークシート",
|
|
156
|
+
"Updated Row": "更新行",
|
|
157
|
+
"Trigger when a new row is added, and it can include existing rows as well.": "新しい行が追加されたときにトリガーされ、既存の行も含めることができます。",
|
|
158
|
+
"Fires when a new row is added to a table within a worksheet.": "ワークシート内のテーブルに新しい行が追加されたときに発生します。",
|
|
159
|
+
"Fires when a new worksheet is created in a workbook.": "ワークブックに新しいワークシートが作成されたときに発火します。",
|
|
160
|
+
"Fires when a row (in a worksheet) is added or updated.": "行(ワークシート内)が追加または更新されたときに発火します。",
|
|
161
|
+
"Max Rows to Poll": "アンケートへの最大行",
|
|
162
|
+
"My table has headers": "私のテーブルにはヘッダーがあります",
|
|
163
|
+
"First row has headers": "最初の行にヘッダーがあります",
|
|
164
|
+
"The maximum number of rows to poll, the rest will be polled on the next run.": "アンケートする行の最大数。残りは次の実行時にポーリングされます。",
|
|
165
|
+
"Enable this if the first row of your table is a header row.": "テーブルの最初の行がヘッダー行の場合、これを有効にします。",
|
|
166
|
+
"Enable this if the first row of your worksheet should be treated as headers.": "ワークシートの最初の行をヘッダーとして扱う場合は、これを有効にします。"
|
|
167
|
+
}
|