@n8n/i18n 1.19.0 → 1.20.0
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/dist/index.cjs +95 -77
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +85 -68
- package/dist/index.d.ts +85 -68
- package/dist/index.js +95 -77
- package/dist/index.js.map +1 -1
- package/dist/types.d.cts +94 -77
- package/dist/types.d.ts +94 -77
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -208,7 +208,7 @@ var en_default = {
|
|
|
208
208
|
"auth.signup.setupYourAccount": "Set up your account",
|
|
209
209
|
"auth.signup.setupYourAccountError": "Problem setting up your account",
|
|
210
210
|
"auth.signup.tokenValidationError": "Issue validating invite token",
|
|
211
|
-
"aiAssistant.name": "
|
|
211
|
+
"aiAssistant.name": "n8n AI",
|
|
212
212
|
"aiAssistant.tabs.ask": "Ask",
|
|
213
213
|
"aiAssistant.tabs.build": "Build",
|
|
214
214
|
"aiAssistant.builder.mode": "AI Builder",
|
|
@@ -228,6 +228,7 @@ var en_default = {
|
|
|
228
228
|
"aiAssistant.builder.canvasPrompt.cancelButton": "Cancel",
|
|
229
229
|
"aiAssistant.builder.canvasPrompt.startManually.title": "Start manually",
|
|
230
230
|
"aiAssistant.builder.canvasPrompt.startManually.subTitle": "Add the first node",
|
|
231
|
+
"aiAssistant.builder.canvasPrompt.buildWithAI": "Build with AI",
|
|
231
232
|
"aiAssistant.builder.streamAbortedMessage": "Task aborted",
|
|
232
233
|
"aiAssistant.builder.executeMessage.description": "Complete these steps before executing your workflow:",
|
|
233
234
|
"aiAssistant.builder.executeMessage.noIssues": "Your workflow is ready to be executed",
|
|
@@ -239,15 +240,15 @@ var en_default = {
|
|
|
239
240
|
"aiAssistant.builder.executeMessage.executionFailed": "Workflow execution failed: {errorMessage}",
|
|
240
241
|
"aiAssistant.builder.toast.title": "Send chat message to start the execution",
|
|
241
242
|
"aiAssistant.builder.toast.description": "Please send a message in the chat panel to start the execution of your workflow",
|
|
242
|
-
"aiAssistant.assistant": "AI
|
|
243
|
+
"aiAssistant.assistant": "n8n AI",
|
|
243
244
|
"aiAssistant.newSessionModal.title.part1": "Start new",
|
|
244
245
|
"aiAssistant.newSessionModal.title.part2": "session",
|
|
245
|
-
"aiAssistant.newSessionModal.message": "You already have an active AI
|
|
246
|
+
"aiAssistant.newSessionModal.message": "You already have an active n8n AI session. Starting a new session will clear your current conversation history.",
|
|
246
247
|
"aiAssistant.newSessionModal.question": "Are you sure you want to start a new session?",
|
|
247
248
|
"aiAssistant.newSessionModal.confirm": "Start new session",
|
|
248
249
|
"aiAssistant.serviceError.message": "Unable to connect to n8n's AI service ({message})",
|
|
249
250
|
"aiAssistant.payloadTooBig.message": "Payload size is too large",
|
|
250
|
-
"aiAssistant.codeUpdated.message.title": "
|
|
251
|
+
"aiAssistant.codeUpdated.message.title": "n8n AI modified workflow",
|
|
251
252
|
"aiAssistant.codeUpdated.message.body1": "Open the",
|
|
252
253
|
"aiAssistant.codeUpdated.message.body2": "node to see the changes",
|
|
253
254
|
"aiAssistant.thinkingSteps.analyzingError": "Analyzing the error...",
|
|
@@ -256,7 +257,7 @@ var en_default = {
|
|
|
256
257
|
"aiAssistant.prompts.currentView.credentialsList": "The user is currently looking at the list of credentials.",
|
|
257
258
|
"aiAssistant.prompts.currentView.executionsView": "The user is currently looking at the list of executions for the currently open workflow.",
|
|
258
259
|
"aiAssistant.prompts.currentView.workflowEditor": "The user is currently looking at the current workflow in n8n editor, without any specific node selected.",
|
|
259
|
-
"aiAssistant.tooltip": "
|
|
260
|
+
"aiAssistant.tooltip": "n8n AI",
|
|
260
261
|
"banners.confirmEmail.message.1": "To secure your account and prevent future access issues, please confirm your",
|
|
261
262
|
"banners.confirmEmail.message.2": "email address.",
|
|
262
263
|
"banners.confirmEmail.button": "Confirm email",
|
|
@@ -371,7 +372,9 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
|
|
|
371
372
|
"codeNodeEditor.completer.$nodeVersion": "The version of the current node (as displayed at the bottom of the nodes's settings pane)",
|
|
372
373
|
"codeNodeEditor.completer.$today": "A DateTime representing midnight at the start of the current day. \n\nUses the instance's time zone (unless overridden in the workflow's settings).",
|
|
373
374
|
"codeNodeEditor.completer.$vars": 'The <a target="_blank" href="https://docs.n8n.io/code/variables/">variables</a> available to the workflow',
|
|
374
|
-
"codeNodeEditor.completer.$vars.varName": "
|
|
375
|
+
"codeNodeEditor.completer.$vars.varName.global": "Global variable defined for this n8n instance. All variables evaluate to strings.",
|
|
376
|
+
"codeNodeEditor.completer.$vars.varName.global.overridden": "Global variable overridden by project {projectName} variable. All variables evaluate to strings. ",
|
|
377
|
+
"codeNodeEditor.completer.$vars.varName.project": "Project variable defined in the {projectName} project. All variables evaluate to strings.",
|
|
375
378
|
"codeNodeEditor.completer.$secrets": 'The secrets from an <a target="_blank" href="https://docs.n8n.io/external-secrets/">external secrets vault</a>, if configured. Secret values are never displayed to the user. Only available in credential fields.',
|
|
376
379
|
"codeNodeEditor.completer.$secrets.provider": "External secrets providers connected to this n8n instance.",
|
|
377
380
|
"codeNodeEditor.completer.$secrets.provider.varName": "External secrets connected to this n8n instance. All secrets evaluate to strings.",
|
|
@@ -556,6 +559,8 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
|
|
|
556
559
|
"codeNodeEditor.completer.section.cast": "Cast",
|
|
557
560
|
"codeNodeEditor.completer.section.compare": "Compare",
|
|
558
561
|
"codeNodeEditor.completer.section.validation": "Validate",
|
|
562
|
+
"codeNodeEditor.completer.section.variable.project": "Project Variables",
|
|
563
|
+
"codeNodeEditor.completer.section.variable.global": "Global Variables",
|
|
559
564
|
"codeNodeEditor.linter.allItems.firstOrLastCalledWithArg": "expects no argument.",
|
|
560
565
|
"codeNodeEditor.linter.allItems.emptyReturn": "Code doesn't return items properly. Please return an array of objects, one for each item you would like to output.",
|
|
561
566
|
"codeNodeEditor.linter.allItems.itemCall": "`item` is a property to access, not a method to call. Did you mean `.item` without brackets?",
|
|
@@ -761,7 +766,7 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
|
|
|
761
766
|
"dataMapping.schemaView.previewNode": "Preview",
|
|
762
767
|
"dataMapping.schemaView.variablesContextTitle": "Variables and context",
|
|
763
768
|
"dataMapping.schemaView.execution.resumeUrl": "The URL for resuming a 'Wait' node",
|
|
764
|
-
"dataMapping.schemaView.variablesUpgrade": 'Set global variables and use them across workflows with the Pro or Enterprise plan. <a href="https://docs.n8n.io/
|
|
769
|
+
"dataMapping.schemaView.variablesUpgrade": 'Set global variables and use them across workflows with the Pro or Enterprise plan. <a href="https://docs.n8n.io/code/variables/" target="_blank">Details</a>',
|
|
765
770
|
"dataMapping.schemaView.variablesEmpty": 'Create variables that can be used across workflows <a href="/variables" target="_blank">here</a>',
|
|
766
771
|
"displayWithChange.cancelEdit": "Cancel Edit",
|
|
767
772
|
"displayWithChange.clickToChange": "Click to Change",
|
|
@@ -781,7 +786,7 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
|
|
|
781
786
|
"experiments.personalizedTemplatesV3.couldntFind": "Need something different?",
|
|
782
787
|
"experiments.personalizedTemplatesV3.exploreTemplates": "Get started with HubSpot workflows:",
|
|
783
788
|
"experiments.personalizedTemplatesV3.loadingTemplates": "Loading recommendations...",
|
|
784
|
-
"experiments.personalizedTemplatesV3.recommendationTooltip": "
|
|
789
|
+
"experiments.personalizedTemplatesV3.recommendationTooltip": "Recommended workflows for you",
|
|
785
790
|
"experiments.personalizedTemplatesV3.recommendedForYou": "Recommended for you",
|
|
786
791
|
error: "Error",
|
|
787
792
|
"error.goBack": "Go back",
|
|
@@ -1158,6 +1163,7 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
|
|
|
1158
1163
|
"mainSidebar.workersView": "Workers",
|
|
1159
1164
|
"mainSidebar.whatsNew": "What\u2019s New",
|
|
1160
1165
|
"mainSidebar.whatsNew.fullChangelog": "Full changelog",
|
|
1166
|
+
"mcp.workflowNotEligable.description": "Only active, webhook-triggered workflows can be accessible through MCP",
|
|
1161
1167
|
"menuActions.duplicate": "Duplicate",
|
|
1162
1168
|
"menuActions.download": "Download",
|
|
1163
1169
|
"menuActions.push": "Push to Git",
|
|
@@ -1244,7 +1250,7 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
|
|
|
1244
1250
|
"ndv.output.noOutputData.title": "No output data returned",
|
|
1245
1251
|
"ndv.output.noOutputData.v2.title": "No output data",
|
|
1246
1252
|
"ndv.output.noOutputData.v2.description": "{link} to view output data",
|
|
1247
|
-
"ndv.output.noOutputData.v2.action": "
|
|
1253
|
+
"ndv.output.noOutputData.v2.action": "Execute step",
|
|
1248
1254
|
"ndv.output.noOutputData.trigger.title": "No trigger output",
|
|
1249
1255
|
"ndv.output.noOutputData.trigger.action": "Test this trigger",
|
|
1250
1256
|
"ndv.output.noOutputDataInBranch": "No output data in this branch",
|
|
@@ -1658,6 +1664,7 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
|
|
|
1658
1664
|
"contextMenu.tidyUpWorkflow": "Tidy up workflow",
|
|
1659
1665
|
"contextMenu.tidyUpSelection": "Tidy up selection",
|
|
1660
1666
|
"contextMenu.extract": "Convert node to sub-workflow | Convert {count} nodes to sub-workflow",
|
|
1667
|
+
"contextMenu.replace": "Replace",
|
|
1661
1668
|
"contextMenu.duplicate": "Duplicate | Duplicate {count} {subject}",
|
|
1662
1669
|
"contextMenu.open": "Open...",
|
|
1663
1670
|
"contextMenu.test": "Execute step",
|
|
@@ -2040,11 +2047,15 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
|
|
|
2040
2047
|
"settings.mcp.toggle.error": "Error updating MCP access",
|
|
2041
2048
|
"settings.mcp.instructions.enableAccess": "Enable workflow access in at least one workflow via its settings",
|
|
2042
2049
|
"settings.mcp.instructions.serverUrl": "Server URL",
|
|
2043
|
-
"settings.mcp.instructions.apiKey.
|
|
2044
|
-
"settings.mcp.instructions.apiKey.part2": "No scopes required, MCP uses your role for authorization",
|
|
2050
|
+
"settings.mcp.instructions.apiKey.label": "Access token",
|
|
2045
2051
|
"settings.mcp.instructions.json": "Or use the following code in your 'mcp.json' file",
|
|
2046
2052
|
"settings.mcp.instructions.docs.part1": "For more detailed instructions and examples, have a look at",
|
|
2047
2053
|
"settings.mcp.instructions.docs.part2": "our docs",
|
|
2054
|
+
"settings.mcp.instructions.rotateKey.tooltip": "Generate new token.<br/>This one will be automatically revoked.",
|
|
2055
|
+
"settings.mcp.instructions.apiKey.tip": "Use this as an authorization token. May be named differently in different clients",
|
|
2056
|
+
"settings.mcp.newKey.notice": "Make sure to copy your access token now. You won\u2019t be able to see or copy it again!",
|
|
2057
|
+
"settings.mcp.error.fetching.apiKey": "Error fetching access token",
|
|
2058
|
+
"settings.mcp.error.rotating.apiKey": "Error generating new access token",
|
|
2048
2059
|
"settings.goBack": "Go back",
|
|
2049
2060
|
"settings.personal": "Personal",
|
|
2050
2061
|
"settings.personal.basicInformation": "Basic Information",
|
|
@@ -2886,10 +2897,11 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
|
|
|
2886
2897
|
"variables.table.key": "Key",
|
|
2887
2898
|
"variables.table.value": "Value",
|
|
2888
2899
|
"variables.table.usage": "Usage Syntax",
|
|
2900
|
+
"variables.table.scope": "Scope",
|
|
2901
|
+
"variables.table.scope.global": "Global",
|
|
2889
2902
|
"variables.editing.key.placeholder": "Enter a name",
|
|
2890
2903
|
"variables.editing.value.placeholder": "Enter a value",
|
|
2891
|
-
"variables.editing.key.error.
|
|
2892
|
-
"variables.editing.key.error.jsonKey": "This field may contain only letters, numbers, and underscores",
|
|
2904
|
+
"variables.editing.key.error.regex": "This field may contain only letters, numbers, and underscores",
|
|
2893
2905
|
"variables.row.button.save": "Save",
|
|
2894
2906
|
"variables.row.button.cancel": "Cancel",
|
|
2895
2907
|
"variables.row.button.edit": "Edit",
|
|
@@ -2899,12 +2911,24 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
|
|
|
2899
2911
|
"variables.row.usage.copiedToClipboard": "Copied to clipboard",
|
|
2900
2912
|
"variables.row.usage.copyToClipboard": "Copy to clipboard",
|
|
2901
2913
|
"variables.search.placeholder": "Search variables...",
|
|
2914
|
+
"variables.delete.successful.message": "Variable {variableName} deleted",
|
|
2902
2915
|
"variables.errors.save": "Error while saving variable",
|
|
2903
2916
|
"variables.errors.delete": "Error while deleting variable",
|
|
2904
2917
|
"variables.modals.deleteConfirm.title": "Delete variable",
|
|
2905
2918
|
"variables.modals.deleteConfirm.message": 'Are you sure you want to delete the variable "{name}"? This cannot be undone.',
|
|
2906
2919
|
"variables.modals.deleteConfirm.confirmButton": "Delete",
|
|
2907
2920
|
"variables.modals.deleteConfirm.cancelButton": "Cancel",
|
|
2921
|
+
"variables.modal.title.create": "New variable",
|
|
2922
|
+
"variables.modal.title.edit": "Edit variable",
|
|
2923
|
+
"variables.modal.key.label": "Key",
|
|
2924
|
+
"variables.modal.value.label": "Value",
|
|
2925
|
+
"variables.modal.scope.label": "Scope",
|
|
2926
|
+
"variables.modal.scope.global": "Global",
|
|
2927
|
+
"variables.modal.scope.all": "All",
|
|
2928
|
+
"variables.modal.button.cancel": "Cancel",
|
|
2929
|
+
"variables.modal.button.save": "Save",
|
|
2930
|
+
"variables.modal.error.keyExistsInProject": "The key already exists in this project",
|
|
2931
|
+
"variables.modal.warning.globalKeyExists": "The same key already exists in global scope. This variable will override the global variable inside the project",
|
|
2908
2932
|
"contextual.credentials.sharing.unavailable.title": "Upgrade to collaborate",
|
|
2909
2933
|
"contextual.credentials.sharing.unavailable.title.cloud": "Upgrade to collaborate",
|
|
2910
2934
|
"contextual.credentials.sharing.unavailable.description": "You can share credentials with others when you upgrade your plan.",
|
|
@@ -2922,7 +2946,7 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
|
|
|
2922
2946
|
"contextual.workflows.sharing.unavailable.button.cloud": "Upgrade now",
|
|
2923
2947
|
"contextual.variables.unavailable.title": "Available on the Enterprise plan",
|
|
2924
2948
|
"contextual.variables.unavailable.title.cloud": "Available on Pro plan",
|
|
2925
|
-
"contextual.variables.unavailable.description": 'Variables can be used to store and access data across workflows. Reference them in n8n using the prefix <code>$vars</code> (e.g. <code>$vars.myVariable</code>). Variables are immutable and cannot be modified within your workflows.<br/><a href="https://docs.n8n.io/
|
|
2949
|
+
"contextual.variables.unavailable.description": 'Variables can be used to store and access data across workflows. Reference them in n8n using the prefix <code>$vars</code> (e.g. <code>$vars.myVariable</code>). Variables are immutable and cannot be modified within your workflows.<br/><a href="https://docs.n8n.io/code/variables/" target="_blank">Learn more in the docs.</a>',
|
|
2926
2950
|
"contextual.variables.unavailable.button": "View plans",
|
|
2927
2951
|
"contextual.variables.unavailable.button.cloud": "Upgrade now",
|
|
2928
2952
|
"contextual.users.settings.unavailable.title": "Upgrade to add users",
|
|
@@ -2933,69 +2957,63 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
|
|
|
2933
2957
|
"contextual.users.settings.unavailable.button.cloud": "Upgrade now",
|
|
2934
2958
|
"contextual.feature.unavailable.title": "Available on the Enterprise Plan",
|
|
2935
2959
|
"contextual.feature.unavailable.title.cloud": "Available on the Pro Plan",
|
|
2936
|
-
"
|
|
2937
|
-
"
|
|
2938
|
-
"
|
|
2939
|
-
"
|
|
2940
|
-
"
|
|
2941
|
-
"
|
|
2942
|
-
"
|
|
2943
|
-
"
|
|
2944
|
-
"
|
|
2945
|
-
"
|
|
2946
|
-
"
|
|
2947
|
-
"
|
|
2948
|
-
"
|
|
2949
|
-
"
|
|
2950
|
-
"
|
|
2951
|
-
"
|
|
2952
|
-
"
|
|
2953
|
-
"
|
|
2954
|
-
"
|
|
2955
|
-
"
|
|
2956
|
-
"
|
|
2957
|
-
"
|
|
2958
|
-
"
|
|
2959
|
-
"
|
|
2960
|
-
"
|
|
2961
|
-
"
|
|
2962
|
-
"
|
|
2963
|
-
"
|
|
2964
|
-
"
|
|
2965
|
-
"
|
|
2966
|
-
"
|
|
2967
|
-
"
|
|
2968
|
-
"
|
|
2969
|
-
"
|
|
2970
|
-
"
|
|
2971
|
-
"
|
|
2972
|
-
"
|
|
2973
|
-
"
|
|
2974
|
-
"
|
|
2975
|
-
"
|
|
2976
|
-
"
|
|
2977
|
-
"
|
|
2978
|
-
"
|
|
2979
|
-
"
|
|
2980
|
-
"
|
|
2981
|
-
"
|
|
2982
|
-
"
|
|
2983
|
-
"
|
|
2984
|
-
"
|
|
2985
|
-
"
|
|
2986
|
-
"
|
|
2987
|
-
"
|
|
2988
|
-
"
|
|
2989
|
-
"
|
|
2990
|
-
"
|
|
2991
|
-
"
|
|
2992
|
-
"
|
|
2993
|
-
"dataStore.filters.true": "True",
|
|
2994
|
-
"dataStore.filters.false": "False",
|
|
2995
|
-
"dataStore.filters.greaterThan": "Greater than",
|
|
2996
|
-
"dataStore.filters.greaterThanOrEqual": "Greater than or equal",
|
|
2997
|
-
"dataStore.filters.lessThan": "Less than",
|
|
2998
|
-
"dataStore.filters.lessThanOrEqual": "Less than or equal",
|
|
2960
|
+
"dataTable.dataTables": "Data tables",
|
|
2961
|
+
"dataTable.empty.label": "You don't have any data tables yet",
|
|
2962
|
+
"dataTable.empty.description": "Use data tables to persist execution results, share data between workflows, and track metrics for evaluation.",
|
|
2963
|
+
"dataTable.card.size": "{size}MB",
|
|
2964
|
+
"dataTable.card.column.count": "{count} column | {count} columns",
|
|
2965
|
+
"dataTable.add.title": "Create new Data table",
|
|
2966
|
+
"dataTable.add.button.label": "Create Data table",
|
|
2967
|
+
"dataTable.add.input.name.label": "Data table name",
|
|
2968
|
+
"dataTable.add.input.name.placeholder": "Enter data table name",
|
|
2969
|
+
"dataTable.add.error": "Error creating data table",
|
|
2970
|
+
"dataTable.delete.confirm.title": "Delete Data table",
|
|
2971
|
+
"dataTable.delete.confirm.message": "Are you sure you want to delete the data table '{name}'? This action cannot be undone.",
|
|
2972
|
+
"dataTable.delete.error": "Error deleting data table",
|
|
2973
|
+
"dataTable.rename.error": "Error renaming data table",
|
|
2974
|
+
"dataTable.getDetails.error": "Error fetching data table details",
|
|
2975
|
+
"dataTable.notFound": "Data table not found",
|
|
2976
|
+
"dataTable.noColumns.heading": "No columns yet",
|
|
2977
|
+
"dataTable.noColumns.description": "Add columns to start storing data in this data table.",
|
|
2978
|
+
"dataTable.noColumns.button.label": "Add first column",
|
|
2979
|
+
"dataTable.addColumn.label": "Add Column",
|
|
2980
|
+
"dataTable.addColumn.nameInput.label": "@:_reusableBaseText.name",
|
|
2981
|
+
"dataTable.addColumn.nameInput.placeholder": "Enter column name",
|
|
2982
|
+
"dataTable.addColumn.typeInput.label": "@:_reusableBaseText.type",
|
|
2983
|
+
"dataTable.addColumn.error": "Error adding column",
|
|
2984
|
+
"dataTable.addColumn.alreadyExistsError": "This column already exists",
|
|
2985
|
+
"dataTable.addColumn.alreadyExistsDescription": "Column name already exisits, choose a different name",
|
|
2986
|
+
"dataTable.moveColumn.error": "Error moving column",
|
|
2987
|
+
"dataTable.deleteColumn.error": "Error deleting column",
|
|
2988
|
+
"dataTable.deleteColumn.confirm.title": "Delete column",
|
|
2989
|
+
"dataTable.deleteColumn.confirm.message": "Are you sure you want to delete the column '{name}'? This action cannot be undone.",
|
|
2990
|
+
"dataTable.addColumn.invalidName.error": "Invalid column name",
|
|
2991
|
+
"dataTable.addColumn.invalidName.description": "Column names must begin with a letter and can only include letters, numbers, or underscores",
|
|
2992
|
+
"dataTable.fetchContent.error": "Error fetching data table content",
|
|
2993
|
+
"dataTable.addRow.label": "Add Row",
|
|
2994
|
+
"dataTable.addRow.error": "Error adding row",
|
|
2995
|
+
"dataTable.updateRow.error": "Error updating row",
|
|
2996
|
+
"dataTable.deleteRows.title": "Delete Rows",
|
|
2997
|
+
"dataTable.deleteRows.confirmation": "Are you sure you want to delete {count} row? | Are you sure you want to delete {count} rows?",
|
|
2998
|
+
"dataTable.deleteRows.error": "Error deleting rows",
|
|
2999
|
+
"dataTable.banner.storageLimitWarning.message": "{usage} of Data tables storage used. Delete data to avoid errors",
|
|
3000
|
+
"dataTable.banner.storageLimitError.message": "{usage} of Data tables storage used, operations may fail. Delete data to avoid errors",
|
|
3001
|
+
"dataTable.error.tableNotInitialized": "Table not initialized",
|
|
3002
|
+
"dataTable.noRows": "No rows",
|
|
3003
|
+
"dataTable.filters.isNull": "Is null",
|
|
3004
|
+
"dataTable.filters.isNotNull": "Is not null",
|
|
3005
|
+
"dataTable.filters.isEmpty": "Is empty",
|
|
3006
|
+
"dataTable.filters.isNotEmpty": "Is not empty",
|
|
3007
|
+
"dataTable.filters.between": "Between",
|
|
3008
|
+
"dataTable.filters.true": "True",
|
|
3009
|
+
"dataTable.filters.false": "False",
|
|
3010
|
+
"dataTable.filters.greaterThan": "Greater than",
|
|
3011
|
+
"dataTable.filters.greaterThanOrEqual": "Greater than or equal",
|
|
3012
|
+
"dataTable.filters.lessThan": "Less than",
|
|
3013
|
+
"dataTable.filters.lessThanOrEqual": "Less than or equal",
|
|
3014
|
+
"dataTable.addColumn.alreadyExistsDescription": "Column name already exists, choose a different name",
|
|
3015
|
+
"dataTable.addColumn.systemColumnDescription": "This is a system column, choose a different name",
|
|
3016
|
+
"dataTable.addColumn.testingColumnDescription": "This column is used for testing, choose a different name",
|
|
2999
3017
|
"settings.ldap": "LDAP",
|
|
3000
3018
|
"settings.ldap.note": "LDAP allows users to authenticate with their centralized account. It's compatible with services that provide an LDAP interface like Active Directory, Okta and Jumpcloud.",
|
|
3001
3019
|
"settings.ldap.infoTip": "Learn more about <a href='https://docs.n8n.io/user-management/ldap/' target='_blank'>LDAP in the Docs</a>",
|