@n8n/i18n 2.9.0 → 2.10.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 +66 -23
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +52 -9
- package/dist/index.d.mts +52 -9
- package/dist/index.mjs +66 -23
- package/dist/index.mjs.map +1 -1
- package/dist/types2.d.cts +52 -9
- package/dist/types2.d.mts +52 -9
- package/package.json +2 -2
package/dist/types2.d.cts
CHANGED
|
@@ -176,6 +176,17 @@ declare const _exports: {
|
|
|
176
176
|
"about.thirdPartyLicenses": string;
|
|
177
177
|
"about.thirdPartyLicensesLink": string;
|
|
178
178
|
"about.thirdPartyLicenses.downloadError": string;
|
|
179
|
+
"appSelection.heading": string;
|
|
180
|
+
"appSelection.heading.noName": string;
|
|
181
|
+
"appSelection.subheading": string;
|
|
182
|
+
"appSelection.searchPlaceholder": string;
|
|
183
|
+
"appSelection.continue": string;
|
|
184
|
+
"appSelection.continueWithCount": string;
|
|
185
|
+
"appSelection.noResults": string;
|
|
186
|
+
"appSelection.error.oauthFailed": string;
|
|
187
|
+
"appSelection.toast.success": string;
|
|
188
|
+
"appSelection.instantConnect": string;
|
|
189
|
+
"appSelection.connectLater": string;
|
|
179
190
|
"askAi.dialog.title": string;
|
|
180
191
|
"askAi.dialog.body": string;
|
|
181
192
|
"askAi.dialog.signup": string;
|
|
@@ -278,6 +289,11 @@ declare const _exports: {
|
|
|
278
289
|
"aiAssistant.builder.workflowParsingError.title": string;
|
|
279
290
|
"aiAssistant.builder.workflowParsingError.content": string;
|
|
280
291
|
"aiAssistant.builder.error.title": string;
|
|
292
|
+
"aiAssistant.builder.reviewChanges.button": string;
|
|
293
|
+
"aiAssistant.builder.reviewChanges.editedNodes": string;
|
|
294
|
+
"aiAssistant.builder.reviewChanges.previousVersion": string;
|
|
295
|
+
"aiAssistant.builder.reviewChanges.currentVersion": string;
|
|
296
|
+
"aiAssistant.builder.reviewChanges.error": string;
|
|
281
297
|
"aiAssistant.builder.canvasPrompt.title": string;
|
|
282
298
|
"aiAssistant.builder.canvasPrompt.confirmTitle": string;
|
|
283
299
|
"aiAssistant.builder.canvasPrompt.confirmMessage": string;
|
|
@@ -286,6 +302,8 @@ declare const _exports: {
|
|
|
286
302
|
"aiAssistant.builder.canvasPrompt.startManually.title": string;
|
|
287
303
|
"aiAssistant.builder.canvasPrompt.startManually.subTitle": string;
|
|
288
304
|
"aiAssistant.builder.canvasPrompt.buildWithAI": string;
|
|
305
|
+
"aiAssistant.builder.credentialHelpMessage": string;
|
|
306
|
+
"aiAssistant.builder.errorHelpMessage": string;
|
|
289
307
|
"aiAssistant.builder.streamAbortedMessage": string;
|
|
290
308
|
"aiAssistant.builder.executeMessage.description": string;
|
|
291
309
|
"aiAssistant.builder.executeMessage.noIssues": string;
|
|
@@ -333,6 +351,7 @@ declare const _exports: {
|
|
|
333
351
|
"aiAssistant.codeUpdated.message.body1": string;
|
|
334
352
|
"aiAssistant.codeUpdated.message.body2": string;
|
|
335
353
|
"aiAssistant.thinkingSteps.analyzingError": string;
|
|
354
|
+
"aiAssistant.thinkingSteps.compacting": string;
|
|
336
355
|
"aiAssistant.thinkingSteps.thinking": string;
|
|
337
356
|
"aiAssistant.prompts.currentView.workflowList": string;
|
|
338
357
|
"aiAssistant.prompts.currentView.credentialsList": string;
|
|
@@ -498,7 +517,9 @@ declare const _exports: {
|
|
|
498
517
|
"chatHub.tools.editor.cancel": string;
|
|
499
518
|
"chatHub.tools.selector.label.count": string;
|
|
500
519
|
"chatHub.tools.selector.label.default": string;
|
|
520
|
+
"chatHub.tools.selector.createNew": string;
|
|
501
521
|
"chatHub.tools.selector.disabled.tooltip": string;
|
|
522
|
+
"chatHub.tools.selector.disabled.noModel.tooltip": string;
|
|
502
523
|
"chatHub.toolSettings.title": string;
|
|
503
524
|
"chatHub.toolSettings.confirm": string;
|
|
504
525
|
"chatHub.toolSettings.cancel": string;
|
|
@@ -912,13 +933,19 @@ declare const _exports: {
|
|
|
912
933
|
"credentialEdit.credentialConfig.subtitle": string;
|
|
913
934
|
"credentialEdit.credentialConfig.theServiceYouReConnectingTo": string;
|
|
914
935
|
"credentialEdit.credentialConfig.missingCredentialType": string;
|
|
915
|
-
"credentialEdit.credentialConfig.
|
|
916
|
-
"credentialEdit.credentialConfig.
|
|
936
|
+
"credentialEdit.credentialConfig.oauthModeManaged": string;
|
|
937
|
+
"credentialEdit.credentialConfig.oauthModeCustom": string;
|
|
938
|
+
"credentialEdit.credentialConfig.oauthModeManagedTitle": string;
|
|
939
|
+
"credentialEdit.credentialConfig.oauthModeCustomTitle": string;
|
|
940
|
+
"credentialEdit.credentialConfig.genericTitle": string;
|
|
941
|
+
"credentialEdit.credentialConfig.setupCredential": string;
|
|
917
942
|
"credentialEdit.credentialConfig.recommendedAuthTypeSuffix": string;
|
|
943
|
+
"credentialEdit.credentialConfig.switchTo": string;
|
|
918
944
|
"credentialEdit.credentialConfig.externalSecrets": string;
|
|
919
945
|
"credentialEdit.credentialConfig.externalSecrets.moreInfo": string;
|
|
920
946
|
"credentialEdit.credentialConfig.dynamicCredentials.title": string;
|
|
921
947
|
"credentialEdit.credentialConfig.dynamicCredentials.infoTip": string;
|
|
948
|
+
"credentialEdit.credentialConfig.oauthDisabledTooltip": string;
|
|
922
949
|
"credentialEdit.credentialEdit.confirmMessage.beforeClose1.cancelButtonText": string;
|
|
923
950
|
"credentialEdit.credentialEdit.confirmMessage.beforeClose1.confirmButtonText": string;
|
|
924
951
|
"credentialEdit.credentialEdit.confirmMessage.beforeClose1.headline": string;
|
|
@@ -1855,6 +1882,10 @@ declare const _exports: {
|
|
|
1855
1882
|
"nodeCredentials.quickConnect.connectTo": string;
|
|
1856
1883
|
"nodeCredentials.quickConnect.or": string;
|
|
1857
1884
|
"nodeCredentials.quickConnect.setupManually": string;
|
|
1885
|
+
"nodeCredentials.quickConnect.consent.cancel": string;
|
|
1886
|
+
"nodeCredentials.quickConnect.consent.confirm": string;
|
|
1887
|
+
"nodeCredentials.quickConnect.credential.created.success": string;
|
|
1888
|
+
"nodeCredentials.quickConnect.credential.created.error": string;
|
|
1858
1889
|
"nodeCredentials.emptyState.noCredentials": string;
|
|
1859
1890
|
"nodeCredentials.emptyState.setupCredential": string;
|
|
1860
1891
|
"nodeCredentials.oauth.accountConnected": string;
|
|
@@ -1959,6 +1990,7 @@ declare const _exports: {
|
|
|
1959
1990
|
"nodeSettings.nodeVersion": string;
|
|
1960
1991
|
"nodeView.addNode": string;
|
|
1961
1992
|
"nodeView.openFocusPanel": string;
|
|
1993
|
+
"nodeView.openSidePanel": string;
|
|
1962
1994
|
"nodeView.openNodesPanel": string;
|
|
1963
1995
|
"nodeView.openCommandBar": string;
|
|
1964
1996
|
"nodeView.addATriggerNodeFirst": string;
|
|
@@ -2156,6 +2188,7 @@ declare const _exports: {
|
|
|
2156
2188
|
"parameterInput.selectACredentialTypeFromTheDropdown": string;
|
|
2157
2189
|
"parameterInput.theValueIsNotSupported": string;
|
|
2158
2190
|
"parameterInput.selectedWorkflowIsArchived": string;
|
|
2191
|
+
"parameterInput.invalidJson": string;
|
|
2159
2192
|
"parameterInputExpanded.openDocs": string;
|
|
2160
2193
|
"parameterInputExpanded.thisFieldIsRequired": string;
|
|
2161
2194
|
"parameterInputList.delete": string;
|
|
@@ -2351,7 +2384,8 @@ declare const _exports: {
|
|
|
2351
2384
|
"projectRoles.sourceControl.table.type": string;
|
|
2352
2385
|
"projectRoles.sourceControl.table.assignedTo": string;
|
|
2353
2386
|
"projectRoles.sourceControl.table.lastEdited": string;
|
|
2354
|
-
"projectRoles.
|
|
2387
|
+
"projectRoles.backToProjectRoles": string;
|
|
2388
|
+
"projectRoles.backToProjectSettings": string;
|
|
2355
2389
|
"projectRoles.newRole": string;
|
|
2356
2390
|
"projectRoles.addRole": string;
|
|
2357
2391
|
"projectRoles.discardChanges": string;
|
|
@@ -2955,6 +2989,8 @@ declare const _exports: {
|
|
|
2955
2989
|
"settings.secretsProviderConnections.description": string;
|
|
2956
2990
|
"settings.secretsProviderConnections.card.createdAt": string;
|
|
2957
2991
|
"settings.secretsProviderConnections.actions.share": string;
|
|
2992
|
+
"settings.secretsProviderConnections.oneSecret": string;
|
|
2993
|
+
"settings.secretsProviderConnections.secrets": string;
|
|
2958
2994
|
"settings.secretsProviderConnections.modal.items.connection": string;
|
|
2959
2995
|
"settings.secretsProviderConnections.modal.items.scope": string;
|
|
2960
2996
|
"settings.secretsProviderConnections.modal.scope.placeholder.project": string;
|
|
@@ -2967,12 +3003,9 @@ declare const _exports: {
|
|
|
2967
3003
|
"settings.secretsProviderConnections.modal.saving": string;
|
|
2968
3004
|
"settings.secretsProviderConnections.modal.unsavedChanges.title": string;
|
|
2969
3005
|
"settings.secretsProviderConnections.modal.unsavedChanges.text": string;
|
|
2970
|
-
"settings.secretsProviderConnections.modal.testConnection.success.title": string;
|
|
2971
|
-
"settings.secretsProviderConnections.modal.testConnection.success.description": string;
|
|
2972
3006
|
"settings.secretsProviderConnections.modal.testConnection.success.serviceEnabled": string;
|
|
2973
3007
|
"settings.secretsProviderConnections.modal.testConnection.success.reference": string;
|
|
2974
3008
|
"settings.secretsProviderConnections.modal.testConnection.error": string;
|
|
2975
|
-
"settings.secretsProviderConnections.modal.testConnection.error.serviceDisabled": string;
|
|
2976
3009
|
"settings.secretsProviderConnections.modal.validation.connectionName.required": string;
|
|
2977
3010
|
"settings.secretsProviderConnections.modal.validation.connectionName.format": string;
|
|
2978
3011
|
"settings.secretsProviderConnections.modal.connectionName.hint": string;
|
|
@@ -2980,8 +3013,6 @@ declare const _exports: {
|
|
|
2980
3013
|
"settings.secretsProviderConnections.state.disconnected": string;
|
|
2981
3014
|
"settings.secretsProviderConnections.delete.title": string;
|
|
2982
3015
|
"settings.secretsProviderConnections.delete.description": string;
|
|
2983
|
-
"settings.secretsProviderConnections.delete.description.oneSecret": string;
|
|
2984
|
-
"settings.secretsProviderConnections.delete.description.secrets": string;
|
|
2985
3016
|
"settings.secretsProviderConnections.delete.impact.title": string;
|
|
2986
3017
|
"settings.secretsProviderConnections.delete.impact.oneCredential": string;
|
|
2987
3018
|
"settings.secretsProviderConnections.delete.impact.credentials": string;
|
|
@@ -3754,6 +3785,7 @@ declare const _exports: {
|
|
|
3754
3785
|
"variables.editing.key.placeholder": string;
|
|
3755
3786
|
"variables.editing.value.placeholder": string;
|
|
3756
3787
|
"variables.editing.key.error.regex": string;
|
|
3788
|
+
"variables.editing.key.error.regex-no-start-with-number": string;
|
|
3757
3789
|
"variables.row.button.save": string;
|
|
3758
3790
|
"variables.row.button.cancel": string;
|
|
3759
3791
|
"variables.row.button.edit": string;
|
|
@@ -3839,6 +3871,7 @@ declare const _exports: {
|
|
|
3839
3871
|
"dataTable.import.columnNamePlaceholder": string;
|
|
3840
3872
|
"dataTable.import.duplicateColumnName": string;
|
|
3841
3873
|
"dataTable.import.systemColumnName": string;
|
|
3874
|
+
"dataTable.import.includeColumn": string;
|
|
3842
3875
|
"dataTable.import.invalidColumnName": string;
|
|
3843
3876
|
"dataTable.delete.confirm.message": string;
|
|
3844
3877
|
"dataTable.delete.error": string;
|
|
@@ -4158,10 +4191,11 @@ declare const _exports: {
|
|
|
4158
4191
|
"projects.settings.externalSecrets.button.addSecretsStore": string;
|
|
4159
4192
|
"projects.settings.externalSecrets.button.shareSecretsStore": string;
|
|
4160
4193
|
"projects.settings.externalSecrets.table.header.secretName": string;
|
|
4161
|
-
"projects.settings.externalSecrets.table.header.provider": string;
|
|
4162
4194
|
"projects.settings.externalSecrets.table.header.usedInCredentials": string;
|
|
4163
4195
|
"projects.settings.externalSecrets.search.placeholder": string;
|
|
4164
4196
|
"projects.settings.externalSecrets.load.error": string;
|
|
4197
|
+
"projects.settings.externalSecrets.expand": string;
|
|
4198
|
+
"projects.settings.externalSecrets.collapse": string;
|
|
4165
4199
|
"projects.sharing.allUsers": string;
|
|
4166
4200
|
"projects.sharing.noMatchingProjects": string;
|
|
4167
4201
|
"projects.sharing.noMatchingUsers": string;
|
|
@@ -4358,6 +4392,11 @@ declare const _exports: {
|
|
|
4358
4392
|
"setupPanel.usedInNodes": string;
|
|
4359
4393
|
"setupPanel.everythingConfigured.message": string;
|
|
4360
4394
|
"setupPanel.trigger.credential.note": string;
|
|
4395
|
+
"setupPanel.trigger.listeningHint": string;
|
|
4396
|
+
"setupPanel.showCompleted": string;
|
|
4397
|
+
"setupPanel.webhookUrl.title": string;
|
|
4398
|
+
"setupPanel.webhookUrl.clickToCopy": string;
|
|
4399
|
+
"setupPanel.webhookUrl.copied": string;
|
|
4361
4400
|
"becomeCreator.text": string;
|
|
4362
4401
|
"becomeCreator.buttonText": string;
|
|
4363
4402
|
"becomeCreator.closeButtonTitle": string;
|
|
@@ -4553,7 +4592,11 @@ declare const _exports: {
|
|
|
4553
4592
|
"communityNodeInfo.downloads": string;
|
|
4554
4593
|
"communityNodeInfo.publishedBy": string;
|
|
4555
4594
|
"communityNodeInfo.quickConnect": string;
|
|
4595
|
+
"communityNodeInfo.quickConnect.tooltip": string;
|
|
4556
4596
|
"communityNodeInfo.contact.admin": string;
|
|
4597
|
+
"credentialsAppSelection.installToConnect": string;
|
|
4598
|
+
"credentialsAppSelection.askAdminToInstall": string;
|
|
4599
|
+
"credentialsAppSelection.credentialsNotValid": string;
|
|
4557
4600
|
"communityNodeUpdateInfo.available": string;
|
|
4558
4601
|
"insights.upgradeModal.button.dismiss": string;
|
|
4559
4602
|
"insights.upgradeModal.content": string;
|
package/dist/types2.d.mts
CHANGED
|
@@ -176,6 +176,17 @@ declare const _exports: {
|
|
|
176
176
|
"about.thirdPartyLicenses": string;
|
|
177
177
|
"about.thirdPartyLicensesLink": string;
|
|
178
178
|
"about.thirdPartyLicenses.downloadError": string;
|
|
179
|
+
"appSelection.heading": string;
|
|
180
|
+
"appSelection.heading.noName": string;
|
|
181
|
+
"appSelection.subheading": string;
|
|
182
|
+
"appSelection.searchPlaceholder": string;
|
|
183
|
+
"appSelection.continue": string;
|
|
184
|
+
"appSelection.continueWithCount": string;
|
|
185
|
+
"appSelection.noResults": string;
|
|
186
|
+
"appSelection.error.oauthFailed": string;
|
|
187
|
+
"appSelection.toast.success": string;
|
|
188
|
+
"appSelection.instantConnect": string;
|
|
189
|
+
"appSelection.connectLater": string;
|
|
179
190
|
"askAi.dialog.title": string;
|
|
180
191
|
"askAi.dialog.body": string;
|
|
181
192
|
"askAi.dialog.signup": string;
|
|
@@ -278,6 +289,11 @@ declare const _exports: {
|
|
|
278
289
|
"aiAssistant.builder.workflowParsingError.title": string;
|
|
279
290
|
"aiAssistant.builder.workflowParsingError.content": string;
|
|
280
291
|
"aiAssistant.builder.error.title": string;
|
|
292
|
+
"aiAssistant.builder.reviewChanges.button": string;
|
|
293
|
+
"aiAssistant.builder.reviewChanges.editedNodes": string;
|
|
294
|
+
"aiAssistant.builder.reviewChanges.previousVersion": string;
|
|
295
|
+
"aiAssistant.builder.reviewChanges.currentVersion": string;
|
|
296
|
+
"aiAssistant.builder.reviewChanges.error": string;
|
|
281
297
|
"aiAssistant.builder.canvasPrompt.title": string;
|
|
282
298
|
"aiAssistant.builder.canvasPrompt.confirmTitle": string;
|
|
283
299
|
"aiAssistant.builder.canvasPrompt.confirmMessage": string;
|
|
@@ -286,6 +302,8 @@ declare const _exports: {
|
|
|
286
302
|
"aiAssistant.builder.canvasPrompt.startManually.title": string;
|
|
287
303
|
"aiAssistant.builder.canvasPrompt.startManually.subTitle": string;
|
|
288
304
|
"aiAssistant.builder.canvasPrompt.buildWithAI": string;
|
|
305
|
+
"aiAssistant.builder.credentialHelpMessage": string;
|
|
306
|
+
"aiAssistant.builder.errorHelpMessage": string;
|
|
289
307
|
"aiAssistant.builder.streamAbortedMessage": string;
|
|
290
308
|
"aiAssistant.builder.executeMessage.description": string;
|
|
291
309
|
"aiAssistant.builder.executeMessage.noIssues": string;
|
|
@@ -333,6 +351,7 @@ declare const _exports: {
|
|
|
333
351
|
"aiAssistant.codeUpdated.message.body1": string;
|
|
334
352
|
"aiAssistant.codeUpdated.message.body2": string;
|
|
335
353
|
"aiAssistant.thinkingSteps.analyzingError": string;
|
|
354
|
+
"aiAssistant.thinkingSteps.compacting": string;
|
|
336
355
|
"aiAssistant.thinkingSteps.thinking": string;
|
|
337
356
|
"aiAssistant.prompts.currentView.workflowList": string;
|
|
338
357
|
"aiAssistant.prompts.currentView.credentialsList": string;
|
|
@@ -498,7 +517,9 @@ declare const _exports: {
|
|
|
498
517
|
"chatHub.tools.editor.cancel": string;
|
|
499
518
|
"chatHub.tools.selector.label.count": string;
|
|
500
519
|
"chatHub.tools.selector.label.default": string;
|
|
520
|
+
"chatHub.tools.selector.createNew": string;
|
|
501
521
|
"chatHub.tools.selector.disabled.tooltip": string;
|
|
522
|
+
"chatHub.tools.selector.disabled.noModel.tooltip": string;
|
|
502
523
|
"chatHub.toolSettings.title": string;
|
|
503
524
|
"chatHub.toolSettings.confirm": string;
|
|
504
525
|
"chatHub.toolSettings.cancel": string;
|
|
@@ -912,13 +933,19 @@ declare const _exports: {
|
|
|
912
933
|
"credentialEdit.credentialConfig.subtitle": string;
|
|
913
934
|
"credentialEdit.credentialConfig.theServiceYouReConnectingTo": string;
|
|
914
935
|
"credentialEdit.credentialConfig.missingCredentialType": string;
|
|
915
|
-
"credentialEdit.credentialConfig.
|
|
916
|
-
"credentialEdit.credentialConfig.
|
|
936
|
+
"credentialEdit.credentialConfig.oauthModeManaged": string;
|
|
937
|
+
"credentialEdit.credentialConfig.oauthModeCustom": string;
|
|
938
|
+
"credentialEdit.credentialConfig.oauthModeManagedTitle": string;
|
|
939
|
+
"credentialEdit.credentialConfig.oauthModeCustomTitle": string;
|
|
940
|
+
"credentialEdit.credentialConfig.genericTitle": string;
|
|
941
|
+
"credentialEdit.credentialConfig.setupCredential": string;
|
|
917
942
|
"credentialEdit.credentialConfig.recommendedAuthTypeSuffix": string;
|
|
943
|
+
"credentialEdit.credentialConfig.switchTo": string;
|
|
918
944
|
"credentialEdit.credentialConfig.externalSecrets": string;
|
|
919
945
|
"credentialEdit.credentialConfig.externalSecrets.moreInfo": string;
|
|
920
946
|
"credentialEdit.credentialConfig.dynamicCredentials.title": string;
|
|
921
947
|
"credentialEdit.credentialConfig.dynamicCredentials.infoTip": string;
|
|
948
|
+
"credentialEdit.credentialConfig.oauthDisabledTooltip": string;
|
|
922
949
|
"credentialEdit.credentialEdit.confirmMessage.beforeClose1.cancelButtonText": string;
|
|
923
950
|
"credentialEdit.credentialEdit.confirmMessage.beforeClose1.confirmButtonText": string;
|
|
924
951
|
"credentialEdit.credentialEdit.confirmMessage.beforeClose1.headline": string;
|
|
@@ -1855,6 +1882,10 @@ declare const _exports: {
|
|
|
1855
1882
|
"nodeCredentials.quickConnect.connectTo": string;
|
|
1856
1883
|
"nodeCredentials.quickConnect.or": string;
|
|
1857
1884
|
"nodeCredentials.quickConnect.setupManually": string;
|
|
1885
|
+
"nodeCredentials.quickConnect.consent.cancel": string;
|
|
1886
|
+
"nodeCredentials.quickConnect.consent.confirm": string;
|
|
1887
|
+
"nodeCredentials.quickConnect.credential.created.success": string;
|
|
1888
|
+
"nodeCredentials.quickConnect.credential.created.error": string;
|
|
1858
1889
|
"nodeCredentials.emptyState.noCredentials": string;
|
|
1859
1890
|
"nodeCredentials.emptyState.setupCredential": string;
|
|
1860
1891
|
"nodeCredentials.oauth.accountConnected": string;
|
|
@@ -1959,6 +1990,7 @@ declare const _exports: {
|
|
|
1959
1990
|
"nodeSettings.nodeVersion": string;
|
|
1960
1991
|
"nodeView.addNode": string;
|
|
1961
1992
|
"nodeView.openFocusPanel": string;
|
|
1993
|
+
"nodeView.openSidePanel": string;
|
|
1962
1994
|
"nodeView.openNodesPanel": string;
|
|
1963
1995
|
"nodeView.openCommandBar": string;
|
|
1964
1996
|
"nodeView.addATriggerNodeFirst": string;
|
|
@@ -2156,6 +2188,7 @@ declare const _exports: {
|
|
|
2156
2188
|
"parameterInput.selectACredentialTypeFromTheDropdown": string;
|
|
2157
2189
|
"parameterInput.theValueIsNotSupported": string;
|
|
2158
2190
|
"parameterInput.selectedWorkflowIsArchived": string;
|
|
2191
|
+
"parameterInput.invalidJson": string;
|
|
2159
2192
|
"parameterInputExpanded.openDocs": string;
|
|
2160
2193
|
"parameterInputExpanded.thisFieldIsRequired": string;
|
|
2161
2194
|
"parameterInputList.delete": string;
|
|
@@ -2351,7 +2384,8 @@ declare const _exports: {
|
|
|
2351
2384
|
"projectRoles.sourceControl.table.type": string;
|
|
2352
2385
|
"projectRoles.sourceControl.table.assignedTo": string;
|
|
2353
2386
|
"projectRoles.sourceControl.table.lastEdited": string;
|
|
2354
|
-
"projectRoles.
|
|
2387
|
+
"projectRoles.backToProjectRoles": string;
|
|
2388
|
+
"projectRoles.backToProjectSettings": string;
|
|
2355
2389
|
"projectRoles.newRole": string;
|
|
2356
2390
|
"projectRoles.addRole": string;
|
|
2357
2391
|
"projectRoles.discardChanges": string;
|
|
@@ -2955,6 +2989,8 @@ declare const _exports: {
|
|
|
2955
2989
|
"settings.secretsProviderConnections.description": string;
|
|
2956
2990
|
"settings.secretsProviderConnections.card.createdAt": string;
|
|
2957
2991
|
"settings.secretsProviderConnections.actions.share": string;
|
|
2992
|
+
"settings.secretsProviderConnections.oneSecret": string;
|
|
2993
|
+
"settings.secretsProviderConnections.secrets": string;
|
|
2958
2994
|
"settings.secretsProviderConnections.modal.items.connection": string;
|
|
2959
2995
|
"settings.secretsProviderConnections.modal.items.scope": string;
|
|
2960
2996
|
"settings.secretsProviderConnections.modal.scope.placeholder.project": string;
|
|
@@ -2967,12 +3003,9 @@ declare const _exports: {
|
|
|
2967
3003
|
"settings.secretsProviderConnections.modal.saving": string;
|
|
2968
3004
|
"settings.secretsProviderConnections.modal.unsavedChanges.title": string;
|
|
2969
3005
|
"settings.secretsProviderConnections.modal.unsavedChanges.text": string;
|
|
2970
|
-
"settings.secretsProviderConnections.modal.testConnection.success.title": string;
|
|
2971
|
-
"settings.secretsProviderConnections.modal.testConnection.success.description": string;
|
|
2972
3006
|
"settings.secretsProviderConnections.modal.testConnection.success.serviceEnabled": string;
|
|
2973
3007
|
"settings.secretsProviderConnections.modal.testConnection.success.reference": string;
|
|
2974
3008
|
"settings.secretsProviderConnections.modal.testConnection.error": string;
|
|
2975
|
-
"settings.secretsProviderConnections.modal.testConnection.error.serviceDisabled": string;
|
|
2976
3009
|
"settings.secretsProviderConnections.modal.validation.connectionName.required": string;
|
|
2977
3010
|
"settings.secretsProviderConnections.modal.validation.connectionName.format": string;
|
|
2978
3011
|
"settings.secretsProviderConnections.modal.connectionName.hint": string;
|
|
@@ -2980,8 +3013,6 @@ declare const _exports: {
|
|
|
2980
3013
|
"settings.secretsProviderConnections.state.disconnected": string;
|
|
2981
3014
|
"settings.secretsProviderConnections.delete.title": string;
|
|
2982
3015
|
"settings.secretsProviderConnections.delete.description": string;
|
|
2983
|
-
"settings.secretsProviderConnections.delete.description.oneSecret": string;
|
|
2984
|
-
"settings.secretsProviderConnections.delete.description.secrets": string;
|
|
2985
3016
|
"settings.secretsProviderConnections.delete.impact.title": string;
|
|
2986
3017
|
"settings.secretsProviderConnections.delete.impact.oneCredential": string;
|
|
2987
3018
|
"settings.secretsProviderConnections.delete.impact.credentials": string;
|
|
@@ -3754,6 +3785,7 @@ declare const _exports: {
|
|
|
3754
3785
|
"variables.editing.key.placeholder": string;
|
|
3755
3786
|
"variables.editing.value.placeholder": string;
|
|
3756
3787
|
"variables.editing.key.error.regex": string;
|
|
3788
|
+
"variables.editing.key.error.regex-no-start-with-number": string;
|
|
3757
3789
|
"variables.row.button.save": string;
|
|
3758
3790
|
"variables.row.button.cancel": string;
|
|
3759
3791
|
"variables.row.button.edit": string;
|
|
@@ -3839,6 +3871,7 @@ declare const _exports: {
|
|
|
3839
3871
|
"dataTable.import.columnNamePlaceholder": string;
|
|
3840
3872
|
"dataTable.import.duplicateColumnName": string;
|
|
3841
3873
|
"dataTable.import.systemColumnName": string;
|
|
3874
|
+
"dataTable.import.includeColumn": string;
|
|
3842
3875
|
"dataTable.import.invalidColumnName": string;
|
|
3843
3876
|
"dataTable.delete.confirm.message": string;
|
|
3844
3877
|
"dataTable.delete.error": string;
|
|
@@ -4158,10 +4191,11 @@ declare const _exports: {
|
|
|
4158
4191
|
"projects.settings.externalSecrets.button.addSecretsStore": string;
|
|
4159
4192
|
"projects.settings.externalSecrets.button.shareSecretsStore": string;
|
|
4160
4193
|
"projects.settings.externalSecrets.table.header.secretName": string;
|
|
4161
|
-
"projects.settings.externalSecrets.table.header.provider": string;
|
|
4162
4194
|
"projects.settings.externalSecrets.table.header.usedInCredentials": string;
|
|
4163
4195
|
"projects.settings.externalSecrets.search.placeholder": string;
|
|
4164
4196
|
"projects.settings.externalSecrets.load.error": string;
|
|
4197
|
+
"projects.settings.externalSecrets.expand": string;
|
|
4198
|
+
"projects.settings.externalSecrets.collapse": string;
|
|
4165
4199
|
"projects.sharing.allUsers": string;
|
|
4166
4200
|
"projects.sharing.noMatchingProjects": string;
|
|
4167
4201
|
"projects.sharing.noMatchingUsers": string;
|
|
@@ -4358,6 +4392,11 @@ declare const _exports: {
|
|
|
4358
4392
|
"setupPanel.usedInNodes": string;
|
|
4359
4393
|
"setupPanel.everythingConfigured.message": string;
|
|
4360
4394
|
"setupPanel.trigger.credential.note": string;
|
|
4395
|
+
"setupPanel.trigger.listeningHint": string;
|
|
4396
|
+
"setupPanel.showCompleted": string;
|
|
4397
|
+
"setupPanel.webhookUrl.title": string;
|
|
4398
|
+
"setupPanel.webhookUrl.clickToCopy": string;
|
|
4399
|
+
"setupPanel.webhookUrl.copied": string;
|
|
4361
4400
|
"becomeCreator.text": string;
|
|
4362
4401
|
"becomeCreator.buttonText": string;
|
|
4363
4402
|
"becomeCreator.closeButtonTitle": string;
|
|
@@ -4553,7 +4592,11 @@ declare const _exports: {
|
|
|
4553
4592
|
"communityNodeInfo.downloads": string;
|
|
4554
4593
|
"communityNodeInfo.publishedBy": string;
|
|
4555
4594
|
"communityNodeInfo.quickConnect": string;
|
|
4595
|
+
"communityNodeInfo.quickConnect.tooltip": string;
|
|
4556
4596
|
"communityNodeInfo.contact.admin": string;
|
|
4597
|
+
"credentialsAppSelection.installToConnect": string;
|
|
4598
|
+
"credentialsAppSelection.askAdminToInstall": string;
|
|
4599
|
+
"credentialsAppSelection.credentialsNotValid": string;
|
|
4557
4600
|
"communityNodeUpdateInfo.available": string;
|
|
4558
4601
|
"insights.upgradeModal.button.dismiss": string;
|
|
4559
4602
|
"insights.upgradeModal.content": string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/i18n",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.10.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
7
7
|
"LICENSE.md",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"vue-i18n": "^11.1.2",
|
|
27
|
-
"n8n-workflow": "2.
|
|
27
|
+
"n8n-workflow": "2.10.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@testing-library/jest-dom": "^6.6.3",
|