@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.
Files changed (57) hide show
  1. package/.babelrc +3 -0
  2. package/.eslintrc.json +18 -0
  3. package/README.md +5 -0
  4. package/assets/logo.png +0 -0
  5. package/package.json +28 -0
  6. package/src/i18n/ar.json +124 -0
  7. package/src/i18n/bg.json +124 -0
  8. package/src/i18n/ca.json +132 -0
  9. package/src/i18n/de.json +165 -0
  10. package/src/i18n/es.json +165 -0
  11. package/src/i18n/fr.json +165 -0
  12. package/src/i18n/hi.json +132 -0
  13. package/src/i18n/hu.json +124 -0
  14. package/src/i18n/hy.json +124 -0
  15. package/src/i18n/id.json +132 -0
  16. package/src/i18n/it.json +124 -0
  17. package/src/i18n/ja.json +165 -0
  18. package/src/i18n/ko.json +124 -0
  19. package/src/i18n/nl.json +165 -0
  20. package/src/i18n/pl.json +124 -0
  21. package/src/i18n/pt.json +165 -0
  22. package/src/i18n/ru.json +132 -0
  23. package/src/i18n/sv.json +124 -0
  24. package/src/i18n/translation.json +165 -0
  25. package/src/i18n/uk.json +124 -0
  26. package/src/i18n/vi.json +132 -0
  27. package/src/i18n/zh.json +165 -0
  28. package/src/index.ts +93 -0
  29. package/src/lib/actions/clear-sheet.ts +60 -0
  30. package/src/lib/actions/copy-worksheet.ts +32 -0
  31. package/src/lib/actions/create-column.ts +109 -0
  32. package/src/lib/actions/create-spreadsheet.ts +122 -0
  33. package/src/lib/actions/create-worksheet.ts +62 -0
  34. package/src/lib/actions/delete-row.action.ts +40 -0
  35. package/src/lib/actions/delete-worksheet.ts +36 -0
  36. package/src/lib/actions/export-sheet.ts +86 -0
  37. package/src/lib/actions/find-row-by-num.ts +42 -0
  38. package/src/lib/actions/find-rows.ts +135 -0
  39. package/src/lib/actions/find-spreadsheets.ts +83 -0
  40. package/src/lib/actions/find-worksheet.ts +52 -0
  41. package/src/lib/actions/format-spreadsheet-row.ts +112 -0
  42. package/src/lib/actions/get-many-rows.ts +42 -0
  43. package/src/lib/actions/get-rows.ts +207 -0
  44. package/src/lib/actions/insert-multiple-rows.action.ts +542 -0
  45. package/src/lib/actions/insert-row.action.ts +111 -0
  46. package/src/lib/actions/rename-worksheet.ts +44 -0
  47. package/src/lib/actions/update-multiple-rows.ts +177 -0
  48. package/src/lib/actions/update-row.ts +93 -0
  49. package/src/lib/common/common.ts +383 -0
  50. package/src/lib/common/props.ts +274 -0
  51. package/src/lib/triggers/helpers.ts +155 -0
  52. package/src/lib/triggers/new-or-updated-row.trigger.ts +299 -0
  53. package/src/lib/triggers/new-row-added-webhook.ts +182 -0
  54. package/src/lib/triggers/new-spreadsheet.ts +88 -0
  55. package/src/lib/triggers/new-worksheet.ts +96 -0
  56. package/tsconfig.json +16 -0
  57. package/tsconfig.lib.json +15 -0
@@ -0,0 +1,124 @@
1
+ {
2
+ "Google Sheets": "Google Sheets",
3
+ "Create, edit, and collaborate on spreadsheets online": "Create, edit, and collaborate on spreadsheets online",
4
+ "Insert Row": "Insert Row",
5
+ "Insert Multiple Rows": "Insert Multiple Rows",
6
+ "Delete Row": "Delete Row",
7
+ "Update Row": "Update Row",
8
+ "Find Rows": "Find Rows",
9
+ "Create Spreadsheet": "Create Spreadsheet",
10
+ "Create Worksheet": "Create Worksheet",
11
+ "Clear Sheet": "Clear Sheet",
12
+ "Get Row": "Get Row",
13
+ "Get next row(s)": "Get next row(s)",
14
+ "Find Spreadsheet(s)": "Find Spreadsheet(s)",
15
+ "Find Worksheet(s)": "Find Worksheet(s)",
16
+ "Copy Worksheet": "Copy Worksheet",
17
+ "Update Multiple Rows": "Update Multiple Rows",
18
+ "Create Spreadsheet Column": "Create Spreadsheet Column",
19
+ "Custom API Call": "Custom API Call",
20
+ "Append a row of values to an existing sheet": "Append a row of values to an existing sheet",
21
+ "Add one or more new rows in a specific spreadsheet.": "Add one or more new rows in a specific spreadsheet.",
22
+ "Delete a row on an existing sheet you have access to": "Delete a row on an existing sheet you have access to",
23
+ "Overwrite values in an existing row": "Overwrite values in an existing row",
24
+ "Find or get rows in a Google Sheet by column name and search value": "Find or get rows in a Google Sheet by column name and search value",
25
+ "Creates a blank spreadsheet.": "Creates a blank spreadsheet.",
26
+ "Create a blank worksheet with a title.": "Create a blank worksheet with a title.",
27
+ "Clears all rows on an existing sheet": "Clears all rows on an existing sheet",
28
+ "Get a row in a Google Sheet by row number": "Get a row in a Google Sheet by row number",
29
+ "Get next group of rows from a Google Sheet": "Get next group of rows from a Google Sheet",
30
+ "Find spreadsheet(s) by name.": "Find spreadsheet(s) by name.",
31
+ "Finds a worksheet(s) by title.": "Finds a worksheet(s) by title.",
32
+ "Creates a new worksheet by copying an existing one.": "Creates a new worksheet by copying an existing one.",
33
+ "Updates multiple rows in a specific spreadsheet.": "Updates multiple rows in a specific spreadsheet.",
34
+ "Adds a new column to a spreadsheet.": "Adds a new column to a spreadsheet.",
35
+ "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
36
+ "Include Team Drive Sheets ?": "Include Team Drive Sheets ?",
37
+ "Spreadsheet": "Spreadsheet",
38
+ "Sheet": "Sheet",
39
+ "As String": "As String",
40
+ "Does the first row contain headers?": "Does the first row contain headers?",
41
+ "Values": "Values",
42
+ "Rows Input Format": "Rows Input Format",
43
+ "Overwrite Existing Data?": "Overwrite Existing Data?",
44
+ "Avoid Duplicates?": "Avoid Duplicates?",
45
+ "Duplicate Value Column": "Duplicate Value Column",
46
+ "Row Number": "Row Number",
47
+ "The name of the column to search in": "The name of the column to search in",
48
+ "Search Value": "Search Value",
49
+ "Exact match": "Exact match",
50
+ "Starting Row": "Starting Row",
51
+ "Number of Rows": "Number of Rows",
52
+ "Title": "Title",
53
+ "Parent Folder": "Parent Folder",
54
+ "Headers": "Headers",
55
+ "Is First row Headers?": "Is First row Headers?",
56
+ "Start Row": "Start Row",
57
+ "Markdown": "Markdown",
58
+ "Memory Key": "Memory Key",
59
+ "Group Size": "Group Size",
60
+ "Spreadsheet Name": "Spreadsheet Name",
61
+ "Exact Match": "Exact Match",
62
+ "Spreadsheet Containing the Worksheet to Copy": "Spreadsheet Containing the Worksheet to Copy",
63
+ "Worksheet to Copy": "Worksheet to Copy",
64
+ "Spreadsheet to paste in": "Spreadsheet to paste in",
65
+ "Column Name": "Column Name",
66
+ "Column Index": "Column Index",
67
+ "Method": "Method",
68
+ "Query Parameters": "Query Parameters",
69
+ "Body": "Body",
70
+ "No Error on Failure": "No Error on Failure",
71
+ "Timeout (in seconds)": "Timeout (in seconds)",
72
+ "Determines if sheets from Team Drives should be included in the results.": "Determines if sheets from Team Drives should be included in the results.",
73
+ "The ID of the spreadsheet to use.": "The ID of the spreadsheet to use.",
74
+ "The ID of the sheet to use.": "The ID of the sheet to use.",
75
+ "Inserted values that are dates and formulas will be entered strings and have no effect": "Inserted values that are dates and formulas will be entered strings and have no effect",
76
+ "If the first row is headers": "If the first row is headers",
77
+ "The values to insert": "The values to insert",
78
+ "Select the format of the input values to be inserted into the sheet.": "Select the format of the input values to be inserted into the sheet.",
79
+ "The values to insert.": "The values to insert.",
80
+ "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.": "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.",
81
+ "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.": "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.",
82
+ "The column to check for duplicate values.": "The column to check for duplicate values.",
83
+ "Inserted values that are dates and formulas will be entered as strings and have no effect": "Inserted values that are dates and formulas will be entered as strings and have no effect",
84
+ "The row number to remove": "The row number to remove",
85
+ "The row number to update": "The row number to update",
86
+ "The value to search for in the specified column. If left empty, all rows will be returned.": "The value to search for in the specified column. If left empty, all rows will be returned.",
87
+ "Whether to choose the rows with exact match or choose the rows that contain the search value": "Whether to choose the rows with exact match or choose the rows that contain the search value",
88
+ "The row number to start searching from": "The row number to start searching from",
89
+ "The number of rows to return ( the default is 1 if not specified )": "The number of rows to return ( the default is 1 if not specified )",
90
+ "The title of the new spreadsheet.": "The title of the new spreadsheet.",
91
+ "The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.": "The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.",
92
+ "The title of the new worksheet.": "The title of the new worksheet.",
93
+ "The row number to get from the sheet": "The row number to get from the sheet",
94
+ "Which row to start from?": "Which row to start from?",
95
+ "\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**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",
96
+ "The key used to store the current row number in memory": "The key used to store the current row number in memory",
97
+ "The number of rows to get": "The number of rows to get",
98
+ "The name of the spreadsheet(s) to find.": "The name of the spreadsheet(s) to find.",
99
+ "If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.": "If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.",
100
+ "If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.": "If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.",
101
+ "The values to update.": "The values to update.",
102
+ "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.": "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.",
103
+ "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
104
+ "CSV": "CSV",
105
+ "JSON": "JSON",
106
+ "Column Names": "Column Names",
107
+ "GET": "GET",
108
+ "POST": "POST",
109
+ "PATCH": "PATCH",
110
+ "PUT": "PUT",
111
+ "DELETE": "DELETE",
112
+ "HEAD": "HEAD",
113
+ "New Row Added": "New Row Added",
114
+ "New or Updated Row": "New or Updated Row",
115
+ "New Spreadsheet": "New Spreadsheet",
116
+ "New Worksheet": "New Worksheet",
117
+ "Triggers when a new row is added to bottom of a spreadsheet.": "Triggers when a new row is added to bottom of a spreadsheet.",
118
+ "Triggers when a new row is added or modified in a spreadsheet.": "Triggers when a new row is added or modified in a spreadsheet.",
119
+ "Triggers when a new spreadsheet is created.": "Triggers when a new spreadsheet is created.",
120
+ "Triggers when a worksheet is created in a spreadsheet.": "Triggers when a worksheet is created in a spreadsheet.",
121
+ "Trigger Column": "Trigger Column",
122
+ "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.": "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.",
123
+ "Trigger on changes to cells in this column only.Select **All Columns** if you want the flow to trigger on changes to any cell within the row.": "Trigger on changes to cells in this column only.Select **All Columns** if you want the flow to trigger on changes to any cell within the row."
124
+ }
@@ -0,0 +1,165 @@
1
+ {
2
+ "Create, edit, and collaborate on spreadsheets online": "スプレッドシートをオンラインで作成、編集、共同編集します",
3
+ "Add Row": "行を追加",
4
+ "Add Multiple Rows": "複数の行を追加",
5
+ "Update Row": "行を更新",
6
+ "Update Multiple Rows": "複数の行を更新",
7
+ "Delete Row": "行を削除",
8
+ "Find Rows": "行を検索",
9
+ "Create Spreadsheet": "スプレッドシートを作成",
10
+ "Create Worksheet": "ワークシートを作成",
11
+ "Clear Sheet": "シートをクリア",
12
+ "Delete Worksheet": "ワークシートを削除",
13
+ "Rename Worksheet": "ワークシートの名前を変更",
14
+ "Format Row(s)": "行の書式設定",
15
+ "Get Single Row by ID": "IDで単一行を取得",
16
+ "Get next row(s)": "次の行を取得",
17
+ "Get All Rows": "すべての行を取得",
18
+ "Find Spreadsheet(s)": "スプレッドシートを検索",
19
+ "Find Worksheet(s)": "ワークシートを検索",
20
+ "Copy Worksheet": "ワークシートをコピー",
21
+ "Create Spreadsheet Column": "表計算ドキュメント列を作成",
22
+ "Export Worksheet": "ワークシートをエクスポート",
23
+ "Custom API Call": "カスタムAPI呼び出し",
24
+ "Add a new row of data to a specific spreadsheet.": "特定のスプレッドシートにデータの新しい行を追加します。",
25
+ "Add multiple rows of data at once to a specific spreadsheet.": "一度に複数行のデータを特定のスプレッドシートに追加します。",
26
+ "Update the data in an existing row.": "既存の行のデータを更新します。",
27
+ "Updates multiple rows in a specific spreadsheet.": "特定の表計算ドキュメント内の複数行を更新します。",
28
+ "Delete a specific row from the selected sheet.": "選択したシートから特定の行を削除します。",
29
+ "Look up rows in a worksheet based on a column value.": "列の値に基づいてワークシート内の行を検索します。",
30
+ "Creates a blank spreadsheet.": "空白のスプレッドシートを作成します。",
31
+ "Create a new blank worksheet with a title.": "新しい空白のワークシートをタイトルで作成します。",
32
+ "Clears all rows on an existing sheet.": "既存のシートのすべての行を消去します.",
33
+ "Permanently delete a specific worksheet.": "特定のワークシートを完全に削除します。",
34
+ "Rename specific worksheet.": "特定のワークシート名を変更します。",
35
+ "Format one or multiple rows in specific spreadsheet.": "1 つまたは複数の行を特定の表計算ドキュメントに書式設定します。",
36
+ "Retrieve a specific row using its unique ID.": "一意の ID を使用して特定の行を取得します。",
37
+ "Get next group of rows from a specifiec workheet": "指定子ワークシートから次の行のグループを取得します。",
38
+ "Get all the rows from a specific sheet.": "特定のシートからすべての行を取得します。",
39
+ "Find spreadsheet(s) by name.": "名前で表計算ドキュメントを検索します。",
40
+ "Finds a worksheet(s) by title.": "タイトルでワークシートを検索します。",
41
+ "Creates a new worksheet by copying an existing one.": "既存のワークシートをコピーして新しいワークシートを作成します。",
42
+ "Creates a new column in a specific spreadsheet.": "特定の表計算ドキュメントに新しい列を作成します。",
43
+ "Download a worksheet as a CSV or TSV file.": "ワークシートをCSVまたはTSVファイルとしてダウンロードします。",
44
+ "Make a custom API call to a specific endpoint": "特定のエンドポイントへのカスタム API コールを実行します。",
45
+ "Include Shared Drive Sheets ?": "共有ドライブシートを含めますか?",
46
+ "Spreadsheet": "表計算ドキュメント",
47
+ "Worksheet": "ワークシート",
48
+ "First Row Contains Headers ?": "最初の行にヘッダーが含まれていますか?",
49
+ "As String": "文字列として",
50
+ "Values": "値",
51
+ "Rows Data Format": "行データ形式",
52
+ "Overwrite Existing Data?": "既存のデータを上書きしますか?",
53
+ "Avoid Duplicates?": "重複を避けますか?",
54
+ "Duplicate Value Column": "重複した値の列",
55
+ "Header Row Number": "ヘッダー行番号",
56
+ "Row Number": "行番号",
57
+ "Header Row": "ヘッダー行",
58
+ "Column Name": "列名",
59
+ "Search Value": "検索値",
60
+ "Exact Match": "完全一致",
61
+ "Starting Row": "開始行",
62
+ "Number of Rows": "行数",
63
+ "Use Column Names": "列名を使用",
64
+ "Title": "タイトル",
65
+ "Parent Folder": "親フォルダ",
66
+ "Headers": "ヘッダー",
67
+ "New Sheet Name": "新規シート名",
68
+ "Starting row": "開始行",
69
+ "Ending row": "行の終了",
70
+ "Background Color": "背景色",
71
+ "Text Color": "テキストの色",
72
+ "Make text bold": "テキストを太字にする",
73
+ "Make text Italic": "テキストをイタリック体にする",
74
+ "Make text Strikethrough": "テキストの取り消し線",
75
+ "Start Row": "行を開始する",
76
+ "Use header names for keys": "キーにヘッダー名を使用",
77
+ "Markdown": "Markdown",
78
+ "Memory Key": "メモリーキー",
79
+ "Group Size": "グループサイズ",
80
+ "Spreadsheet Name": "スプレッドシート名",
81
+ "Spreadsheet Containing the Worksheet to Copy": "コピーするワークシートを含むスプレッドシート",
82
+ "Worksheet to Copy": "コピーするワークシート",
83
+ "Spreadsheet to paste in": "スプレッドシートを貼り付け",
84
+ "Column Index": "列のインデックス",
85
+ "Export Format": "エクスポート形式",
86
+ "Return as Text": "テキストとして戻る",
87
+ "Method": "方法",
88
+ "Query Parameters": "クエリパラメータ",
89
+ "Body Type": "ボディタイプ",
90
+ "Body": "本文",
91
+ "Response is Binary ?": "応答はバイナリですか?",
92
+ "No Error on Failure": "失敗時にエラーはありません",
93
+ "Timeout (in seconds)": "タイムアウト(秒)",
94
+ "Follow redirects": "リダイレクトをフォローする",
95
+ "Turn this on to also see spreadsheets from Shared Drives.": "これをオンにすると、共有ドライブのスプレッドシートも表示されます。",
96
+ "The ID of the spreadsheet to use.": "使用するスプレッドシートのID。",
97
+ "The ID of the worksheet to use.": "使用するワークシートのID。",
98
+ "Inserted values that are dates and formulas will be entered strings and have no effect": "日付と数式に挿入された値は文字列として入力され、効果はありません",
99
+ "The values to add": "追加する値",
100
+ "Select the format of the input values to be added into the worksheet.": "ワークシートに追加する入力値の書式を選択します。",
101
+ "The values to add.": "追加する値",
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.": "このオプションを有効にすると、シート内のすべての既存のデータを入力から新しいデータに置き換えることができます。 これにより、更新範囲を超える追加の行がクリアされます。",
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.": "このオプションを有効にすると、データをシートに挿入する前に重複する値をチェックできます。選択した列に基づいて一意の行のみが追加されます。",
104
+ "The column to check for duplicate values.": "重複値をチェックする列。",
105
+ "Inserted values that are dates and formulas will be entered as strings and have no effect": "日付と数式に挿入された値は文字列として入力され、効果はありません",
106
+ "Enter the row number where your column headers are located (usually row 1).": "列のヘッダーがある行番号を入力します(通常は行1)。",
107
+ "The row number to update": "更新する行番号",
108
+ "The values to update.": "更新する値",
109
+ "Which row contains the headers?": "どの行にヘッダーが含まれていますか?",
110
+ "The number of the row you want to delete.": "削除したい行の数。",
111
+ "The name of the column to search in": "検索する列の名前",
112
+ "The value to look for in the selected column. Leave empty to return all rows.": "選択した列で検索する値。すべての行を返す場合は空のままにします。",
113
+ "Only return rows where the cell value exactly matches the search value.": "セルの値が検索値に完全に一致する行のみを返します。",
114
+ "Start searching from this row number.": "この行番号から検索を開始します。",
115
+ "How many rows to return. Defaults to 1 if not specified.": "返す行数。指定されていない場合、デフォルトは 1 です。",
116
+ "The row number that contains the column names.": "列名を含む行番号。",
117
+ "Use column names as keys instead of A, B, C.": "A, B, C の代わりに列名をキーとして使用します。",
118
+ "The title of the new spreadsheet.": "新しい表計算ドキュメントのタイトル",
119
+ "The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.": "ワークシートを作成するフォルダデフォルトでは、新しいワークシートはドライブのルートフォルダに作成されます。",
120
+ "The title of the new worksheet.": "新しいワークシートのタイトル",
121
+ "The ID of the worksheet to delete.": "削除するワークシートのID。",
122
+ "The ID of the worksheet to rename.": "名前を変更するワークシートの ID",
123
+ "The first row number where formatting should begin.": "書式設定を開始する最初の行番号です。",
124
+ "The last row number where formatting should stop (leave empty to format only the starting row).": "書式設定が停止する最後の行番号です(開始行のみを書式設定するには空白のままにします)。",
125
+ "Provide a HEX color code (example: #FFD966)": "HEXカラーコードを提供します(例:#FFD966)",
126
+ "Enter the row number you want to retrieve": "取得したい行番号を入力してください",
127
+ "Which row to start from?": "どの行から始めますか?",
128
+ "Map A/B/C… to the actual column headers (row specified above).": "A/B/C… を実際の列のヘッダ(上で指定した行)にマップします。",
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**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",
130
+ "The key used to store the current row number in memory": "現在の行番号をメモリに保存するために使用されるキー",
131
+ "The number of rows to get": "取得する行数",
132
+ "Enter the name of the spreadsheet to search for": "検索するスプレッドシートの名前を入力してください",
133
+ "If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.": "true の場合、名前に完全に一致するスプレッドシートのみが返されます。false の場合、名前を含むスプレッドシートを返します。",
134
+ "If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.": "true の場合、名前に完全に一致するワークシートのみを返します。false の場合は、名前を含むワークシートを返します。",
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.": "列のインデックスは1から始まります。たとえば、3番目の列に列を追加する場合は、3と入力します。 fの入力は1より小さい場合、列は現在の列の後に追加されます。",
136
+ "Select the file type to export the sheet as.": "シートをエクスポートするファイルの種類を選択します。",
137
+ "Return the exported data as text instead of a file.": "エクスポートされたデータをファイルの代わりにテキストとして返します。",
138
+ "Authorization headers are injected automatically from your connection.": "認証ヘッダは接続から自動的に注入されます。",
139
+ "Enable for files like PDFs, images, etc.": "PDF、画像などのファイルを有効にする",
140
+ "CSV": "CSV",
141
+ "JSON": "JSON",
142
+ "Column Names": "列名",
143
+ "Comma Separated Values (.csv)": "カンマ区切り値 (.csv)",
144
+ "Tab Separated Values (.tsv)": "format@@0 タブ (.tsv)",
145
+ "GET": "GET",
146
+ "POST": "POST",
147
+ "PATCH": "PATCH",
148
+ "PUT": "PUT",
149
+ "DELETE": "DELETE",
150
+ "HEAD": "HEAD",
151
+ "None": "なし",
152
+ "Form Data": "フォームデータ",
153
+ "Raw": "Raw",
154
+ "New or Updated Row": "新規または更新行",
155
+ "New Row Added": "新しい行を追加しました",
156
+ "New Spreadsheet": "新規表計算ドキュメント",
157
+ "New Worksheet": "新しいワークシート",
158
+ "Triggers when a new row is added or modified in a spreadsheet.": "スプレッドシートに新しい行が追加または変更されたときにトリガーされます。",
159
+ "Triggers when a new row is added to bottom of a spreadsheet.": "スプレッドシートの下部に新しい行が追加されたときにトリガーされます。",
160
+ "Triggers when a new spreadsheet is created.": "新しいスプレッドシートが作成されたときにトリガーします。",
161
+ "Triggers when a worksheet is created in a spreadsheet.": "ワークシートがスプレッドシートに作成されたときにトリガーされます。",
162
+ "Trigger Column": "トリガー列",
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.": "Googleからの遅延により、トリガーが発生するまでに最大3分間の遅延が発生する場合がありますのでご注意ください。",
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.": "この列のセルの変更のみをトリガーします。 \n行内の任意のセルへの変更をトリガーするフローを使用する場合は、**任意の列** を選択します。"
165
+ }
@@ -0,0 +1,124 @@
1
+ {
2
+ "Google Sheets": "Google Sheets",
3
+ "Create, edit, and collaborate on spreadsheets online": "Create, edit, and collaborate on spreadsheets online",
4
+ "Insert Row": "Insert Row",
5
+ "Insert Multiple Rows": "Insert Multiple Rows",
6
+ "Delete Row": "Delete Row",
7
+ "Update Row": "Update Row",
8
+ "Find Rows": "Find Rows",
9
+ "Create Spreadsheet": "Create Spreadsheet",
10
+ "Create Worksheet": "Create Worksheet",
11
+ "Clear Sheet": "Clear Sheet",
12
+ "Get Row": "Get Row",
13
+ "Get next row(s)": "Get next row(s)",
14
+ "Find Spreadsheet(s)": "Find Spreadsheet(s)",
15
+ "Find Worksheet(s)": "Find Worksheet(s)",
16
+ "Copy Worksheet": "Copy Worksheet",
17
+ "Update Multiple Rows": "Update Multiple Rows",
18
+ "Create Spreadsheet Column": "Create Spreadsheet Column",
19
+ "Custom API Call": "Custom API Call",
20
+ "Append a row of values to an existing sheet": "Append a row of values to an existing sheet",
21
+ "Add one or more new rows in a specific spreadsheet.": "Add one or more new rows in a specific spreadsheet.",
22
+ "Delete a row on an existing sheet you have access to": "Delete a row on an existing sheet you have access to",
23
+ "Overwrite values in an existing row": "Overwrite values in an existing row",
24
+ "Find or get rows in a Google Sheet by column name and search value": "Find or get rows in a Google Sheet by column name and search value",
25
+ "Creates a blank spreadsheet.": "Creates a blank spreadsheet.",
26
+ "Create a blank worksheet with a title.": "Create a blank worksheet with a title.",
27
+ "Clears all rows on an existing sheet": "Clears all rows on an existing sheet",
28
+ "Get a row in a Google Sheet by row number": "Get a row in a Google Sheet by row number",
29
+ "Get next group of rows from a Google Sheet": "Get next group of rows from a Google Sheet",
30
+ "Find spreadsheet(s) by name.": "Find spreadsheet(s) by name.",
31
+ "Finds a worksheet(s) by title.": "Finds a worksheet(s) by title.",
32
+ "Creates a new worksheet by copying an existing one.": "Creates a new worksheet by copying an existing one.",
33
+ "Updates multiple rows in a specific spreadsheet.": "Updates multiple rows in a specific spreadsheet.",
34
+ "Adds a new column to a spreadsheet.": "Adds a new column to a spreadsheet.",
35
+ "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
36
+ "Include Team Drive Sheets ?": "Include Team Drive Sheets ?",
37
+ "Spreadsheet": "Spreadsheet",
38
+ "Sheet": "Sheet",
39
+ "As String": "As String",
40
+ "Does the first row contain headers?": "Does the first row contain headers?",
41
+ "Values": "Values",
42
+ "Rows Input Format": "Rows Input Format",
43
+ "Overwrite Existing Data?": "Overwrite Existing Data?",
44
+ "Avoid Duplicates?": "Avoid Duplicates?",
45
+ "Duplicate Value Column": "Duplicate Value Column",
46
+ "Row Number": "Row Number",
47
+ "The name of the column to search in": "The name of the column to search in",
48
+ "Search Value": "Search Value",
49
+ "Exact match": "Exact match",
50
+ "Starting Row": "Starting Row",
51
+ "Number of Rows": "Number of Rows",
52
+ "Title": "Title",
53
+ "Parent Folder": "Parent Folder",
54
+ "Headers": "Headers",
55
+ "Is First row Headers?": "Is First row Headers?",
56
+ "Start Row": "Start Row",
57
+ "Markdown": "Markdown",
58
+ "Memory Key": "Memory Key",
59
+ "Group Size": "Group Size",
60
+ "Spreadsheet Name": "Spreadsheet Name",
61
+ "Exact Match": "Exact Match",
62
+ "Spreadsheet Containing the Worksheet to Copy": "Spreadsheet Containing the Worksheet to Copy",
63
+ "Worksheet to Copy": "Worksheet to Copy",
64
+ "Spreadsheet to paste in": "Spreadsheet to paste in",
65
+ "Column Name": "Column Name",
66
+ "Column Index": "Column Index",
67
+ "Method": "Method",
68
+ "Query Parameters": "Query Parameters",
69
+ "Body": "Body",
70
+ "No Error on Failure": "No Error on Failure",
71
+ "Timeout (in seconds)": "Timeout (in seconds)",
72
+ "Determines if sheets from Team Drives should be included in the results.": "Determines if sheets from Team Drives should be included in the results.",
73
+ "The ID of the spreadsheet to use.": "The ID of the spreadsheet to use.",
74
+ "The ID of the sheet to use.": "The ID of the sheet to use.",
75
+ "Inserted values that are dates and formulas will be entered strings and have no effect": "Inserted values that are dates and formulas will be entered strings and have no effect",
76
+ "If the first row is headers": "If the first row is headers",
77
+ "The values to insert": "The values to insert",
78
+ "Select the format of the input values to be inserted into the sheet.": "Select the format of the input values to be inserted into the sheet.",
79
+ "The values to insert.": "The values to insert.",
80
+ "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.": "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.",
81
+ "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.": "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.",
82
+ "The column to check for duplicate values.": "The column to check for duplicate values.",
83
+ "Inserted values that are dates and formulas will be entered as strings and have no effect": "Inserted values that are dates and formulas will be entered as strings and have no effect",
84
+ "The row number to remove": "The row number to remove",
85
+ "The row number to update": "The row number to update",
86
+ "The value to search for in the specified column. If left empty, all rows will be returned.": "The value to search for in the specified column. If left empty, all rows will be returned.",
87
+ "Whether to choose the rows with exact match or choose the rows that contain the search value": "Whether to choose the rows with exact match or choose the rows that contain the search value",
88
+ "The row number to start searching from": "The row number to start searching from",
89
+ "The number of rows to return ( the default is 1 if not specified )": "The number of rows to return ( the default is 1 if not specified )",
90
+ "The title of the new spreadsheet.": "The title of the new spreadsheet.",
91
+ "The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.": "The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.",
92
+ "The title of the new worksheet.": "The title of the new worksheet.",
93
+ "The row number to get from the sheet": "The row number to get from the sheet",
94
+ "Which row to start from?": "Which row to start from?",
95
+ "\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**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",
96
+ "The key used to store the current row number in memory": "The key used to store the current row number in memory",
97
+ "The number of rows to get": "The number of rows to get",
98
+ "The name of the spreadsheet(s) to find.": "The name of the spreadsheet(s) to find.",
99
+ "If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.": "If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.",
100
+ "If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.": "If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.",
101
+ "The values to update.": "The values to update.",
102
+ "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.": "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.",
103
+ "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
104
+ "CSV": "CSV",
105
+ "JSON": "JSON",
106
+ "Column Names": "Column Names",
107
+ "GET": "GET",
108
+ "POST": "POST",
109
+ "PATCH": "PATCH",
110
+ "PUT": "PUT",
111
+ "DELETE": "DELETE",
112
+ "HEAD": "HEAD",
113
+ "New Row Added": "New Row Added",
114
+ "New or Updated Row": "New or Updated Row",
115
+ "New Spreadsheet": "New Spreadsheet",
116
+ "New Worksheet": "New Worksheet",
117
+ "Triggers when a new row is added to bottom of a spreadsheet.": "Triggers when a new row is added to bottom of a spreadsheet.",
118
+ "Triggers when a new row is added or modified in a spreadsheet.": "Triggers when a new row is added or modified in a spreadsheet.",
119
+ "Triggers when a new spreadsheet is created.": "Triggers when a new spreadsheet is created.",
120
+ "Triggers when a worksheet is created in a spreadsheet.": "Triggers when a worksheet is created in a spreadsheet.",
121
+ "Trigger Column": "Trigger Column",
122
+ "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.": "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.",
123
+ "Trigger on changes to cells in this column only.Select **All Columns** if you want the flow to trigger on changes to any cell within the row.": "Trigger on changes to cells in this column only.Select **All Columns** if you want the flow to trigger on changes to any cell within the row."
124
+ }
@@ -0,0 +1,165 @@
1
+ {
2
+ "Create, edit, and collaborate on spreadsheets online": "Creëer, bewerk en werk online samen op spreadsheets",
3
+ "Add Row": "Rij toevoegen",
4
+ "Add Multiple Rows": "Meerdere rijen toevoegen",
5
+ "Update Row": "Rij bijwerken",
6
+ "Update Multiple Rows": "Meerdere rijen bijwerken",
7
+ "Delete Row": "Verwijder rij",
8
+ "Find Rows": "Vind rijen",
9
+ "Create Spreadsheet": "Spreadsheet aanmaken",
10
+ "Create Worksheet": "Werkblad aanmaken",
11
+ "Clear Sheet": "Maak Sheet leeg",
12
+ "Delete Worksheet": "Werkblad verwijderen",
13
+ "Rename Worksheet": "Werkblad hernoemen",
14
+ "Format Row(s)": "Formateer rij(en)",
15
+ "Get Single Row by ID": "Krijg Enkele Rij op ID",
16
+ "Get next row(s)": "Krijg volgende rij(en)",
17
+ "Get All Rows": "Alle rijen krijgen",
18
+ "Find Spreadsheet(s)": "Vind spreadsheet(s)",
19
+ "Find Worksheet(s)": "Werkblad (s) vinden",
20
+ "Copy Worksheet": "Kopieer werkblad",
21
+ "Create Spreadsheet Column": "Spreadsheet kolom maken",
22
+ "Export Worksheet": "Werkblad exporteren",
23
+ "Custom API Call": "Custom API Call",
24
+ "Add a new row of data to a specific spreadsheet.": "Voeg een nieuwe rij gegevens toe aan een specifiek werkblad.",
25
+ "Add multiple rows of data at once to a specific spreadsheet.": "Meerdere rijen gegevens tegelijk toevoegen aan een specifiek spreadsheet.",
26
+ "Update the data in an existing row.": "Update de gegevens in een bestaande rij.",
27
+ "Updates multiple rows in a specific spreadsheet.": "Werkt meerdere rijen in een specifieke werkblad bij.",
28
+ "Delete a specific row from the selected sheet.": "Verwijder een specifieke rij van het geselecteerde vel.",
29
+ "Look up rows in a worksheet based on a column value.": "Zoek rijen in een werkblad op basis van kolomwaarde.",
30
+ "Creates a blank spreadsheet.": "Maakt een leeg werkblad aan.",
31
+ "Create a new blank worksheet with a title.": "Maak een nieuwe lege werkblad met een titel.",
32
+ "Clears all rows on an existing sheet.": "Wist alle rijen op een bestaand blad.",
33
+ "Permanently delete a specific worksheet.": "Verwijder permanent een specifiek werkblad.",
34
+ "Rename specific worksheet.": "Hernoem specifiek werkblad.",
35
+ "Format one or multiple rows in specific spreadsheet.": "Formatteer één of meerdere rijen in specifieke spreadsheet.",
36
+ "Retrieve a specific row using its unique ID.": "Ophalen van een specifieke rij met behulp van zijn unieke ID.",
37
+ "Get next group of rows from a specifiec workheet": "Verkrijg de volgende groep rijen van een specifiek werkblad",
38
+ "Get all the rows from a specific sheet.": "Krijg alle rijen van een specifiek vel.",
39
+ "Find spreadsheet(s) by name.": "Vind spreadsheet(s) op naam.",
40
+ "Finds a worksheet(s) by title.": "Vindt een werkblad op titel.",
41
+ "Creates a new worksheet by copying an existing one.": "Maakt een nieuwe werkblad door een bestaande te kopiëren.",
42
+ "Creates a new column in a specific spreadsheet.": "Maakt een nieuwe kolom op een specifiek werkblad.",
43
+ "Download a worksheet as a CSV or TSV file.": "Download een werkblad als CSV of TSS-bestand.",
44
+ "Make a custom API call to a specific endpoint": "Maak een aangepaste API call naar een specifiek eindpunt",
45
+ "Include Shared Drive Sheets ?": "Inclusief gedeelde schijfplaten ?",
46
+ "Spreadsheet": "Spreadsheet",
47
+ "Worksheet": "Werkblad",
48
+ "First Row Contains Headers ?": "Eerste rij bevat headers ?",
49
+ "As String": "Als String",
50
+ "Values": "Waarden",
51
+ "Rows Data Format": "Regels Dataformaat",
52
+ "Overwrite Existing Data?": "Bestaande gegevens overschrijven?",
53
+ "Avoid Duplicates?": "Duplicaten vermijden?",
54
+ "Duplicate Value Column": "Dupliceer waarde kolom",
55
+ "Header Row Number": "Rij kop nummer",
56
+ "Row Number": "Rij nummer",
57
+ "Header Row": "Kopregel rij",
58
+ "Column Name": "Naam kolom",
59
+ "Search Value": "Waarde zoeken",
60
+ "Exact Match": "Exacte overeenkomst",
61
+ "Starting Row": "Start rij",
62
+ "Number of Rows": "Aantal rijen",
63
+ "Use Column Names": "Gebruik kolomnamen",
64
+ "Title": "Aanspreektitel",
65
+ "Parent Folder": "Bovenliggende map",
66
+ "Headers": "Kopteksten",
67
+ "New Sheet Name": "Nieuwe plaatsnaam",
68
+ "Starting row": "Begin rij",
69
+ "Ending row": "Einde rij",
70
+ "Background Color": "Achtergrond Kleur",
71
+ "Text Color": "Tekst kleur",
72
+ "Make text bold": "Tekst vet maken",
73
+ "Make text Italic": "Tekst cursief maken",
74
+ "Make text Strikethrough": "Tekst doorhalen",
75
+ "Start Row": "Start rij",
76
+ "Use header names for keys": "Gebruik kopnamen voor sleutels",
77
+ "Markdown": "Markdown",
78
+ "Memory Key": "Geheugen Sleutel",
79
+ "Group Size": "Groepsgrootte",
80
+ "Spreadsheet Name": "Naam spreadsheet",
81
+ "Spreadsheet Containing the Worksheet to Copy": "Spreadsheet bevat het werkblad te kopiëren",
82
+ "Worksheet to Copy": "Werkblad om te kopiëren",
83
+ "Spreadsheet to paste in": "Spreadsheet om in te plakken",
84
+ "Column Index": "Kolom Index",
85
+ "Export Format": "Export formaat",
86
+ "Return as Text": "Retourneren als tekst",
87
+ "Method": "Methode",
88
+ "Query Parameters": "Query parameters",
89
+ "Body Type": "Type lichaam",
90
+ "Body": "Lichaam",
91
+ "Response is Binary ?": "Antwoord is binair?",
92
+ "No Error on Failure": "Geen fout bij fout",
93
+ "Timeout (in seconds)": "Time-out (in seconden)",
94
+ "Follow redirects": "Volg omleidingen",
95
+ "Turn this on to also see spreadsheets from Shared Drives.": "Schakel dit in om spreadsheets van gedeelde stations te bekijken.",
96
+ "The ID of the spreadsheet to use.": "Het ID van het te gebruiken spreadsheet",
97
+ "The ID of the worksheet to use.": "De ID van het te gebruiken werkblad.",
98
+ "Inserted values that are dates and formulas will be entered strings and have no effect": "Ingevulde waarden die datums en formules zijn, worden tekenreeksen ingevoerd en hebben geen effect",
99
+ "The values to add": "De waarden om toe te voegen",
100
+ "Select the format of the input values to be added into the worksheet.": "Selecteer het formaat van de invoerwaarden die aan het werkblad moeten worden toegevoegd.",
101
+ "The values to add.": "De waarden om toe te voegen.",
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.": "Schakel deze optie in om alle bestaande gegevens in het blad te vervangen door nieuwe gegevens van uw invoer. Dit zal alle extra rijen buiten het bijgewerkte bereik verwijderen.",
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.": "Schakel deze optie in om te controleren op dubbele waarden voor het invoegen van gegevens in het vel. Alleen unieke rijen worden toegevoegd op basis van de geselecteerde kolom.",
104
+ "The column to check for duplicate values.": "De kolom te controleren op dubbele waarden.",
105
+ "Inserted values that are dates and formulas will be entered as strings and have no effect": "Ingevulde waarden die data en formules zijn zullen als tekenreeksen worden ingevoerd en geen effect hebben",
106
+ "Enter the row number where your column headers are located (usually row 1).": "Voer het nummer van de rij in waar uw kolomkoppen zich bevinden (meestal rij 1).",
107
+ "The row number to update": "Het rij nummer om te updaten",
108
+ "The values to update.": "De waarden om bij te werken.",
109
+ "Which row contains the headers?": "Welke rij bevat de headers?",
110
+ "The number of the row you want to delete.": "Het nummer van de rij die u wilt verwijderen.",
111
+ "The name of the column to search in": "De naam van de kolom om in te zoeken",
112
+ "The value to look for in the selected column. Leave empty to return all rows.": "De waarde om te zoeken in de geselecteerde kolom. Laat leeg om alle rijen terug te geven.",
113
+ "Only return rows where the cell value exactly matches the search value.": "Alleen rijen retourneren waar de celwaarde precies overeenkomt met de zoekwaarde.",
114
+ "Start searching from this row number.": "Begin met zoeken vanuit dit rijnummer.",
115
+ "How many rows to return. Defaults to 1 if not specified.": "Hoeveel rijen moeten worden geretourneerd. Standaard ingesteld op 1 als dit niet is gespecificeerd.",
116
+ "The row number that contains the column names.": "Het rijnummer dat de kolomnamen bevat.",
117
+ "Use column names as keys instead of A, B, C.": "Gebruik kolomnamen als sleutels in plaats van A, B, C.",
118
+ "The title of the new spreadsheet.": "De titel van het nieuwe werkblad.",
119
+ "The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.": "De map om het werkblad in te maken. Standaard wordt het nieuwe werkblad aangemaakt in de hoofdmap van de schijf.",
120
+ "The title of the new worksheet.": "De titel van het nieuwe werkblad.",
121
+ "The ID of the worksheet to delete.": "De te verwijderen ID van het werkblad.",
122
+ "The ID of the worksheet to rename.": "De ID van de werkblad om te hernoemen.",
123
+ "The first row number where formatting should begin.": "Het eerste rij nummer waar de opmaak moet beginnen.",
124
+ "The last row number where formatting should stop (leave empty to format only the starting row).": "Het laatste nummer waar de opmaak moet stoppen (laat leeg om alleen de startrij te formatteren).",
125
+ "Provide a HEX color code (example: #FFD966)": "Geef een HEX kleurcode op (voorbeeld: #FFD966)",
126
+ "Enter the row number you want to retrieve": "Voer het nummer van de rij dat u wilt ophalen",
127
+ "Which row to start from?": "Van welke rij moet beginnen?",
128
+ "Map A/B/C… to the actual column headers (row specified above).": "Kaart A/B/C… naar de werkelijke kolom headers (rij gespecificeerd hierboven).",
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**Notes:**\n\n- Geheugen sleutel wordt gebruikt om te onthouden waar de laatste rij is verwerkt en zal gebruikt worden in de volgende uitvoeringen.\n- Het kopiëren van de flow **keeps** de geheugensleutelwaarde, als u wilt beginnen met het veranderen van de geheugensleutel.\n",
130
+ "The key used to store the current row number in memory": "De sleutel die gebruikt wordt om het huidige rijnummer op te slaan in het geheugen",
131
+ "The number of rows to get": "Het aantal rijen om te krijgen",
132
+ "Enter the name of the spreadsheet to search for": "Voer de naam van het spreadsheet in om naar te zoeken",
133
+ "If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.": "Als het waar is, geven alleen spreadsheets terug die precies overeenkomen met de naam. Indien niet waar, geef spreadsheets die de naam bevatten.",
134
+ "If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.": "Indien waar, alleen werkbladen retourneren die precies overeenkomen met de naam. Indien niet waar, stuur werkbladen dan terug die de naam bevatten.",
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.": "De kolomindex begint vanaf 1.Bijvoorbeeld, als u een kolom wilt toevoegen aan de derde kolom, voer 3 in. f de invoer minder dan 1 is de kolom wordt toegevoegd na de laatste kolom.",
136
+ "Select the file type to export the sheet as.": "Selecteer het bestandstype om te exporteren naar het plaatje.",
137
+ "Return the exported data as text instead of a file.": "Geeft de geëxporteerde data als tekst in plaats van een bestand.",
138
+ "Authorization headers are injected automatically from your connection.": "Autorisatie headers worden automatisch geïnjecteerd vanuit uw verbinding.",
139
+ "Enable for files like PDFs, images, etc.": "Inschakelen voor bestanden zoals PDF's, afbeeldingen etc.",
140
+ "CSV": "csv",
141
+ "JSON": "JSON",
142
+ "Column Names": "Namen van kolommen",
143
+ "Comma Separated Values (.csv)": "Komma gescheiden waarden (.csv)",
144
+ "Tab Separated Values (.tsv)": "Tab gescheiden waarden (.tsv)",
145
+ "GET": "KRIJG",
146
+ "POST": "POSTE",
147
+ "PATCH": "BEKIJK",
148
+ "PUT": "PUT",
149
+ "DELETE": "VERWIJDEREN",
150
+ "HEAD": "HOOFD",
151
+ "None": "geen",
152
+ "Form Data": "Formulieren gegevens",
153
+ "Raw": "Onbewerkte",
154
+ "New or Updated Row": "Nieuwe of bijgewerkte rij",
155
+ "New Row Added": "Nieuwe rij toegevoegd",
156
+ "New Spreadsheet": "Nieuw spreadsheet",
157
+ "New Worksheet": "Nieuw werkblad",
158
+ "Triggers when a new row is added or modified in a spreadsheet.": "Wordt uitgevoerd wanneer een nieuwe rij wordt toegevoegd of gewijzigd in een werkblad.",
159
+ "Triggers when a new row is added to bottom of a spreadsheet.": "Wordt uitgevoerd wanneer een nieuwe rij onderaan het werkblad wordt toegevoegd.",
160
+ "Triggers when a new spreadsheet is created.": "Triggert wanneer een nieuw werkblad wordt aangemaakt.",
161
+ "Triggers when a worksheet is created in a spreadsheet.": "Triggert wanneer een werkblad wordt aangemaakt in een werkblad.",
162
+ "Trigger Column": "Trigger kolom",
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.": "Houd er rekening mee dat er mogelijk een vertraging van maximaal 3 minuten is voordat de trigger wordt afgevuurd, als gevolg van een vertraging van 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 op wijzigingen in cellen alleen in deze kolom. \nSelecteer **Alle kolom** als u wilt dat de stroom de wijzigingen aan een cel in de rij uitvoert."
165
+ }