@guayaba/workflow-piece-google-sheets 0.14.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +3 -0
- package/.eslintrc.json +18 -0
- package/README.md +5 -0
- package/assets/logo.png +0 -0
- package/package.json +28 -0
- package/src/i18n/ar.json +124 -0
- package/src/i18n/bg.json +124 -0
- package/src/i18n/ca.json +132 -0
- package/src/i18n/de.json +165 -0
- package/src/i18n/es.json +165 -0
- package/src/i18n/fr.json +165 -0
- package/src/i18n/hi.json +132 -0
- package/src/i18n/hu.json +124 -0
- package/src/i18n/hy.json +124 -0
- package/src/i18n/id.json +132 -0
- package/src/i18n/it.json +124 -0
- package/src/i18n/ja.json +165 -0
- package/src/i18n/ko.json +124 -0
- package/src/i18n/nl.json +165 -0
- package/src/i18n/pl.json +124 -0
- package/src/i18n/pt.json +165 -0
- package/src/i18n/ru.json +132 -0
- package/src/i18n/sv.json +124 -0
- package/src/i18n/translation.json +165 -0
- package/src/i18n/uk.json +124 -0
- package/src/i18n/vi.json +132 -0
- package/src/i18n/zh.json +165 -0
- package/src/index.ts +93 -0
- package/src/lib/actions/clear-sheet.ts +60 -0
- package/src/lib/actions/copy-worksheet.ts +32 -0
- package/src/lib/actions/create-column.ts +109 -0
- package/src/lib/actions/create-spreadsheet.ts +122 -0
- package/src/lib/actions/create-worksheet.ts +62 -0
- package/src/lib/actions/delete-row.action.ts +40 -0
- package/src/lib/actions/delete-worksheet.ts +36 -0
- package/src/lib/actions/export-sheet.ts +86 -0
- package/src/lib/actions/find-row-by-num.ts +42 -0
- package/src/lib/actions/find-rows.ts +135 -0
- package/src/lib/actions/find-spreadsheets.ts +83 -0
- package/src/lib/actions/find-worksheet.ts +52 -0
- package/src/lib/actions/format-spreadsheet-row.ts +112 -0
- package/src/lib/actions/get-many-rows.ts +42 -0
- package/src/lib/actions/get-rows.ts +207 -0
- package/src/lib/actions/insert-multiple-rows.action.ts +542 -0
- package/src/lib/actions/insert-row.action.ts +111 -0
- package/src/lib/actions/rename-worksheet.ts +44 -0
- package/src/lib/actions/update-multiple-rows.ts +177 -0
- package/src/lib/actions/update-row.ts +93 -0
- package/src/lib/common/common.ts +383 -0
- package/src/lib/common/props.ts +274 -0
- package/src/lib/triggers/helpers.ts +155 -0
- package/src/lib/triggers/new-or-updated-row.trigger.ts +299 -0
- package/src/lib/triggers/new-row-added-webhook.ts +182 -0
- package/src/lib/triggers/new-spreadsheet.ts +88 -0
- package/src/lib/triggers/new-worksheet.ts +96 -0
- package/tsconfig.json +16 -0
- package/tsconfig.lib.json +15 -0
package/src/i18n/de.json
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Create, edit, and collaborate on spreadsheets online": "Erstellen und bearbeiten Sie online Tabellenkalkulationen",
|
|
3
|
+
"Add Row": "Neue Zeile",
|
|
4
|
+
"Add Multiple Rows": "Mehrere Zeilen hinzufügen",
|
|
5
|
+
"Update Row": "Zeile aktualisieren",
|
|
6
|
+
"Update Multiple Rows": "Mehrere Zeilen aktualisieren",
|
|
7
|
+
"Delete Row": "Zeile löschen",
|
|
8
|
+
"Find Rows": "Zeilen finden",
|
|
9
|
+
"Create Spreadsheet": "Tabelle erstellen",
|
|
10
|
+
"Create Worksheet": "Arbeitsblatt erstellen",
|
|
11
|
+
"Clear Sheet": "Platte löschen",
|
|
12
|
+
"Delete Worksheet": "Arbeitsblatt löschen",
|
|
13
|
+
"Rename Worksheet": "Arbeitsblatt umbenennen",
|
|
14
|
+
"Format Row(s)": "Zeile(n) formatieren",
|
|
15
|
+
"Get Single Row by ID": "Einzelne Zeile per ID erhalten",
|
|
16
|
+
"Get next row(s)": "Nächste Zeile(n) holen",
|
|
17
|
+
"Get All Rows": "Alle Zeilen holen",
|
|
18
|
+
"Find Spreadsheet(s)": "Tabellenkalkulation(en) finden",
|
|
19
|
+
"Find Worksheet(s)": "Arbeitsblatt(e) finden",
|
|
20
|
+
"Copy Worksheet": "Arbeitsblatt kopieren",
|
|
21
|
+
"Create Spreadsheet Column": "Tabellenspalte erstellen",
|
|
22
|
+
"Export Worksheet": "Arbeitsblatt exportieren",
|
|
23
|
+
"Custom API Call": "Eigener API-Aufruf",
|
|
24
|
+
"Add a new row of data to a specific spreadsheet.": "Fügen Sie einer bestimmten Tabelle eine neue Datenzeile hinzu.",
|
|
25
|
+
"Add multiple rows of data at once to a specific spreadsheet.": "Fügen Sie mehrere Datensätze auf einmal einer bestimmten Tabelle hinzu.",
|
|
26
|
+
"Update the data in an existing row.": "Aktualisieren Sie die Daten in einer bestehenden Zeile.",
|
|
27
|
+
"Updates multiple rows in a specific spreadsheet.": "Aktualisiert mehrere Zeilen in einer bestimmten Tabellenkalkulation.",
|
|
28
|
+
"Delete a specific row from the selected sheet.": "Eine bestimmte Zeile aus der ausgewählten Tabelle löschen.",
|
|
29
|
+
"Look up rows in a worksheet based on a column value.": "Suchen Sie Datensätze in einem Arbeitsblatt basierend auf einem Spaltenwert.",
|
|
30
|
+
"Creates a blank spreadsheet.": "Erzeugt eine leere Tabelle.",
|
|
31
|
+
"Create a new blank worksheet with a title.": "Erstellen Sie ein neues leeres Arbeitsblatt mit einem Titel.",
|
|
32
|
+
"Clears all rows on an existing sheet.": "Löscht alle Zeilen auf einem vorhandenen Blatt.",
|
|
33
|
+
"Permanently delete a specific worksheet.": "Löschen Sie dauerhaft eine bestimmte Tabelle.",
|
|
34
|
+
"Rename specific worksheet.": "Benenne ein bestimmtes Arbeitsblatt um.",
|
|
35
|
+
"Format one or multiple rows in specific spreadsheet.": "Formatieren Sie eine oder mehrere Zeilen in einer bestimmten Tabelle.",
|
|
36
|
+
"Retrieve a specific row using its unique ID.": "Rufen Sie eine bestimmte Zeile mit ihrer eindeutigen ID ab.",
|
|
37
|
+
"Get next group of rows from a specifiec workheet": "Nächste Datensatzgruppe aus einem spezifiec-Arbeitsblatt abrufen",
|
|
38
|
+
"Get all the rows from a specific sheet.": "Holen Sie alle Zeilen aus einer bestimmten Tabelle.",
|
|
39
|
+
"Find spreadsheet(s) by name.": "Finde Tabellenkalkulation(en) nach Namen.",
|
|
40
|
+
"Finds a worksheet(s) by title.": "Findet eine Tabelle(n) nach Titel.",
|
|
41
|
+
"Creates a new worksheet by copying an existing one.": "Erstellt ein neues Arbeitsblatt, indem ein vorhandenes Exemplar kopiert wird.",
|
|
42
|
+
"Creates a new column in a specific spreadsheet.": "Erstellt eine neue Spalte in einer bestimmten Tabelle.",
|
|
43
|
+
"Download a worksheet as a CSV or TSV file.": "Laden Sie ein Arbeitsblatt als CSV- oder TSV-Datei herunter.",
|
|
44
|
+
"Make a custom API call to a specific endpoint": "Einen benutzerdefinierten API-Aufruf an einen bestimmten Endpunkt machen",
|
|
45
|
+
"Include Shared Drive Sheets ?": "Shared Drive Sheets einschließen ?",
|
|
46
|
+
"Spreadsheet": "Tabellenblatt",
|
|
47
|
+
"Worksheet": "Arbeitsblatt",
|
|
48
|
+
"First Row Contains Headers ?": "Erste Zeile enthält Kopfzeilen ?",
|
|
49
|
+
"As String": "Als Zeichenkette",
|
|
50
|
+
"Values": "Werte",
|
|
51
|
+
"Rows Data Format": "Datensatzformat",
|
|
52
|
+
"Overwrite Existing Data?": "Bestehende Daten überschreiben?",
|
|
53
|
+
"Avoid Duplicates?": "Duplikate vermeiden?",
|
|
54
|
+
"Duplicate Value Column": "Spalte Wert duplizieren",
|
|
55
|
+
"Header Row Number": "Nummer der Kopfzeile",
|
|
56
|
+
"Row Number": "Zeilennummer",
|
|
57
|
+
"Header Row": "Kopfzeile",
|
|
58
|
+
"Column Name": "Spaltenname",
|
|
59
|
+
"Search Value": "Suchwert",
|
|
60
|
+
"Exact Match": "Genaues Match",
|
|
61
|
+
"Starting Row": "Startzeile",
|
|
62
|
+
"Number of Rows": "Anzahl der Zeilen",
|
|
63
|
+
"Use Column Names": "Spaltennamen verwenden",
|
|
64
|
+
"Title": "Titel",
|
|
65
|
+
"Parent Folder": "Eltern-Ordner",
|
|
66
|
+
"Headers": "Kopfzeilen",
|
|
67
|
+
"New Sheet Name": "Neuer Plattenname",
|
|
68
|
+
"Starting row": "Starte Zeile",
|
|
69
|
+
"Ending row": "Endzeile",
|
|
70
|
+
"Background Color": "Hintergrundfarbe",
|
|
71
|
+
"Text Color": "Textfarbe",
|
|
72
|
+
"Make text bold": "Text fett machen",
|
|
73
|
+
"Make text Italic": "Text kursiv machen",
|
|
74
|
+
"Make text Strikethrough": "Text durchstreichen",
|
|
75
|
+
"Start Row": "Start-Zeile",
|
|
76
|
+
"Use header names for keys": "Headernamen für Schlüssel verwenden",
|
|
77
|
+
"Markdown": "Markdown",
|
|
78
|
+
"Memory Key": "Speicherschlüssel",
|
|
79
|
+
"Group Size": "Gruppengröße",
|
|
80
|
+
"Spreadsheet Name": "Tabellenname",
|
|
81
|
+
"Spreadsheet Containing the Worksheet to Copy": "Tabellenblatt mit dem zu kopierenden Arbeitsblatt",
|
|
82
|
+
"Worksheet to Copy": "Arbeitsblatt zum Kopieren",
|
|
83
|
+
"Spreadsheet to paste in": "Tabelle zum Einfügen",
|
|
84
|
+
"Column Index": "Spaltenindex",
|
|
85
|
+
"Export Format": "Exportformat",
|
|
86
|
+
"Return as Text": "Als Text zurückgeben",
|
|
87
|
+
"Method": "Methode",
|
|
88
|
+
"Query Parameters": "Abfrageparameter",
|
|
89
|
+
"Body Type": "Körpertyp",
|
|
90
|
+
"Body": "Körper",
|
|
91
|
+
"Response is Binary ?": "Antwort ist binär?",
|
|
92
|
+
"No Error on Failure": "Kein Fehler bei Fehler",
|
|
93
|
+
"Timeout (in seconds)": "Timeout (in Sekunden)",
|
|
94
|
+
"Follow redirects": "Weiterleitungen folgen",
|
|
95
|
+
"Turn this on to also see spreadsheets from Shared Drives.": "Aktivieren Sie dies, um auch Tabellenkalkulationen von Shared Drives zu sehen.",
|
|
96
|
+
"The ID of the spreadsheet to use.": "Die ID der zu verwendenden Tabellenkalkulation.",
|
|
97
|
+
"The ID of the worksheet to use.": "Die ID des zu verwendenden Arbeitsblatts.",
|
|
98
|
+
"Inserted values that are dates and formulas will be entered strings and have no effect": "Fügte Werte als Daten und Formeln werden eingegeben und haben keine Wirkung",
|
|
99
|
+
"The values to add": "Die Werte zum Hinzufügen",
|
|
100
|
+
"Select the format of the input values to be added into the worksheet.": "Wählen Sie das Format der Eingabewerte, die in die Tabelle aufgenommen werden sollen.",
|
|
101
|
+
"The values to add.": "Die Werte hinzuzufügen.",
|
|
102
|
+
"Enable this option to replace all existing data in the sheet with new data from your input. This will clear any extra rows beyond the updated range.": "Aktivieren Sie diese Option, um alle vorhandenen Daten im Blatt durch neue Daten aus Ihrer Eingabe zu ersetzen. Dadurch werden alle zusätzlichen Datensätze außerhalb des aktualisierten Bereichs gelöscht.",
|
|
103
|
+
"Enable this option to check for duplicate values before inserting data into the sheet. Only unique rows will be added based on the selected column.": "Aktivieren Sie diese Option, um vor dem Einfügen von Daten in das Tabellenblatt auf doppelte Werte zu überprüfen. Nur eindeutige Zeilen werden basierend auf der ausgewählten Spalte hinzugefügt.",
|
|
104
|
+
"The column to check for duplicate values.": "Die Spalte, die auf doppelte Werte überprüft werden soll.",
|
|
105
|
+
"Inserted values that are dates and formulas will be entered as strings and have no effect": "Fügte Werte als Daten und Formeln werden als Zeichenketten eingegeben und haben keine Wirkung",
|
|
106
|
+
"Enter the row number where your column headers are located (usually row 1).": "Geben Sie die Zeilennummer ein, in der sich die Spaltenüberschriften befinden (normalerweise Zeile 1).",
|
|
107
|
+
"The row number to update": "Die zu aktualisierende Zeilennummer",
|
|
108
|
+
"The values to update.": "Die zu aktualisierenden Werte.",
|
|
109
|
+
"Which row contains the headers?": "Welche Zeile enthält die Kopfzeilen?",
|
|
110
|
+
"The number of the row you want to delete.": "Die Nummer der Zeile, die Sie löschen möchten.",
|
|
111
|
+
"The name of the column to search in": "Der Name der zu durchsuchenden Spalte",
|
|
112
|
+
"The value to look for in the selected column. Leave empty to return all rows.": "Der Wert, nach dem in der ausgewählten Spalte gesucht werden soll. Lassen Sie leer, um alle Zeilen zurückzugeben.",
|
|
113
|
+
"Only return rows where the cell value exactly matches the search value.": "Gibt nur Datensätze zurück, bei denen der Zellwert genau mit dem Suchwert übereinstimmt.",
|
|
114
|
+
"Start searching from this row number.": "Suche nach dieser Zeilennummer starten.",
|
|
115
|
+
"How many rows to return. Defaults to 1 if not specified.": "Wie viele Zeilen zurückgegeben werden sollen. Die Standardwerte sind 1, wenn nicht angegeben.",
|
|
116
|
+
"The row number that contains the column names.": "Die Zeilennummer, die die Spaltennamen enthält.",
|
|
117
|
+
"Use column names as keys instead of A, B, C.": "Spaltennamen als Schlüssel anstelle von A, B, C verwenden.",
|
|
118
|
+
"The title of the new spreadsheet.": "Der Titel der neuen Tabelle.",
|
|
119
|
+
"The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.": "Der Ordner, in dem das Arbeitsblatt erstellt wird. Standardmäßig wird das neue Arbeitsblatt im Stammverzeichnis des Laufwerks erstellt.",
|
|
120
|
+
"The title of the new worksheet.": "Der Titel der neuen Tabelle.",
|
|
121
|
+
"The ID of the worksheet to delete.": "Die ID des zu löschenden Arbeitsblatts.",
|
|
122
|
+
"The ID of the worksheet to rename.": "Die ID des zu umbenennenden Arbeitsblatts.",
|
|
123
|
+
"The first row number where formatting should begin.": "Die erste Zeilennummer, in der die Formatierung beginnen soll.",
|
|
124
|
+
"The last row number where formatting should stop (leave empty to format only the starting row).": "Die letzte Zeilennummer, in der die Formatierung gestoppt werden soll (leer lassen um nur die Anfangszeile zu formatieren).",
|
|
125
|
+
"Provide a HEX color code (example: #FFD966)": "Geben Sie einen HEX-Farbcode ein (Beispiel: #FFD966)",
|
|
126
|
+
"Enter the row number you want to retrieve": "Geben Sie die Zeilennummer ein, die Sie abrufen möchten",
|
|
127
|
+
"Which row to start from?": "Von welcher Zeile soll begonnen werden?",
|
|
128
|
+
"Map A/B/C… to the actual column headers (row specified above).": "A/B/C… den aktuellen Spaltenüberschriften zuordnen (oben angegeben).",
|
|
129
|
+
"\n**Notes:**\n\n- Memory key is used to remember where last row was processed and will be used in the following runs.\n- Republishing the flow **keeps** the memory key value, If you want to start over **change** the memory key.\n": "\n**Notizen:**\n\n- Speicherschlüssel wird verwendet, um sich zu erinnern, wo die letzte Zeile verarbeitet wurde, und wird in den folgenden Ausläufen verwendet.\n- Wiederveröffentlichung des Ströms **verwahrt** den Speicherschlüsselwert, wenn Sie den Speicherschlüssel **ändern wollen** wollen.\n",
|
|
130
|
+
"The key used to store the current row number in memory": "Der Schlüssel, mit dem die aktuelle Zeilennummer im Speicher gespeichert wird",
|
|
131
|
+
"The number of rows to get": "Die Anzahl der zu erhaltenden Zeilen",
|
|
132
|
+
"Enter the name of the spreadsheet to search for": "Geben Sie den Namen der zu durchsuchenden Tabelle ein",
|
|
133
|
+
"If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.": "Wenn true gibt nur Tabellenkalkulationen zurück, die genau mit dem Namen übereinstimmen. Wenn falsch, gibt die Tabellenkalkulation den Namen zurück.",
|
|
134
|
+
"If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.": "Wenn aktiviert, geben Sie nur Arbeitsblätter zurück, die genau mit dem Namen übereinstimmen. Wenn falsch, geben Sie Arbeitsblätter zurück, die den Namen enthalten.",
|
|
135
|
+
"The column index starts from 1.For example, if you want to add a column to the third column, enter 3.Ff the input is less than 1 the column will be added after the last current column.": "Der Spaltenindex beginnt ab 1.Zum Beispiel, wenn Sie eine Spalte zur dritten Spalte hinzufügen möchten, geben Sie 3 ein. f die Eingabe kleiner als 1 ist, wird die Spalte nach der letzten aktuellen Spalte hinzugefügt.",
|
|
136
|
+
"Select the file type to export the sheet as.": "Wählen Sie den Dateityp, um das Blatt zu exportieren als.",
|
|
137
|
+
"Return the exported data as text instead of a file.": "Gibt die exportierten Daten als Text anstelle einer Datei zurück.",
|
|
138
|
+
"Authorization headers are injected automatically from your connection.": "Autorisierungs-Header werden automatisch von Ihrer Verbindung injiziert.",
|
|
139
|
+
"Enable for files like PDFs, images, etc.": "Aktivieren für Dateien wie PDFs, Bilder usw.",
|
|
140
|
+
"CSV": "CSV",
|
|
141
|
+
"JSON": "JSON",
|
|
142
|
+
"Column Names": "Spaltennamen",
|
|
143
|
+
"Comma Separated Values (.csv)": "Kommagetrennte Werte (.csv)",
|
|
144
|
+
"Tab Separated Values (.tsv)": "Tab-Trennwerte (.tsv)",
|
|
145
|
+
"GET": "ERHALTEN",
|
|
146
|
+
"POST": "POST",
|
|
147
|
+
"PATCH": "PATCH",
|
|
148
|
+
"PUT": "PUT",
|
|
149
|
+
"DELETE": "LÖSCHEN",
|
|
150
|
+
"HEAD": "HEAD",
|
|
151
|
+
"None": "Keine",
|
|
152
|
+
"Form Data": "Formulardaten",
|
|
153
|
+
"Raw": "Rohe",
|
|
154
|
+
"New or Updated Row": "Neue oder aktualisierte Zeile",
|
|
155
|
+
"New Row Added": "Neue Zeile hinzugefügt",
|
|
156
|
+
"New Spreadsheet": "Neues Tabellenblatt",
|
|
157
|
+
"New Worksheet": "Neues Arbeitsblatt",
|
|
158
|
+
"Triggers when a new row is added or modified in a spreadsheet.": "Wird ausgelöst, wenn eine neue Zeile in einer Tabelle hinzugefügt oder verändert wird.",
|
|
159
|
+
"Triggers when a new row is added to bottom of a spreadsheet.": "Wird ausgelöst, wenn eine neue Zeile am unteren Ende einer Tabelle hinzugefügt wird.",
|
|
160
|
+
"Triggers when a new spreadsheet is created.": "Wird ausgelöst, wenn eine neue Tabellenkalkulation erstellt wird.",
|
|
161
|
+
"Triggers when a worksheet is created in a spreadsheet.": "Wird ausgelöst, wenn eine Tabelle in einer Tabelle erstellt wird.",
|
|
162
|
+
"Trigger Column": "Spalte auslösen",
|
|
163
|
+
"Please note that there might be a delay of up to 3 minutes for the trigger to be fired, due to a delay from Google.": "Bitte beachten Sie, dass es aufgrund einer Verzögerung von Google eine Verzögerung von bis zu 3 Minuten geben kann, bis der Trigger angezündet wird.",
|
|
164
|
+
"Trigger on changes to cells in this column only. \nSelect **Any Column** if you want the flow to trigger on changes to any cell within the row.": "Trigger nur bei Änderungen an Zellen in dieser Spalte. \nWählen Sie **jede Spalte** aus, wenn der Fluss bei Änderungen an einer Zelle in der Reihe ausgelöst werden soll."
|
|
165
|
+
}
|
package/src/i18n/es.json
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Create, edit, and collaborate on spreadsheets online": "Crear, editar y colaborar en hojas de cálculo en línea",
|
|
3
|
+
"Add Row": "Añadir fila",
|
|
4
|
+
"Add Multiple Rows": "Añadir múltiples filas",
|
|
5
|
+
"Update Row": "Actualizar fila",
|
|
6
|
+
"Update Multiple Rows": "Actualizar múltiples filas",
|
|
7
|
+
"Delete Row": "Eliminar fila",
|
|
8
|
+
"Find Rows": "Encontrar filas",
|
|
9
|
+
"Create Spreadsheet": "Crear hoja de cálculo",
|
|
10
|
+
"Create Worksheet": "Crear hoja de trabajo",
|
|
11
|
+
"Clear Sheet": "Limpiar hoja",
|
|
12
|
+
"Delete Worksheet": "Eliminar hoja de trabajo",
|
|
13
|
+
"Rename Worksheet": "Renombrar hoja de trabajo",
|
|
14
|
+
"Format Row(s)": "Formatear fila(s)",
|
|
15
|
+
"Get Single Row by ID": "Obtener una fila por ID",
|
|
16
|
+
"Get next row(s)": "Obtener siguiente fila(s)",
|
|
17
|
+
"Get All Rows": "Obtener todas las filas",
|
|
18
|
+
"Find Spreadsheet(s)": "Buscar Hoja(s)",
|
|
19
|
+
"Find Worksheet(s)": "Buscar Hoja(s)",
|
|
20
|
+
"Copy Worksheet": "Copiar hoja de trabajo",
|
|
21
|
+
"Create Spreadsheet Column": "Crear columna de hoja de cálculo",
|
|
22
|
+
"Export Worksheet": "Exportar hoja de trabajo",
|
|
23
|
+
"Custom API Call": "Llamada API personalizada",
|
|
24
|
+
"Add a new row of data to a specific spreadsheet.": "Añadir una nueva fila de datos a una hoja de cálculo específica.",
|
|
25
|
+
"Add multiple rows of data at once to a specific spreadsheet.": "Agregue varias filas de datos a la vez a una hoja de cálculo específica.",
|
|
26
|
+
"Update the data in an existing row.": "Actualizar los datos en una fila existente.",
|
|
27
|
+
"Updates multiple rows in a specific spreadsheet.": "Actualiza múltiples filas en una hoja de cálculo específica.",
|
|
28
|
+
"Delete a specific row from the selected sheet.": "Eliminar una fila específica de la hoja seleccionada.",
|
|
29
|
+
"Look up rows in a worksheet based on a column value.": "Buscar registros en una hoja de trabajo basada en un valor de columna.",
|
|
30
|
+
"Creates a blank spreadsheet.": "Crea una hoja de cálculo en blanco.",
|
|
31
|
+
"Create a new blank worksheet with a title.": "Crear una nueva hoja de trabajo en blanco con un título.",
|
|
32
|
+
"Clears all rows on an existing sheet.": "Limpia todas las filas en una hoja existente.",
|
|
33
|
+
"Permanently delete a specific worksheet.": "Eliminar permanentemente una hoja de cálculo específica.",
|
|
34
|
+
"Rename specific worksheet.": "Cambiar el nombre de la hoja de trabajo.",
|
|
35
|
+
"Format one or multiple rows in specific spreadsheet.": "Formar una o varias filas en una hoja de cálculo específica.",
|
|
36
|
+
"Retrieve a specific row using its unique ID.": "Recuperar una fila específica usando su ID único.",
|
|
37
|
+
"Get next group of rows from a specifiec workheet": "Obtener el siguiente grupo de filas de una hoja de trabajo específica",
|
|
38
|
+
"Get all the rows from a specific sheet.": "Obtener todos los registros de una hoja específica.",
|
|
39
|
+
"Find spreadsheet(s) by name.": "Buscar hojas de cálculo por nombre.",
|
|
40
|
+
"Finds a worksheet(s) by title.": "Encuentra una hoja de cálculo por título.",
|
|
41
|
+
"Creates a new worksheet by copying an existing one.": "Crea una nueva hoja de trabajo copiando una existente.",
|
|
42
|
+
"Creates a new column in a specific spreadsheet.": "Crea una nueva columna en una hoja de cálculo específica.",
|
|
43
|
+
"Download a worksheet as a CSV or TSV file.": "Descargue una hoja de trabajo como archivo CSV o TSV.",
|
|
44
|
+
"Make a custom API call to a specific endpoint": "Hacer una llamada API personalizada a un extremo específico",
|
|
45
|
+
"Include Shared Drive Sheets ?": "¿Incluye Hojas de Unidad Compartidas?",
|
|
46
|
+
"Spreadsheet": "Hoja de cálculo",
|
|
47
|
+
"Worksheet": "Hoja de trabajo",
|
|
48
|
+
"First Row Contains Headers ?": "Primera fila contiene cabeceras ?",
|
|
49
|
+
"As String": "Como cadena",
|
|
50
|
+
"Values": "Valores",
|
|
51
|
+
"Rows Data Format": "Formato de datos de filas",
|
|
52
|
+
"Overwrite Existing Data?": "¿Sobrescribir datos existentes?",
|
|
53
|
+
"Avoid Duplicates?": "¿Evitar duplicados?",
|
|
54
|
+
"Duplicate Value Column": "Duplicar columna de valor",
|
|
55
|
+
"Header Row Number": "Número de fila de cabecera",
|
|
56
|
+
"Row Number": "Número de fila",
|
|
57
|
+
"Header Row": "Fila de cabecera",
|
|
58
|
+
"Column Name": "Nombre de columna",
|
|
59
|
+
"Search Value": "Valor de búsqueda",
|
|
60
|
+
"Exact Match": "Partida exacta",
|
|
61
|
+
"Starting Row": "Fila inicial",
|
|
62
|
+
"Number of Rows": "Número de filas",
|
|
63
|
+
"Use Column Names": "Usar nombres de columna",
|
|
64
|
+
"Title": "Título",
|
|
65
|
+
"Parent Folder": "Carpeta padre",
|
|
66
|
+
"Headers": "Encabezados",
|
|
67
|
+
"New Sheet Name": "Nuevo nombre de hoja",
|
|
68
|
+
"Starting row": "Fila inicial",
|
|
69
|
+
"Ending row": "Finalizando fila",
|
|
70
|
+
"Background Color": "Color de fondo",
|
|
71
|
+
"Text Color": "Color del texto",
|
|
72
|
+
"Make text bold": "Hacer texto en negrita",
|
|
73
|
+
"Make text Italic": "Hacer cursiva de texto",
|
|
74
|
+
"Make text Strikethrough": "Hacer Ataque de Texto",
|
|
75
|
+
"Start Row": "Iniciar fila",
|
|
76
|
+
"Use header names for keys": "Usar nombres de cabeceras para claves",
|
|
77
|
+
"Markdown": "Markdown",
|
|
78
|
+
"Memory Key": "Clave de memoria",
|
|
79
|
+
"Group Size": "Tamaño del grupo",
|
|
80
|
+
"Spreadsheet Name": "Nombre de la hoja de cálculo",
|
|
81
|
+
"Spreadsheet Containing the Worksheet to Copy": "Hoja de cálculo que contiene la hoja de trabajo a copiar",
|
|
82
|
+
"Worksheet to Copy": "Hoja de trabajo a copiar",
|
|
83
|
+
"Spreadsheet to paste in": "Hoja de cálculo para pegar en",
|
|
84
|
+
"Column Index": "Índice de columna",
|
|
85
|
+
"Export Format": "Exportar formato",
|
|
86
|
+
"Return as Text": "Volver como texto",
|
|
87
|
+
"Method": "Método",
|
|
88
|
+
"Query Parameters": "Parámetros de consulta",
|
|
89
|
+
"Body Type": "Tipo de cuerpo",
|
|
90
|
+
"Body": "Cuerpo",
|
|
91
|
+
"Response is Binary ?": "¿Respuesta es binaria?",
|
|
92
|
+
"No Error on Failure": "No hay ningún error en fallo",
|
|
93
|
+
"Timeout (in seconds)": "Tiempo de espera (en segundos)",
|
|
94
|
+
"Follow redirects": "Seguir redirecciones",
|
|
95
|
+
"Turn this on to also see spreadsheets from Shared Drives.": "Active esta opción para ver también hojas de cálculo de unidades compartidas.",
|
|
96
|
+
"The ID of the spreadsheet to use.": "El ID de la hoja de cálculo a utilizar.",
|
|
97
|
+
"The ID of the worksheet to use.": "El ID de la hoja de trabajo a utilizar.",
|
|
98
|
+
"Inserted values that are dates and formulas will be entered strings and have no effect": "Los valores insertados que son fechas y fórmulas serán introducidos cadenas y no tendrán efecto",
|
|
99
|
+
"The values to add": "Los valores a añadir",
|
|
100
|
+
"Select the format of the input values to be added into the worksheet.": "Seleccione el formato de los valores de entrada a añadir en la hoja de cálculo.",
|
|
101
|
+
"The values to add.": "Los valores a añadir.",
|
|
102
|
+
"Enable this option to replace all existing data in the sheet with new data from your input. This will clear any extra rows beyond the updated range.": "Active esta opción para reemplazar todos los datos existentes en la hoja por nuevos datos de su entrada. Esto borrará cualquier registro extra más allá del rango actualizado.",
|
|
103
|
+
"Enable this option to check for duplicate values before inserting data into the sheet. Only unique rows will be added based on the selected column.": "Active esta opción para buscar valores duplicados antes de insertar datos en la hoja. Sólo se añadirán filas únicas basándose en la columna seleccionada.",
|
|
104
|
+
"The column to check for duplicate values.": "La columna para comprobar los valores duplicados.",
|
|
105
|
+
"Inserted values that are dates and formulas will be entered as strings and have no effect": "Los valores insertados que son fechas y fórmulas se introducirán como cadenas y no tendrán efecto",
|
|
106
|
+
"Enter the row number where your column headers are located (usually row 1).": "Introduzca el número de fila donde se encuentran los encabezados de la columna (generalmente la fila 1).",
|
|
107
|
+
"The row number to update": "El número de fila a actualizar",
|
|
108
|
+
"The values to update.": "Los valores a actualizar.",
|
|
109
|
+
"Which row contains the headers?": "¿Qué fila contiene los encabezados?",
|
|
110
|
+
"The number of the row you want to delete.": "El número de la fila que desea eliminar.",
|
|
111
|
+
"The name of the column to search in": "El nombre de la columna en la que buscar",
|
|
112
|
+
"The value to look for in the selected column. Leave empty to return all rows.": "El valor a buscar en la columna seleccionada. Dejar vacío para devolver todas las filas.",
|
|
113
|
+
"Only return rows where the cell value exactly matches the search value.": "Devuelve sólo registros donde el valor de la celda coincide exactamente con el valor de la búsqueda.",
|
|
114
|
+
"Start searching from this row number.": "Empezar a buscar desde este número de fila.",
|
|
115
|
+
"How many rows to return. Defaults to 1 if not specified.": "Cuántos registros retornar. Por defecto es 1 si no se especifica.",
|
|
116
|
+
"The row number that contains the column names.": "El número de fila que contiene los nombres de columna.",
|
|
117
|
+
"Use column names as keys instead of A, B, C.": "Utilice nombres de columna como claves en lugar de A, B, C.",
|
|
118
|
+
"The title of the new spreadsheet.": "El título de la nueva hoja de cálculo.",
|
|
119
|
+
"The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.": "La carpeta en la que crear la hoja de trabajo. De forma predeterminada, la nueva hoja de trabajo se crea en la carpeta raíz de la unidad.",
|
|
120
|
+
"The title of the new worksheet.": "El título de la nueva hoja de cálculo.",
|
|
121
|
+
"The ID of the worksheet to delete.": "El ID de la hoja de trabajo a eliminar.",
|
|
122
|
+
"The ID of the worksheet to rename.": "El ID de la hoja de trabajo para renombrar.",
|
|
123
|
+
"The first row number where formatting should begin.": "El primer número de registro donde debe comenzar el formato.",
|
|
124
|
+
"The last row number where formatting should stop (leave empty to format only the starting row).": "El último número de registro donde debe detenerse el formato (dejar vacío para formatear sólo la fila inicial).",
|
|
125
|
+
"Provide a HEX color code (example: #FFD966)": "Proporciona un código de color HEX (ejemplo: #FFD966)",
|
|
126
|
+
"Enter the row number you want to retrieve": "Introduzca el número de fila que desea recuperar",
|
|
127
|
+
"Which row to start from?": "¿Desde qué fila empezar?",
|
|
128
|
+
"Map A/B/C… to the actual column headers (row specified above).": "Mapa A/B/C… a los encabezados de columna reales (fila especificada arriba).",
|
|
129
|
+
"\n**Notes:**\n\n- Memory key is used to remember where last row was processed and will be used in the following runs.\n- Republishing the flow **keeps** the memory key value, If you want to start over **change** the memory key.\n": "\n**Notas:**\n\n- La clave de memoria se utiliza para recordar en qué fila se procesó por última vez y se usará en las siguientes ejecuciones.\n- Volver a publicar el flujo **mantiene** el valor de la clave de memoria. Si deseas comenzar desde cero, **cambia** la clave de memoria.\n",
|
|
130
|
+
"The key used to store the current row number in memory": "La clave utilizada para almacenar el número de fila actual en la memoria",
|
|
131
|
+
"The number of rows to get": "El número de filas a obtener",
|
|
132
|
+
"Enter the name of the spreadsheet to search for": "Introduzca el nombre de la hoja de cálculo a buscar",
|
|
133
|
+
"If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.": "Si es verdadero, sólo devuelve hojas de cálculo que coincidan exactamente con el nombre. Si es falso, devuelve hojas de cálculo que contengan el nombre.",
|
|
134
|
+
"If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.": "Si es verdadero, sólo devuelve hojas de cálculo que coincidan exactamente con el nombre. Si es falso, devuelve hojas de cálculo que contengan el nombre.",
|
|
135
|
+
"The column index starts from 1.For example, if you want to add a column to the third column, enter 3.Ff the input is less than 1 the column will be added after the last current column.": "El índice de columna comienza desde 1.Por ejemplo, si desea agregar una columna a la tercera columna, introduzca 3. f la entrada es menor que 1 la columna será añadida después de la última columna actual.",
|
|
136
|
+
"Select the file type to export the sheet as.": "Seleccione el tipo de archivo para exportar la hoja.",
|
|
137
|
+
"Return the exported data as text instead of a file.": "Devuelve los datos exportados como texto en lugar de un archivo.",
|
|
138
|
+
"Authorization headers are injected automatically from your connection.": "Las cabeceras de autorización se inyectan automáticamente desde tu conexión.",
|
|
139
|
+
"Enable for files like PDFs, images, etc.": "Activar para archivos como PDFs, imágenes, etc.",
|
|
140
|
+
"CSV": "CSV",
|
|
141
|
+
"JSON": "JSON",
|
|
142
|
+
"Column Names": "Nombres de columna",
|
|
143
|
+
"Comma Separated Values (.csv)": "Valores separados por comas (.csv)",
|
|
144
|
+
"Tab Separated Values (.tsv)": "Pestaña Valores Separados (.tsv)",
|
|
145
|
+
"GET": "RECOGER",
|
|
146
|
+
"POST": "POST",
|
|
147
|
+
"PATCH": "PATCH",
|
|
148
|
+
"PUT": "PUT",
|
|
149
|
+
"DELETE": "BORRAR",
|
|
150
|
+
"HEAD": "LIMPIO",
|
|
151
|
+
"None": "Ninguna",
|
|
152
|
+
"Form Data": "Datos de Formulario",
|
|
153
|
+
"Raw": "Rápido",
|
|
154
|
+
"New or Updated Row": "Fila nueva o actualizada",
|
|
155
|
+
"New Row Added": "Nueva fila añadida",
|
|
156
|
+
"New Spreadsheet": "Nueva hoja de cálculo",
|
|
157
|
+
"New Worksheet": "Nueva hoja de trabajo",
|
|
158
|
+
"Triggers when a new row is added or modified in a spreadsheet.": "Se activa cuando se añade o modifica una nueva fila en una hoja de cálculo.",
|
|
159
|
+
"Triggers when a new row is added to bottom of a spreadsheet.": "Se activa cuando se añade una nueva fila a la parte inferior de una hoja de cálculo.",
|
|
160
|
+
"Triggers when a new spreadsheet is created.": "Se activa cuando se crea una nueva hoja de cálculo.",
|
|
161
|
+
"Triggers when a worksheet is created in a spreadsheet.": "Se activa cuando se crea una hoja de cálculo en una hoja de cálculo.",
|
|
162
|
+
"Trigger Column": "Columna de gatillo",
|
|
163
|
+
"Please note that there might be a delay of up to 3 minutes for the trigger to be fired, due to a delay from Google.": "Tenga en cuenta que puede haber un retraso de hasta 3 minutos para que el disparador se dispare, debido a un retraso de Google.",
|
|
164
|
+
"Trigger on changes to cells in this column only. \nSelect **Any Column** if you want the flow to trigger on changes to any cell within the row.": "Trigger on changes to cells in this column only. \nSelect **Any Column** if you want the flow to trigger on changes to any cell within the row."
|
|
165
|
+
}
|
package/src/i18n/fr.json
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Create, edit, and collaborate on spreadsheets online": "Créer, modifier et collaborer sur des feuilles de calcul en ligne",
|
|
3
|
+
"Add Row": "Ajouter une ligne",
|
|
4
|
+
"Add Multiple Rows": "Ajouter plusieurs lignes",
|
|
5
|
+
"Update Row": "Mettre à jour la ligne",
|
|
6
|
+
"Update Multiple Rows": "Mettre à jour plusieurs lignes",
|
|
7
|
+
"Delete Row": "Supprimer la ligne",
|
|
8
|
+
"Find Rows": "Trouver des lignes",
|
|
9
|
+
"Create Spreadsheet": "Créer une feuille de calcul",
|
|
10
|
+
"Create Worksheet": "Créer une feuille de calcul",
|
|
11
|
+
"Clear Sheet": "Vider la feuille",
|
|
12
|
+
"Delete Worksheet": "Supprimer la fiche",
|
|
13
|
+
"Rename Worksheet": "Renommer la fiche",
|
|
14
|
+
"Format Row(s)": "Formater la(les) ligne(s)",
|
|
15
|
+
"Get Single Row by ID": "Obtenir une seule ligne par ID",
|
|
16
|
+
"Get next row(s)": "Récupérer la/les lignes suivante(s)",
|
|
17
|
+
"Get All Rows": "Obtenir toutes les lignes",
|
|
18
|
+
"Find Spreadsheet(s)": "Trouver des feuilles de calcul",
|
|
19
|
+
"Find Worksheet(s)": "Trouver des feuilles de travail",
|
|
20
|
+
"Copy Worksheet": "Copier la feuille de travail",
|
|
21
|
+
"Create Spreadsheet Column": "Créer une colonne de feuille de calcul",
|
|
22
|
+
"Export Worksheet": "Exporter la fiche",
|
|
23
|
+
"Custom API Call": "Appel API personnalisé",
|
|
24
|
+
"Add a new row of data to a specific spreadsheet.": "Ajouter une nouvelle ligne de données à une feuille de calcul spécifique.",
|
|
25
|
+
"Add multiple rows of data at once to a specific spreadsheet.": "Ajouter plusieurs lignes de données en même temps à une feuille de calcul spécifique.",
|
|
26
|
+
"Update the data in an existing row.": "Mettre à jour les données dans une ligne existante.",
|
|
27
|
+
"Updates multiple rows in a specific spreadsheet.": "Met à jour plusieurs lignes dans une feuille de calcul spécifique.",
|
|
28
|
+
"Delete a specific row from the selected sheet.": "Supprimer une ligne spécifique de la feuille sélectionnée.",
|
|
29
|
+
"Look up rows in a worksheet based on a column value.": "Rechercher les lignes dans une feuille de travail basée sur la valeur d'une colonne.",
|
|
30
|
+
"Creates a blank spreadsheet.": "Crée une feuille de calcul vierge.",
|
|
31
|
+
"Create a new blank worksheet with a title.": "Créer une nouvelle feuille de travail vide avec un titre.",
|
|
32
|
+
"Clears all rows on an existing sheet.": "Efface toutes les lignes sur une feuille existante.",
|
|
33
|
+
"Permanently delete a specific worksheet.": "Supprimer définitivement une feuille de travail spécifique.",
|
|
34
|
+
"Rename specific worksheet.": "Renommer la feuille de travail spécifique.",
|
|
35
|
+
"Format one or multiple rows in specific spreadsheet.": "Formater une ou plusieurs lignes dans une feuille de calcul spécifique.",
|
|
36
|
+
"Retrieve a specific row using its unique ID.": "Récupère une ligne spécifique en utilisant son identifiant unique.",
|
|
37
|
+
"Get next group of rows from a specifiec workheet": "Récupère le groupe suivant de lignes depuis une feuille de travail spécifique",
|
|
38
|
+
"Get all the rows from a specific sheet.": "Récupère toutes les lignes depuis une feuille spécifique.",
|
|
39
|
+
"Find spreadsheet(s) by name.": "Trouver des feuilles de calcul par nom.",
|
|
40
|
+
"Finds a worksheet(s) by title.": "Trouve une feuille de travail par titre.",
|
|
41
|
+
"Creates a new worksheet by copying an existing one.": "Crée une nouvelle feuille de travail en copiant une feuille existante.",
|
|
42
|
+
"Creates a new column in a specific spreadsheet.": "Crée une nouvelle colonne dans une feuille de calcul spécifique.",
|
|
43
|
+
"Download a worksheet as a CSV or TSV file.": "Téléchargez une feuille de calcul sous forme de fichier CSV ou TSV.",
|
|
44
|
+
"Make a custom API call to a specific endpoint": "Passez un appel API personnalisé à un endpoint spécifique",
|
|
45
|
+
"Include Shared Drive Sheets ?": "Inclure les feuilles de lecteur partagées ?",
|
|
46
|
+
"Spreadsheet": "Feuille de calcul",
|
|
47
|
+
"Worksheet": "Feuille de travail",
|
|
48
|
+
"First Row Contains Headers ?": "La première ligne contient des en-têtes ?",
|
|
49
|
+
"As String": "Comme chaîne de caractères",
|
|
50
|
+
"Values": "Valeurs",
|
|
51
|
+
"Rows Data Format": "Format des lignes de données",
|
|
52
|
+
"Overwrite Existing Data?": "Écraser les données existantes ?",
|
|
53
|
+
"Avoid Duplicates?": "Éviter les doublons?",
|
|
54
|
+
"Duplicate Value Column": "Dupliquer la colonne de valeur",
|
|
55
|
+
"Header Row Number": "Numéro de ligne d'en-tête",
|
|
56
|
+
"Row Number": "Numéro de ligne",
|
|
57
|
+
"Header Row": "Ligne d'en-tête",
|
|
58
|
+
"Column Name": "Nom de la colonne",
|
|
59
|
+
"Search Value": "Valeur de la recherche",
|
|
60
|
+
"Exact Match": "Correspondance exacte",
|
|
61
|
+
"Starting Row": "Ligne de départ",
|
|
62
|
+
"Number of Rows": "Nombre de lignes",
|
|
63
|
+
"Use Column Names": "Utiliser les noms de colonnes",
|
|
64
|
+
"Title": "Titre de la feuille de calcul",
|
|
65
|
+
"Parent Folder": "Dossier parent",
|
|
66
|
+
"Headers": "En-têtes",
|
|
67
|
+
"New Sheet Name": "Nom de la nouvelle feuille",
|
|
68
|
+
"Starting row": "Ligne de départ",
|
|
69
|
+
"Ending row": "Ligne de fin",
|
|
70
|
+
"Background Color": "Couleur d'arrière-plan",
|
|
71
|
+
"Text Color": "Couleur du texte",
|
|
72
|
+
"Make text bold": "Faire du texte en gras",
|
|
73
|
+
"Make text Italic": "Rendre le texte italique",
|
|
74
|
+
"Make text Strikethrough": "Frappez le texte",
|
|
75
|
+
"Start Row": "Lancer la ligne",
|
|
76
|
+
"Use header names for keys": "Utiliser les noms des en-têtes pour les clés",
|
|
77
|
+
"Markdown": "Markdown",
|
|
78
|
+
"Memory Key": "Clé de mémoire",
|
|
79
|
+
"Group Size": "Nombre de lignes",
|
|
80
|
+
"Spreadsheet Name": "Nom de la feuille de calcul",
|
|
81
|
+
"Spreadsheet Containing the Worksheet to Copy": "Feuille de calcul contenant la feuille de travail à copier",
|
|
82
|
+
"Worksheet to Copy": "Feuille à copier",
|
|
83
|
+
"Spreadsheet to paste in": "Feuille de calcul dans laquelle coller",
|
|
84
|
+
"Column Index": "Index des colonnes",
|
|
85
|
+
"Export Format": "Format d'exportation",
|
|
86
|
+
"Return as Text": "Retourner en tant que texte",
|
|
87
|
+
"Method": "Méthode",
|
|
88
|
+
"Query Parameters": "Paramètres de requête",
|
|
89
|
+
"Body Type": "Body Type",
|
|
90
|
+
"Body": "Corps",
|
|
91
|
+
"Response is Binary ?": "La réponse est Binaire ?",
|
|
92
|
+
"No Error on Failure": "Aucune erreur en cas d'échec",
|
|
93
|
+
"Timeout (in seconds)": "Délai d'attente (en secondes)",
|
|
94
|
+
"Follow redirects": "Suivre les redirections",
|
|
95
|
+
"Turn this on to also see spreadsheets from Shared Drives.": "Activez cette option pour voir également les feuilles de calcul des lecteurs partagés.",
|
|
96
|
+
"The ID of the spreadsheet to use.": "L'ID de la feuille de calcul à utiliser.",
|
|
97
|
+
"The ID of the worksheet to use.": "L'ID de la feuille à utiliser.",
|
|
98
|
+
"Inserted values that are dates and formulas will be entered strings and have no effect": "Les valeurs insérées qui sont des dates et des formules seront entrées en tant que chaînes de caractères et ne seront pas interprétées",
|
|
99
|
+
"The values to add": "Les valeurs à ajouter",
|
|
100
|
+
"Select the format of the input values to be added into the worksheet.": "Sélectionnez le format des valeurs d'entrée à ajouter dans la feuille de travail.",
|
|
101
|
+
"The values to add.": "Les valeurs à ajouter.",
|
|
102
|
+
"Enable this option to replace all existing data in the sheet with new data from your input. This will clear any extra rows beyond the updated range.": "Activez cette option pour remplacer toutes les données existantes dans la feuille par de nouvelles données de votre entrée. Cela effacera toutes les lignes en dehors de la plage actualisée.",
|
|
103
|
+
"Enable this option to check for duplicate values before inserting data into the sheet. Only unique rows will be added based on the selected column.": "Activer cette option pour vérifier les valeurs en double avant d'insérer des données dans la feuille. Seules seront ajoutées des lignes uniques selon la colonne sélectionnée.",
|
|
104
|
+
"The column to check for duplicate values.": "La colonne à vérifier pour les valeurs en double.",
|
|
105
|
+
"Inserted values that are dates and formulas will be entered as strings and have no effect": "Les valeurs insérées qui sont des dates et des formules seront entrées en tant que chaînes de caractères et ne seront pas interprétées",
|
|
106
|
+
"Enter the row number where your column headers are located (usually row 1).": "Entrez le numéro de ligne où se trouvent les en-têtes de vos colonnes (généralement la ligne 1).",
|
|
107
|
+
"The row number to update": "Le numéro de ligne à mettre à jour",
|
|
108
|
+
"The values to update.": "Les valeurs à mettre à jour.",
|
|
109
|
+
"Which row contains the headers?": "Quelle ligne contient les en-têtes ?",
|
|
110
|
+
"The number of the row you want to delete.": "Le numéro de la ligne que vous voulez supprimer.",
|
|
111
|
+
"The name of the column to search in": "Le nom de la colonne dans laquelle rechercher",
|
|
112
|
+
"The value to look for in the selected column. Leave empty to return all rows.": "La valeur à rechercher dans la colonne sélectionnée. Laisser vide pour retourner toutes les lignes.",
|
|
113
|
+
"Only return rows where the cell value exactly matches the search value.": "Renvoie uniquement les lignes où la valeur de la cellule correspond exactement à la valeur de la recherche.",
|
|
114
|
+
"Start searching from this row number.": "Commencez la recherche à partir de ce numéro de ligne.",
|
|
115
|
+
"How many rows to return. Defaults to 1 if not specified.": "Combien de lignes retourner. 1 par défaut si non spécifié.",
|
|
116
|
+
"The row number that contains the column names.": "Le numéro de ligne qui contient les noms de colonnes.",
|
|
117
|
+
"Use column names as keys instead of A, B, C.": "Utiliser les noms de colonnes comme clés au lieu de A, B, C.",
|
|
118
|
+
"The title of the new spreadsheet.": "Le titre de la nouvelle feuille de calcul.",
|
|
119
|
+
"The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.": "Le dossier dans lequel créer la feuille de travail. Par défaut, la nouvelle feuille de travail est créée dans le dossier racine de Drive.",
|
|
120
|
+
"The title of the new worksheet.": "Le titre de la nouvelle feuille de travail.",
|
|
121
|
+
"The ID of the worksheet to delete.": "L'ID de la feuille à supprimer.",
|
|
122
|
+
"The ID of the worksheet to rename.": "L'ID de la feuille à renommer.",
|
|
123
|
+
"The first row number where formatting should begin.": "Le numéro de la première ligne où le formatage devrait commencer.",
|
|
124
|
+
"The last row number where formatting should stop (leave empty to format only the starting row).": "Le dernier numéro de ligne où le formatage doit s'arrêter (laisser vide pour formater seulement la ligne de départ).",
|
|
125
|
+
"Provide a HEX color code (example: #FFD966)": "Fournir un code de couleur HEX (exemple : #FFD966)",
|
|
126
|
+
"Enter the row number you want to retrieve": "Entrez le numéro de ligne que vous souhaitez récupérer",
|
|
127
|
+
"Which row to start from?": "Commencer à partir de quelle ligne ?",
|
|
128
|
+
"Map A/B/C… to the actual column headers (row specified above).": "Mappez A/B/C… aux en-têtes de colonnes réels (ligne spécifiée ci-dessus).",
|
|
129
|
+
"\n**Notes:**\n\n- Memory key is used to remember where last row was processed and will be used in the following runs.\n- Republishing the flow **keeps** the memory key value, If you want to start over **change** the memory key.\n": "\n**Remarques : **\n\n- La clé de mémoire est utilisée pour se souvenir de la dernière ligne traitée et sera utilisée lors des exécutions suivantes.\n- Republier le flow **conserve** la valeur de la clé de mémoire. Si vous souhaitez recommencer, **changez** la clé de mémoire.\n",
|
|
130
|
+
"The key used to store the current row number in memory": "La clé utilisée pour stocker le numéro de ligne actuel en mémoire",
|
|
131
|
+
"The number of rows to get": "Le nombre de lignes à récupérer",
|
|
132
|
+
"Enter the name of the spreadsheet to search for": "Entrez le nom de la feuille de calcul à rechercher",
|
|
133
|
+
"If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.": "Si vrai, retourne uniquement des feuilles de calcul qui correspondent exactement au nom. Si faux, retourne des feuilles de calcul qui contiennent le nom.",
|
|
134
|
+
"If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.": "Si vrai, retourne uniquement les feuilles de travail qui correspondent exactement au nom. Si faux, retourne les feuilles de travail qui contiennent le nom.",
|
|
135
|
+
"The column index starts from 1.For example, if you want to add a column to the third column, enter 3.Ff the input is less than 1 the column will be added after the last current column.": "L'index des colonnes commence à partir de 1. Par exemple, si vous voulez ajouter une colonne à la troisième colonne, entrez 3. Si l'entrée est inférieure à 1, la colonne sera ajoutée après la dernière colonne courante.",
|
|
136
|
+
"Select the file type to export the sheet as.": "Sélectionnez le type de fichier sous lequel exporter la feuille.",
|
|
137
|
+
"Return the exported data as text instead of a file.": "Retourne les données exportées sous forme de texte au lieu d'un fichier.",
|
|
138
|
+
"Authorization headers are injected automatically from your connection.": "Les en-têtes d'autorisation sont injectés automatiquement à partir de votre connexion.",
|
|
139
|
+
"Enable for files like PDFs, images, etc.": "Activer pour les fichiers comme les PDFs, les images, etc.",
|
|
140
|
+
"CSV": "CSV",
|
|
141
|
+
"JSON": "JSON",
|
|
142
|
+
"Column Names": "Noms des colonnes",
|
|
143
|
+
"Comma Separated Values (.csv)": "Valeurs séparées par des virgules (.csv)",
|
|
144
|
+
"Tab Separated Values (.tsv)": "Valeurs séparées par des tabulations (.tsv)",
|
|
145
|
+
"GET": "GET",
|
|
146
|
+
"POST": "POST",
|
|
147
|
+
"PATCH": "PATCH",
|
|
148
|
+
"PUT": "PUT",
|
|
149
|
+
"DELETE": "DELETE",
|
|
150
|
+
"HEAD": "HEAD",
|
|
151
|
+
"None": "Aucun",
|
|
152
|
+
"Form Data": "Données du formulaire",
|
|
153
|
+
"Raw": "Brut",
|
|
154
|
+
"New or Updated Row": "Ligne nouvelle ou mise à jour",
|
|
155
|
+
"New Row Added": "Nouvelle ligne ajoutée",
|
|
156
|
+
"New Spreadsheet": "Nouvelle feuille de calcul",
|
|
157
|
+
"New Worksheet": "Nouvelle feuille de travail",
|
|
158
|
+
"Triggers when a new row is added or modified in a spreadsheet.": "Se déclenche lorsqu'une nouvelle ligne est ajoutée ou modifiée dans une feuille de calcul.",
|
|
159
|
+
"Triggers when a new row is added to bottom of a spreadsheet.": "Se déclenche quand une nouvelle ligne est ajoutée en bas d'une feuille de calcul.",
|
|
160
|
+
"Triggers when a new spreadsheet is created.": "Se déclenche quand une nouvelle feuille de calcul est créée.",
|
|
161
|
+
"Triggers when a worksheet is created in a spreadsheet.": "Se déclenche quand une feuille est créée dans une feuille de calcul.",
|
|
162
|
+
"Trigger Column": "Colonne de déclenchement",
|
|
163
|
+
"Please note that there might be a delay of up to 3 minutes for the trigger to be fired, due to a delay from Google.": "Veuillez noter qu'il peut y avoir un délai de 3 minutes pour que le déclencheur soit activé en raison d'un délai de la part de Google.",
|
|
164
|
+
"Trigger on changes to cells in this column only. \nSelect **Any Column** if you want the flow to trigger on changes to any cell within the row.": "Déclencher sur les modifications aux cellules de cette colonne seulement. \nSélectionnez **N'importe quelle colonne** si vous voulez que le flux déclenche des changements sur n'importe quelle cellule de la ligne."
|
|
165
|
+
}
|