-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathen.json
More file actions
4725 lines (4725 loc) · 366 KB
/
Copy pathen.json
File metadata and controls
4725 lines (4725 loc) · 366 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"_reusableBaseText": {
"cancel": "Cancel",
"codeNodeEditor": {
"linter": {
"useJson": "Access the properties of an item under `.json`, e.g. `item.json`"
},
"completer": {
"all": "Returns an array of the node's output items",
"first": "Returns the first item output by the node",
"last": "Returns the last item output by the node",
"itemMatching": "Returns the matching item, i.e. the one used to produce the item in the current node at the specified index."
}
},
"name": "Name",
"save": "Save",
"dismiss": "Dismiss",
"unlimited": "Unlimited",
"activate": "Activate",
"user": "User",
"enabled": "Enabled",
"disabled": "Disabled",
"type": "Type",
"role": "Role",
"roles": {
"admin": "Admin",
"editor": "Editor",
"viewer": "Viewer"
}
},
"_reusableDynamicText": {
"readMore": "Read more",
"learnMore": "Learn more",
"moreInfo": "More info",
"oauth2": {
"clientId": "Client ID",
"clientSecret": "Client Secret"
}
},
"generic.annotations": "Annotations",
"generic.annotationData": "Highlighted data",
"generic.any": "Any",
"generic.allow": "Allow",
"generic.deny": "Deny",
"generic.docs": "Docs",
"generic.documentation": "Documentation",
"generic.back": "Back",
"generic.cancel": "Cancel",
"generic.connect": "Connect",
"generic.open": "Open",
"generic.openResource": "Open {resource}",
"generic.add": "Add",
"generic.close": "Close",
"generic.clear": "Clear",
"generic.confirm": "Confirm",
"generic.create": "Create",
"generic.start": "Start",
"generic.create.workflow": "Create workflow",
"generic.deleteWorkflowError": "Problem deleting workflow",
"generic.archiveWorkflowError": "Problem archiving workflow",
"generic.unarchiveWorkflowError": "Problem unarchiving workflow",
"generic.filtersApplied": "Filters are currently applied.",
"generic.field": "field",
"generic.fields": "fields",
"generic.folderCount": "Folder | {count} Folder | {count} Folders",
"generic.folder": "Folder",
"generic.keepBuilding": "Keep building",
"generic.learnMore": "Learn more",
"generic.recommended": "Recommended",
"generic.reset": "Reset",
"generic.resetAllFilters": "Reset all filters",
"generic.communityNode": "Community Node",
"generic.communityNode.tooltip": "This is a node from our community. It's part of the {packageName} package. <a href=\"{docURL}\" target=\"_blank\" title=\"Read the n8n docs\">Learn more</a>",
"generic.officialNode.tooltip": "This is an official node maintained by {author}",
"generic.complete": "Complete",
"generic.copy": "Copy",
"generic.copied": "Copied",
"generic.delete": "Delete",
"generic.edit": "Edit",
"generic.keepEditing": "Keep editing",
"generic.dontShowAgain": "Don't show again",
"generic.enterprise": "Enterprise",
"generic.executions": "Executions",
"generic.tag_plural": "Tags",
"generic.tag": "Tag | {count} Tags",
"generic.tests": "Evaluations",
"generic.templates": "Templates",
"generic.optional": "optional",
"generic.or": "or",
"generic.clickToCopy": "Click to copy",
"generic.copiedToClipboard": "Copied to clipboard",
"generic.beta": "beta",
"generic.betaProper": "Beta",
"generic.yes": "Yes",
"generic.no": "No",
"generic.rating": "Rating",
"generic.refresh": "Refresh",
"generic.retry": "Retry",
"generic.error": "Something went wrong",
"generic.error.subworkflowCreationFailed": "Error creating sub-workflow",
"generic.settings": "Settings",
"generic.service": "the service",
"generic.star": "Star",
"generic.tryNow": "Try now",
"generic.startNow": "Start now",
"generic.dismiss": "Dismiss",
"generic.saving": "Saving",
"generic.name": "Name",
"generic.nameVersion": "Name version",
"generic.description": "Description",
"generic.unsavedWork.confirmMessage.headline": "Save changes before leaving?",
"generic.unsavedWork.confirmMessage.message": "If you don't save, you might lose your changes.",
"generic.unsavedWork.confirmMessage.confirmButtonText": "Save",
"generic.unsavedWork.confirmMessage.cancelButtonText": "Leave without saving",
"generic.trial.message.days": "1 day left | {count} days left",
"generic.trial.message.hours": "1 hour left | {count} hours left",
"generic.trial.message.minutes": "1 minute left | {count} minutes left",
"generic.trial.tooltip.days": "1 day left in your trial. Upgrade to keep using n8n. | {count} days left in your trial. Upgrade to keep using n8n.",
"generic.trial.tooltip.hours": "1 hour left in your trial. Upgrade to keep using n8n. | {count} hours left in your trial. Upgrade to keep using n8n.",
"generic.trial.tooltip.minutes": "1 minute left in your trial. Upgrade to keep using n8n. | {count} minutes left in your trial. Upgrade to keep using n8n.",
"generic.upgrade": "Upgrade",
"generic.upgradeNow": "Upgrade now",
"generic.update": "Update",
"generic.credential": "Credential | {count} Credential | {count} Credentials",
"generic.credentials": "Credentials",
"generic.datatable": "Data table | {count} Data table | {count} Data tables",
"generic.workflow": "Workflow | {count} Workflow | {count} Workflows",
"generic.workflowSaved": "Workflow changes saved",
"generic.autosave.retrying": "Autosave failed: {error}\nRetrying in {retryIn}...",
"generic.editor": "Editor",
"generic.seePlans": "See plans",
"generic.loading": "Loading",
"generic.loadingEllipsis": "Loading...",
"generic.and": "and",
"generic.ownedByMe": "(You)",
"generic.moreInfo": "More info",
"generic.next": "Next",
"generic.pro": "Pro",
"generic.variable_plural": "Variables",
"generic.folders_plural": "Folders",
"generic.variable": "Variable | {count} Variables",
"generic.viewDocs": "View docs",
"generic.workflows": "Workflows",
"generic.rename": "Rename",
"generic.missing.permissions": "Missing permissions to perform this action",
"generic.shortcutHint": "Or press",
"generic.unknownError": "An unknown error occurred",
"generic.upgradeToEnterprise": "Upgrade to Enterprise",
"generic.never": "Never",
"generic.list.clearSelection": "Clear selection",
"generic.list.selected": "{count} row selected | {count} rows selected",
"generic.project": "Project",
"generic.projects": "Projects",
"generic.your": "Your",
"generic.you": "you",
"generic.apiKey": "API Key",
"generic.search": "Search",
"generic.showMore": "Show more",
"generic.showLess": "Show less",
"generic.stopAll": "Stop all",
"generic.published": "Published",
"generic.notPublished": "Not published",
"generic.tip": "Tip",
"about.aboutN8n": "About n8n",
"about.close": "Close",
"about.license": "License",
"about.n8nLicense": "Sustainable Use License + n8n Enterprise License",
"about.n8nVersion": "n8n Version",
"about.sourceCode": "Source Code",
"about.instanceID": "Instance ID",
"about.debug.title": "Debug",
"about.debug.message": "Copy debug information",
"about.debug.toast.title": "Debug info",
"about.debug.toast.message": "Copied debug info to clipboard",
"about.thirdPartyLicenses": "Third-Party Licenses",
"about.thirdPartyLicensesLink": "View all third-party licenses",
"about.thirdPartyLicenses.downloadError": "Failed to download third-party licenses file",
"appSelection.heading": "Welcome, {name}!",
"appSelection.heading.noName": "Welcome!",
"appSelection.subheading": "Connect your favorite apps to get started",
"appSelection.searchPlaceholder": "Search apps...",
"appSelection.continue": "Continue",
"appSelection.continueWithCount": "Continue ({count})",
"appSelection.noResults": "No apps found matching your search",
"appSelection.error.oauthFailed": "Failed to connect app",
"appSelection.toast.success": "You're ready to build!",
"appSelection.instantConnect": "Instant connect",
"appSelection.connectLater": "I'll connect apps later",
"askAi.dialog.title": "'Ask AI' is almost ready",
"askAi.dialog.body": "We’re still applying the finishing touches. Soon, you will be able to <strong>automatically generate code from simple text prompts</strong>. Join the waitlist to get early access to this feature.",
"askAi.dialog.signup": "Join Waitlist",
"activationModal.butYouCanSeeThem": "but you can see them in the",
"activationModal.executionList": "execution list",
"activationModal.gotIt": "Got it",
"activationModal.ifYouChooseTo": "if you choose to",
"activationModal.saveExecutions": "save executions.",
"activationModal.theseExecutionsWillNotShowUp": "These executions will not show up immediately in the editor,",
"activationModal.workflowPublished": "Workflow published",
"activationModal.yourTriggerWillNowFire": "Your trigger will now fire production executions automatically.",
"activationModal.yourTriggersWillNowFire": "Your triggers will now fire production executions automatically.",
"activationModal.yourWorkflowWillNowListenForEvents": "Your workflow will now listen for events from {serviceName} and trigger executions.",
"activationModal.yourWorkflowWillNowRegularlyCheck": "Your workflow will now regularly check {serviceName} for events and trigger executions for them.",
"annotationTagsManager.manageTags": "Manage execution tags",
"annotationTagsView.usage": "Usage (all workflows)",
"annotationTagsView.inUse": "{count} execution | {count} executions",
"auth.changePassword": "Change password",
"auth.changePassword.currentPassword": "Current password",
"auth.changePassword.mfaCode": "Two-factor code",
"auth.changePassword.error": "Problem changing the password",
"auth.changePassword.missingTokenError": "Missing token",
"auth.changePassword.missingUserIdError": "Missing user ID",
"auth.changePassword.passwordUpdated": "Password updated",
"auth.changePassword.passwordUpdatedMessage": "You can now sign in with your new password",
"auth.changePassword.passwordsMustMatchError": "Passwords must match",
"auth.changePassword.reenterNewPassword": "Re-enter new password",
"auth.changePassword.tokenValidationError": "Invalid password-reset token",
"auth.confirmPassword": "Confirm password",
"auth.confirmPassword.currentPassword": "Current password",
"auth.confirmPassword.confirmPasswordToChangeEmail": "Please confirm your password in order to change your email address.",
"auth.defaultPasswordRequirements": "8+ characters, at least 1 number and 1 capital letter",
"auth.validation.missingParameters": "Missing token or user id",
"auth.email": "Email",
"auth.firstName": "First Name",
"auth.lastName": "Last Name",
"auth.newPassword": "New password",
"auth.password": "Password",
"auth.role": "Role",
"auth.roles.default": "Default",
"auth.roles.member": "Member",
"auth.roles.admin": "@:_reusableBaseText.roles.admin",
"auth.roles.owner": "Owner",
"auth.roles.chatUser": "Chat user",
"auth.agreement.label": "I want to receive security and product updates",
"auth.setup.next": "Next",
"auth.setup.settingUpOwnerError": "Problem setting up owner",
"auth.setup.setupOwner": "Set up owner account",
"auth.signin": "Sign in",
"auth.signin.error": "Problem logging in",
"auth.signout": "Sign out",
"auth.signout.error": "Could not sign out",
"auth.signup.finishAccountSetup": "Finish account setup",
"auth.signup.missingTokenError": "Missing token",
"auth.signup.setupYourAccount": "Set up your account",
"auth.signup.setupYourAccountError": "Problem setting up your account",
"auth.signup.tokenValidationError": "Issue validating invite token",
"aiAssistant.name": "n8n AI",
"aiAssistant.assistant": "Assistant",
"aiAssistant.tabs.ask": "Ask",
"aiAssistant.tabs.build": "Build",
"aiAssistant.reducedHelp.chat.notice": "You have opted not to share actual data values. As a result, AI responses will be less accurate and context-aware.",
"aiAssistant.tabs.builder.disabled.tooltip": "AI Builder is disabled because sending data values to AI is turned off. Enable it in AI Usage settings to use AI Builder.",
"aiAssistant.builder.mode": "AI Builder",
"aiAssistant.builder.placeholder": "Ask n8n to build...",
"aiAssistant.builder.assistantPlaceholder": "What would you like to modify or add?",
"aiAssistant.builder.existingWorkflow.emptyState.title": "Modify your workflow",
"aiAssistant.builder.existingWorkflow.emptyState.body": "Ask n8n AI to modify existing nodes, add new steps, update parameters, or help debug issues in your workflow.",
"aiAssistant.builder.planMode.selector.build": "Build",
"aiAssistant.builder.planMode.selector.build.description": "Build right away · 1 credit",
"aiAssistant.builder.planMode.selector.plan": "Plan",
"aiAssistant.builder.planMode.selector.plan.description": "Refine requirements first · free",
"aiAssistant.builder.planMode.questions.title": "A few quick questions",
"aiAssistant.builder.planMode.questions.customPlaceholder": "Add details (optional)",
"aiAssistant.builder.planMode.questions.submitButton": "Submit",
"aiAssistant.builder.planMode.questions.back": "Back",
"aiAssistant.builder.planMode.questions.next": "Next",
"aiAssistant.builder.planMode.questions.skip": "Skip",
"aiAssistant.builder.planMode.questions.skipAndSubmit": "Skip & submit",
"aiAssistant.builder.planMode.questions.other": "Other",
"aiAssistant.builder.planMode.answers.skipped": "Skipped",
"aiAssistant.builder.planMode.plan.title": "Proposed plan",
"aiAssistant.builder.planMode.plan.triggerLabel": "Trigger",
"aiAssistant.builder.planMode.plan.stepsLabel": "Steps",
"aiAssistant.builder.planMode.plan.notesLabel": "Notes",
"aiAssistant.builder.planMode.plan.feedbackLabel": "Feedback (optional)",
"aiAssistant.builder.planMode.plan.feedbackPlaceholder": "Describe what you'd like to change",
"aiAssistant.builder.planMode.actions.submitAnswers": "Submit answers",
"aiAssistant.builder.planMode.actions.implement": "Implement the plan",
"aiAssistant.builder.planMode.actions.modify": "Request changes",
"aiAssistant.builder.planMode.actions.modifyWithFeedback": "Request changes: {feedback}",
"aiAssistant.builder.planMode.answers.noAnswer": "No answer provided",
"aiAssistant.builder.planMode.actions.reject": "Reject the plan",
"aiAssistant.builder.planMode.actions.rejectWithFeedback": "Reject the plan: {feedback}",
"aiAssistant.builder.characterLimit": "You've reached the { limit } character limit",
"aiAssistant.builder.generateNew": "Generate new workflow",
"aiAssistant.builder.newWorkflowNotice": "The created workflow will be added to the editor",
"aiAssistant.builder.feedbackPrompt": "Is this workflow helpful?",
"aiAssistant.builder.invalidPrompt": "Prompt validation failed. Please try again with a clearer description of your workflow requirements and supported integrations.",
"aiAssistant.builder.workflowParsingError.title": "Unable to insert workflow",
"aiAssistant.builder.workflowParsingError.content": "The workflow returned by AI could not be parsed. Please try again.",
"aiAssistant.builder.error.title": "Workflow update failed",
"aiAssistant.builder.reviewChanges.button": "Review changes",
"aiAssistant.builder.reviewChanges.editedNodes": "Edited {count} nodes",
"aiAssistant.builder.reviewChanges.previousVersion": "Previous version",
"aiAssistant.builder.reviewChanges.currentVersion": "Current version",
"aiAssistant.builder.reviewChanges.error": "Could not load the previous version of the workflow. The version history may no longer be available.",
"aiAssistant.builder.canvasPrompt.title": "What would you like to automate?",
"aiAssistant.builder.canvasPrompt.confirmTitle": "Replace current prompt?",
"aiAssistant.builder.canvasPrompt.confirmMessage": "This will replace your current prompt. Are you sure?",
"aiAssistant.builder.canvasPrompt.confirmButton": "Replace",
"aiAssistant.builder.canvasPrompt.cancelButton": "Cancel",
"aiAssistant.builder.canvasPrompt.startManually.title": "Start manually",
"aiAssistant.builder.canvasPrompt.startManually.subTitle": "Add the first node",
"aiAssistant.builder.canvasPrompt.buildWithAI": "Build with AI",
"aiAssistant.builder.credentialHelpMessage": "How do I set up the credentials for {credentialName}?",
"aiAssistant.builder.errorHelpMessage": "I'm getting an error on the \"{nodeName}\" node: {errorMessage}",
"aiAssistant.builder.streamAbortedMessage": "Task aborted",
"aiAssistant.builder.executeMessage.description": "Complete these steps before executing your workflow",
"aiAssistant.builder.executeMessage.noIssues": "Your workflow is ready to be executed",
"aiAssistant.builder.executeMessage.noIssuesWithPinData": "Your workflow is set up with test data (pinned data) for you to execute. Unpin nodes to execute with your own data.",
"aiAssistant.builder.executeMessage.validationTooltip": "Complete the steps above before executing",
"aiAssistant.builder.executeMessage.execute": "Execute and refine",
"aiAssistant.builder.executeMessage.chooseModel": "Choose model",
"aiAssistant.builder.executeMessage.chooseCredentials": "Choose credentials",
"aiAssistant.builder.executeMessage.noExecutionData": "Workflow execution could not be started. Please try again.",
"aiAssistant.builder.executeMessage.executionSuccess": "Workflow executed successfully.",
"aiAssistant.builder.executeMessage.executionFailedOnNode": "Workflow execution failed on node \"{nodeName}\": {errorMessage}",
"aiAssistant.builder.executeMessage.executionFailed": "Workflow execution failed: {errorMessage}",
"aiAssistant.builder.executeMessage.fillParameter": "Update \"{label}\" parameter",
"aiAssistant.builder.executeMessage.addMissingCredentials": "Add missing credentials:",
"aiAssistant.builder.executeMessage.nodeListTwo": "{first} and {second}",
"aiAssistant.builder.executeMessage.nodeListLast": "{list}, and {last}",
"aiAssistant.builder.executeMessage.nodeListMore": "{list}, and {count} more | {list}, and {count} more",
"aiAssistant.builder.executeMessage.unpinAll": "Unpin all nodes",
"aiAssistant.builder.executeMessage.unpinIndividually": "or unpin individually",
"aiAssistant.builder.executeMessage.unpinTooltip": "Right-click on a node and select \"Unpin\" to unpin it",
"aiAssistant.builder.toast.title": "Send chat message to start the execution",
"aiAssistant.builder.toast.description": "Please send a message in the chat panel to start the execution of your workflow",
"aiAssistant.builder.restoreError.title": "Failed to restore version",
"aiAssistant.builder.disabledTooltip.autosaving": "Saving workflow...",
"aiAssistant.builder.disabledTooltip.readOnly": "Another user is currently editing this workflow",
"aiAssistant.builder.thinkingCompletionMessage.codeBuilder": "Crafting workflow",
"aiAssistant.builder.notification.title": "Workflow ready - n8n",
"aiAssistant.builder.notification.body": "Done building {workflowName}",
"aiAssistant.builder.notification.inputNeeded.title": "Input needed - n8n",
"aiAssistant.builder.notification.inputNeeded.body": "Waiting for your response on {workflowName}",
"aiAssistant.builder.notificationBanner.text": "Want to be notified when the agent finishes building?",
"aiAssistant.builder.notificationBanner.notify": "Notify",
"aiAssistant.builder.upgradeWhileStreaming.title": "AI Builder is still working",
"aiAssistant.builder.upgradeWhileStreaming.message": "The AI Builder is currently generating your workflow. Leaving this page will stop the generation.",
"aiAssistant.builder.upgradeWhileStreaming.confirmButtonText": "Leave and upgrade",
"aiAssistant.builder.upgradeWhileStreaming.cancelButtonText": "Stay",
"aiAssistant.newSessionModal.title.part1": "Start new",
"aiAssistant.newSessionModal.title.part2": "session",
"aiAssistant.newSessionModal.message": "You already have an active n8n AI session. Starting a new session will clear your current conversation history.",
"aiAssistant.newSessionModal.question": "Are you sure you want to start a new session?",
"aiAssistant.newSessionModal.confirm": "Start new session",
"aiAssistant.serviceError.message": "Unable to connect to n8n's AI service ({message})",
"aiAssistant.payloadTooBig.message": "Payload size is too large",
"aiAssistant.codeUpdated.message.title": "n8n AI modified workflow",
"aiAssistant.codeUpdated.message.body1": "Open the",
"aiAssistant.codeUpdated.message.body2": "node to see the changes",
"aiAssistant.thinkingSteps.analyzingError": "Analyzing the error...",
"aiAssistant.thinkingSteps.compacting": "Compacting",
"aiAssistant.thinkingSteps.thinking": "Thinking",
"aiAssistant.prompts.currentView.workflowList": "The user is currently looking at the list of workflows.",
"aiAssistant.prompts.currentView.credentialsList": "The user is currently looking at the list of credentials.",
"aiAssistant.prompts.currentView.executionsView": "The user is currently looking at the list of executions for the currently open workflow.",
"aiAssistant.prompts.currentView.workflowEditor": "The user is currently looking at the current workflow in n8n editor, without any specific node selected.",
"aiAssistant.tooltip": "n8n AI",
"aiAssistant.coachmark.title": "Ask mode enabled",
"aiAssistant.coachmark.body": "Ask questions about n8n, get help with errors, or learn about automation. Switch to Build anytime to create workflows.",
"aiAssistant.coachmark.gotIt": "Got it",
"aiAssistant.askMode.emptyState.title": "Ask n8n AI",
"aiAssistant.askMode.emptyState.body1": "Ask anything about n8n, your workflow, or how to accomplish a task. This won't use any of your AI credits.",
"aiAssistant.askMode.emptyState.body2": "Look for the",
"aiAssistant.askMode.emptyState.body3": "button throughout the UI to get contextual help.",
"aiAssistant.askMode.inputPlaceholder": "What do you need help with?",
"banners.confirmEmail.message.1": "To secure your account and prevent future access issues, please confirm your",
"banners.confirmEmail.message.2": "email address.",
"banners.confirmEmail.button": "Confirm email",
"banners.confirmEmail.toast.success.heading": "Confirmation email sent",
"banners.confirmEmail.toast.success.message": "Please check your inbox and click the confirmation link.",
"banners.confirmEmail.toast.error.heading": "Problem sending confirmation email",
"banners.confirmEmail.toast.error.message": "Please try again later.",
"banners.nonProductionLicense.message": "This n8n instance is not licensed for production purposes.",
"banners.trial.message.days": "1 day left in your n8n trial | {count} days left in your n8n trial",
"banners.trial.message.hours": "1 hour left in your n8n trial | {count} hours left in your n8n trial",
"banners.trial.message.minutes": "1 minute left in your n8n trial | {count} minutes left in your n8n trial",
"banners.trialOver.message": "Your trial is over. Upgrade now to keep automating.",
"banners.v1.message": "n8n has been updated to version 1, introducing some breaking changes. Please consult the <a target=\"_blank\" href=\"https://docs.n8n.io/1-0-migration-checklist\">migration guide</a> for more information.",
"banners.workflowAutoDeactivated.message": "This workflow was automatically deactivated due to multiple crashed executions. Please review and reactivate it when ready.",
"binaryDataDisplay.backToList": "Back to list",
"binaryDataDisplay.backToOverviewPage": "Back to overview page",
"binaryDataDisplay.noDataFoundToDisplay": "No data found to display",
"binaryDataDisplay.yourBrowserDoesNotSupport": "Your browser does not support the video element. Kindly update it to latest version.",
"chat.hide": "Hide chat",
"chat.open": "Open chat",
"chat.window.title": "Chat",
"chat.window.logs": "Latest Logs",
"chat.window.logsFromNode": "from {nodeName} node",
"chat.window.noChatNode": "No Chat Node",
"chat.window.noExecution": "Nothing got executed yet",
"chat.window.chat.placeholder": "Type message, or press ‘up’ for previous one",
"chat.window.chat.placeholderPristine": "Type a message",
"chat.window.chat.sendButtonText": "Send",
"chat.window.chat.provideMessage": "Please provide a message",
"chat.window.chat.emptyChatMessage": "Empty chat message",
"chat.window.chat.emptyChatMessage.v2": "Send a message below to trigger the chat workflow",
"chat.window.chat.chatMessageOptions.reuseMessage": "Reuse Message",
"chat.window.chat.chatMessageOptions.repostMessage": "Repost Message",
"chat.window.chat.chatMessageOptions.executionId": "Execution ID",
"chat.window.chat.unpinAndExecute.description": "Sending the message overwrites the pinned chat node data.",
"chat.window.chat.unpinAndExecute.title": "Unpin chat output data?",
"chat.window.chat.unpinAndExecute.confirm": "Unpin and send",
"chat.window.chat.unpinAndExecute.cancel": "Cancel",
"chat.window.chat.response.empty": "[No response. Make sure the last executed node outputs the content to display here]",
"chat.window.session.title": "Session",
"chat.window.session.id": "Session: {id}",
"chat.window.session.id.copy": "(click to copy)",
"chat.window.session.reset": "Reset",
"chat.window.session.resetSession": "Reset chat session",
"chatHub.agent.personalAgents": "Personal agents",
"chatHub.agent.workflowAgents": "Workflow agents",
"chatHub.agent.newAgent": "New Agent",
"chatHub.agent.unavailableAgent": "Unavailable agent",
"chatHub.agent.configureCredentials": "Configure credentials",
"chatHub.agent.addModel": "Add model",
"chatHub.agent.credentialsMissing": "Credentials missing",
"chatHub.agent.card.menu.edit": "Edit",
"chatHub.agent.card.menu.delete": "Delete",
"chatHub.agent.card.noDescription": "No description",
"chatHub.agent.card.button.edit": "Edit",
"chatHub.agent.card.button.moreOptions": "More options",
"chatHub.agent.editor.title.new": "New Agent",
"chatHub.agent.editor.title.edit": "Edit Agent",
"chatHub.agent.editor.name.label": "Icon and name",
"chatHub.agent.editor.name.placeholder": "Enter agent name",
"chatHub.agent.editor.iconPicker.button.tooltip": "Change icon",
"chatHub.agent.editor.description.label": "Description",
"chatHub.agent.editor.description.placeholder": "Enter agent description (optional)",
"chatHub.agent.editor.systemPrompt.label": "System Prompt",
"chatHub.agent.editor.systemPrompt.placeholder": "Enter system prompt",
"chatHub.agent.editor.model.label": "Model",
"chatHub.agent.editor.tools.label": "Tools",
"chatHub.agent.editor.loading": "Loading agent...",
"chatHub.agent.editor.saving": "Saving...",
"chatHub.agent.editor.save": "Save",
"chatHub.agent.editor.cancel": "Cancel",
"chatHub.agent.editor.delete": "Delete",
"chatHub.agent.editor.deleting": "Deleting...",
"chatHub.agent.editor.delete.confirm.title": "Delete Agent",
"chatHub.agent.editor.delete.confirm.message": "Are you sure you want to delete this agent? This action cannot be undone.",
"chatHub.agent.editor.delete.confirm.button": "Delete",
"chatHub.agent.editor.delete.cancel.button": "Cancel",
"chatHub.agent.editor.error.load": "Failed to load agent",
"chatHub.agent.editor.error.save": "Failed to save agent",
"chatHub.agent.editor.error.delete": "Failed to delete agent",
"chatHub.agent.editor.success.create": "Agent created successfully",
"chatHub.agent.editor.success.update": "Agent updated successfully",
"chatHub.agent.editor.success.delete": "Agent deleted successfully",
"chatHub.agents.loadError": "Failed to load agent",
"chatHub.agents.delete.confirm.message": "Are you sure you want to delete this agent?",
"chatHub.agents.delete.confirm.title": "Delete agent",
"chatHub.agents.delete.confirm.button": "Delete",
"chatHub.agents.delete.cancel.button": "Cancel",
"chatHub.agents.delete.success": "Agent deleted successfully",
"chatHub.agents.delete.error": "Could not delete the agent",
"chatHub.agents.button.newAgent": "New Agent",
"chatHub.agents.search.placeholder": "Search",
"chatHub.agents.sort.updatedAt": "Sort by last updated",
"chatHub.agents.sort.createdAt": "Sort by created",
"chatHub.agents.empty.noMatch": "No agents match your search criteria.",
"chatHub.workflowAgents.title": "Workflow Agents",
"chatHub.workflowAgents.description": "Browse and use AI agents built with n8n workflows",
"chatHub.workflowAgents.empty.noAgents": "No workflow agents available.",
"chatHub.workflowAgents.empty.noMatch": "No workflow agents match your search criteria.",
"chatHub.personalAgents.title": "Personal Agents",
"chatHub.personalAgents.description": "Create and manage custom AI agents with specific instructions and behaviors",
"chatHub.personalAgents.empty.noAgents": "No personal agents available. Create your first custom agent to get started.",
"chatHub.personalAgents.empty.noMatch": "No personal agents match your search criteria.",
"chatHub.chat.greeting": "Start a chat with",
"chatHub.chat.greeting.fallback": "Select a model to start chatting",
"chatHub.welcome.header": "Your agents, any model",
"chatHub.welcome.subtitle": "One place to talk to everything you've built or connected",
"chatHub.welcome.card.workflowAgents.title": "Workflow agents",
"chatHub.welcome.card.workflowAgents.description": "Agents built with n8n workflows, made available by builders in your instance.",
"chatHub.welcome.card.personalAgents.title": "Personal agents",
"chatHub.welcome.card.personalAgents.description": "Simple agents with custom instructions and tool sets you define.",
"chatHub.welcome.card.baseModels.title": "Base models",
"chatHub.welcome.card.baseModels.description": "Chat models from any provider you have access to a credential for.",
"chatHub.welcome.button.startNewChat": "Start new chat",
"chatHub.welcome.button.inviteChatUsers": "Invite chat users",
"chatHub.welcome.inviteUpgrade.tooltip": "{link} to invite chat users. Read more {docsLink}",
"chatHub.welcome.inviteUpgrade.here": "here.",
"chatHub.chat.dropOverlay": "Drop files here to attach",
"chatHub.chat.scrollToBottom": "Scroll to bottom",
"chatHub.chat.header.button.editAgent": "Edit Agent",
"chatHub.chat.header.button.newChat": "New Chat",
"chatHub.chat.header.button.openWorkflow": "Open Workflow",
"chatHub.chat.prompt.microphone.accessDenied": "Microphone access denied",
"chatHub.chat.prompt.microphone.allowAccess": "Please allow microphone access to use voice input",
"chatHub.chat.prompt.microphone.noSpeech": "No speech detected. Please try again",
"chatHub.chat.prompt.callout.selectModel.new": "Please {link} to start a conversation",
"chatHub.chat.prompt.callout.selectModel.new.link": "select a model",
"chatHub.chat.prompt.callout.selectModel.existing": "Please {link} to continue the conversation",
"chatHub.chat.prompt.callout.selectModel.existing.link": "reselect a model",
"chatHub.chat.prompt.callout.setCredentials.new": "Please {link} for {provider} to start a conversation",
"chatHub.chat.prompt.callout.setCredentials.new.link": "set credentials",
"chatHub.chat.prompt.callout.setCredentials.existing": "Please {link} for {provider} to continue the conversation",
"chatHub.chat.prompt.callout.setCredentials.existing.link": "set credentials",
"chatHub.chat.prompt.button.attach": "Attach",
"chatHub.chat.prompt.button.attach.disabled": "File attachments are not supported by the selected model",
"chatHub.chat.prompt.button.stopRecording": "Stop recording",
"chatHub.chat.prompt.button.voiceInput": "Voice input",
"chatHub.chat.prompt.button.send": "Send",
"chatHub.chat.prompt.button.stopGenerating": "Stop generating",
"chatHub.chat.prompt.placeholder.withModel": "Message {model}...",
"chatHub.chat.prompt.placeholder.selectModel": "Select a model",
"chatHub.tools.editor.title": "Add Tools",
"chatHub.tools.editor.credential": "Credential",
"chatHub.tools.editor.credential.placeholder": "Select credential…",
"chatHub.tools.editor.credential.createNew": "Create New",
"chatHub.tools.editor.credential.createNew.permissionDenied": "Your current role does not allow you to create credentials",
"chatHub.tools.editor.selectedCount": "{count} tool selected | {count} tools selected",
"chatHub.tools.editor.confirm": "Confirm",
"chatHub.tools.editor.cancel": "Cancel",
"chatHub.tools.selector.label.count": "{count} Tool | {count} Tools",
"chatHub.tools.selector.label.default": "Tools",
"chatHub.tools.selector.disabled.tooltip": "Tools are not supported by the selected model",
"chatHub.tools.selector.disabled.noModel.tooltip": "Select a model to use tools",
"chatHub.toolSettings.title": "Configure Tool",
"chatHub.toolSettings.confirm": "Save",
"chatHub.toolSettings.cancel": "Cancel",
"chatHub.toolsManager.title": "Tools",
"chatHub.toolsManager.searchPlaceholder": "Search tools...",
"chatHub.toolsManager.configuredTools": "Configured tools ({count})",
"chatHub.toolsManager.availableTools": "Available tools ({count})",
"chatHub.toolsManager.noResults": "No tools found",
"chatHub.toolsManager.add": "Add",
"chatHub.toolsManager.addTool": "Add tool",
"chatHub.toolsManager.remove": "Remove",
"chatHub.toolsManager.configure": "Configure",
"chatHub.toolsManager.manageTools": "Manage tools",
"chatHub.toolsManager.enableTool": "Enable tool",
"chatHub.toolsManager.confirmRemove.message": "Are you sure you want to remove this tool? It will also be removed from all your conversations and personal agents that use it.",
"chatHub.toolsManager.confirmRemove.title": "Remove tool",
"chatHub.toolsManager.disableTool": "Disable tool",
"chatHub.credentials.selector.title": "Select {provider} credential",
"chatHub.credentials.selector.chooseOrCreate": "Choose or create a credential for {provider}",
"chatHub.credentials.selector.createNew": "Create new",
"chatHub.credentials.selector.createNew.permissionDenied": "Your current role does not allow you to create credentials",
"chatHub.credentials.selector.confirm": "Select",
"chatHub.credentials.selector.cancel": "Cancel",
"chatHub.message.actions.readAloud": "Read aloud",
"chatHub.message.actions.stopReading": "Stop reading",
"chatHub.message.actions.edit": "Edit",
"chatHub.message.actions.regenerate": "Regenerate",
"chatHub.message.actions.executionId": "Execution ID",
"chatHub.message.edit.cancel": "Cancel",
"chatHub.message.edit.send": "Send",
"chatHub.message.error.unknown": "Something went wrong. Please try again.",
"chatHub.error.payloadTooLarge": "Message too large",
"chatHub.error.badRequest": "Invalid request",
"chatHub.error.forbidden": "Permission denied",
"chatHub.error.serverError": "Server error",
"chatHub.error.serverErrorWithReason": "Server error: {error}",
"chatHub.error.unknown": "Unknown error",
"chatHub.error.noConnection": "Connection failed",
"chatHub.error.fetchConversationFailed": "Failed to load conversation",
"chatHub.error.sendMessageFailed": "Failed to send message",
"chatHub.error.updateModelFailed": "Failed to update model",
"chatHub.error.updateToolsFailed": "Failed to update tools",
"chatHub.models.selector.defaultLabel": "Select model",
"chatHub.models.selector.personalProject": "Personal",
"chatHub.models.selector.noMatch": "No agents match your search criteria.",
"chatHub.models.selector.moreModels": "More {providerName} models...",
"chatHub.models.byIdSelector.title": "Choose {provider} model by ID",
"chatHub.models.byIdSelector.choose": "Enter model identifier (e.g. \"gpt-4\")",
"chatHub.models.byIdSelector.confirm": "Select",
"chatHub.models.byIdSelector.cancel": "Cancel",
"chatHub.session.actions.rename": "Rename",
"chatHub.session.actions.delete": "Delete",
"chatHub.session.updateTitle.error": "Could not update the conversation title.",
"chatHub.session.delete.confirm.message": "Are you sure you want to delete this conversation?",
"chatHub.session.delete.confirm.title": "Delete conversation",
"chatHub.session.delete.confirm.button": "Delete",
"chatHub.session.delete.cancel.button": "Cancel",
"chatHub.session.delete.success": "Conversation is deleted",
"chatHub.session.delete.error": "Could not delete the conversation",
"chatHub.sidebar.title": "Chat",
"chatHub.sidebar.button.toggle": "Toggle sidebar",
"chatHub.sidebar.link.newChat": "New chat",
"chatHub.sidebar.link.workflowAgents": "Workflow agents",
"chatHub.sidebar.link.personalAgents": "Personal agents",
"chatHub.sidebar.loadMoreSessions": "Load more",
"chatEmbed.infoTip.description": "Add chat to external applications using the n8n chat package.",
"chatEmbed.infoTip.link": "More info",
"chatEmbed.title": "Embed Chat in your website",
"chatEmbed.close": "Close",
"chatEmbed.install": "First, install the n8n chat package:",
"chatEmbed.paste.cdn": "Paste the following code anywhere in the {code} tag of your HTML file.",
"chatEmbed.paste.cdn.file": "<body>",
"chatEmbed.paste.vue": "Next, paste the following code in your {code} file.",
"chatEmbed.paste.vue.file": "App.vue",
"chatEmbed.paste.react": "Next, paste the following code in your {code} file.",
"chatEmbed.paste.react.file": "App.ts",
"chatEmbed.paste.other": "Next, paste the following code in your {code} file.",
"chatEmbed.paste.other.file": "main.ts",
"chatEmbed.packageInfo.description": "The n8n Chat widget can be easily customized to fit your needs.",
"chatEmbed.packageInfo.link": "Read the full documentation",
"chatEmbed.chatTriggerNode": "You can use a Chat Trigger Node to embed the chat widget directly into n8n.",
"chatEmbed.url": "https://www.npmjs.com/package/{'@'}n8n/chat",
"codeEdit.edit": "Edit",
"codeNodeEditor.askAi": "✨ Ask AI",
"codeNodeEditor.completer.$()": "Output data of the {nodeName} node",
"codeNodeEditor.completer.$execution": "Retrieve or set metadata for the current execution",
"codeNodeEditor.completer.$execution.id": "The ID of the current workflow execution",
"codeNodeEditor.completer.$execution.mode": "Returns either <code>test</code> (meaning the execution was triggered by clicking a button in n8n) or <code>production</code> (meaning the execution was triggered automatically)",
"codeNodeEditor.completer.$execution.resumeUrl": "The webhook URL to call to resume a workflow waiting at a 'Wait' node.",
"codeNodeEditor.completer.$execution.resumeFormUrl": "The URL to access a form generated by the 'Wait' node.",
"codeNodeEditor.completer.$execution.customData": "Set and get custom execution data (e.g. to filter executions by). You can also do this with the 'Execution Data' node.",
"codeNodeEditor.completer.$execution.customData.set": "Stores custom execution data under the key specified. Use this to easily filter executions by this data.",
"codeNodeEditor.completer.$execution.customData.set.args.key": "The key (identifier) under which the data is stored",
"codeNodeEditor.completer.$execution.customData.set.args.value": "The data to store",
"codeNodeEditor.completer.$execution.customData.set.examples.1": "Store the user's email, to easily retrieve all execs related to that user later",
"codeNodeEditor.completer.$execution.customData.get": "Returns the custom execution data stored under the given key.",
"codeNodeEditor.completer.$execution.customData.get.args.key": "The key (identifier) under which the data is stored",
"codeNodeEditor.completer.$execution.customData.get.examples.1": "Get the user's email (which was previously stored)",
"codeNodeEditor.completer.$execution.customData.setAll": "Sets multiple key-value pairs of custom data for the execution. Use this to easily filter executions by this data.",
"codeNodeEditor.completer.$execution.customData.setAll.args.obj": "A JavaScript object containing key-value pairs of the data to set",
"codeNodeEditor.completer.$execution.customData.getAll": "Returns all the key-value pairs of custom data that have been set in the current execution.",
"codeNodeEditor.completer.$ifEmpty": "Returns the first parameter if it isn't empty, otherwise returns the second parameter. The following count as empty: <code>\"</code>, <code>[]</code>, <code>{'{}'}</code>, <code>null</code>, <code>undefined</code>",
"codeNodeEditor.completer.$ifEmpty.args.value": "The value to return, provided it isn't empty",
"codeNodeEditor.completer.$ifEmpty.args.valueIfEmpty": "What to return if <code>value</code> is empty",
"codeNodeEditor.completer.$input": "The input data of the current node",
"codeNodeEditor.completer.$input.all": "@:_reusableBaseText.codeNodeEditor.completer.all",
"codeNodeEditor.completer.$input.first": "@:_reusableBaseText.codeNodeEditor.completer.first",
"codeNodeEditor.completer.$input.item": "The item that generated the current one",
"codeNodeEditor.completer.$input.itemMatching": "@:_reusableBaseText.codeNodeEditor.completer.itemMatching",
"codeNodeEditor.completer.$input.last": "@:_reusableBaseText.codeNodeEditor.completer.last",
"codeNodeEditor.completer.$itemIndex": "The position of the item currently being processed in the list of input items",
"codeNodeEditor.completer.$jmespath": "Extracts data from an object (or array of objects) using a <a target=\"_blank\" href=\"https://docs.n8n.io/code/cookbook/jmespath/\">JMESPath</a> expression. Useful for querying complex, nested objects. Returns <code>undefined</code> if the expression is invalid.",
"codeNodeEditor.completer.$jmespath.args.obj": "The Object or array of Objects to retrieve data from",
"codeNodeEditor.completer.$jmespath.args.expression": "A <a target=\"_blank\" href=\"https://jmespath.org/examples.html\">JMESPath expression</a> defining the data to retrieve from the object",
"codeNodeEditor.completer.$jmespath.examples.1": "Get all names, in an array",
"codeNodeEditor.completer.$jmespath.examples.2": "Get the names and ages of everyone under 20",
"codeNodeEditor.completer.$jmespath.examples.3": "Get the name of the first person under 20",
"codeNodeEditor.completer.$jmespath.examples.4": "Get the names of all the guests in each reservation that require a double room",
"codeNodeEditor.completer.$if": "Returns one of two values depending on the <code>condition</code>. Similar to the <code>?</code> operator in JavaScript.",
"codeNodeEditor.completer.$if.args.condition": "The check to make. Should evaluate to either <code>true</code> or <code>false</code>",
"codeNodeEditor.completer.$if.args.valueIfTrue": "The value to return if the condition is true",
"codeNodeEditor.completer.$if.args.valueIfFalse": "The value to return if the condition is false",
"codeNodeEditor.completer.$if.examples.1": "Return \"Good day\" if time is before 5pm, otherwise \"Good evening\"",
"codeNodeEditor.completer.$if.examples.2": "$if() calls can be combined\nReturn \"Good morning\" if time is before 10am, \"Good day\" it's before 5pm, otherwise \"Good evening\"",
"codeNodeEditor.completer.$max": "Returns the highest of the given numbers, or -Infinity if there are no parameters.",
"codeNodeEditor.completer.$max.args.numbers": "The numbers to compare",
"codeNodeEditor.completer.$min": "Returns the lowest of the given numbers, or Infinity if there are no parameters.",
"codeNodeEditor.completer.$now": "A DateTime representing the current moment. \n\nUses the workflow's time zone (which can be changed in the workflow settings).",
"codeNodeEditor.completer.$parameter": "The configuration settings of the current node. These are the parameters you fill out within the node's UI (e.g. its operation).",
"codeNodeEditor.completer.$prevNode": "Information about the node that the current input came from. \n\nWhen in a 'Merge' node, always uses the first input connector.",
"codeNodeEditor.completer.$prevNode.name": "The name of the node that the current input came from. \n\nAlways uses the current node's first input connector if there is more than one (e.g. in the 'Merge' node).",
"codeNodeEditor.completer.$prevNode.outputIndex": "The index of the output connector that the current input came from. Use this when the previous node had multiple outputs (such as an 'If' or 'Switch' node). \n\nAlways uses the current node's first input connector if there is more than one (e.g. in the 'Merge' node).",
"codeNodeEditor.completer.$prevNode.runIndex": "The run of the previous node that generated the current input. \n\nAlways uses the current node's first input connector if there is more than one (e.g. in the 'Merge' node). ",
"codeNodeEditor.completer.$runIndex": "The index of the current run of the current node execution. Starts at 0.",
"codeNodeEditor.completer.$nodeVersion": "The version of the current node (as displayed at the bottom of the nodes's settings pane)",
"codeNodeEditor.completer.$tool": "The name and parameters of the tool that is currently being executed. Only available in HITL nodes",
"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).",
"codeNodeEditor.completer.$vars": "The <a target=\"_blank\" href=\"https://docs.n8n.io/code/variables/\">variables</a> available to the workflow",
"codeNodeEditor.completer.$vars.varName.global": "Global variable defined for this n8n instance. All variables evaluate to strings.",
"codeNodeEditor.completer.$vars.varName.global.overridden": "Global variable overridden by project {projectName} variable. All variables evaluate to strings. ",
"codeNodeEditor.completer.$vars.varName.project": "Project variable defined in the {projectName} project. All variables evaluate to strings.",
"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.",
"codeNodeEditor.completer.$secrets.provider": "External secrets providers connected to this n8n instance.",
"codeNodeEditor.completer.$secrets.provider.varName": "External secrets connected to this n8n instance. All secrets evaluate to strings.",
"codeNodeEditor.completer.$secrets.group.project": "Project vaults",
"codeNodeEditor.completer.$secrets.group.project.description": "External secret vault connected to this project.",
"codeNodeEditor.completer.$secrets.group.global": "Global vaults",
"codeNodeEditor.completer.$secrets.group.global.description": "External secret vault connected to this n8n instance.",
"codeNodeEditor.completer.$workflow": "Information about the current workflow",
"codeNodeEditor.completer.$workflow.active": "Whether the workflow is active",
"codeNodeEditor.completer.$workflow.id": "The workflow ID. Can also be found in the workflow's URL.",
"codeNodeEditor.completer.$workflow.name": "The name of the workflow, as shown at the top of the editor",
"codeNodeEditor.completer.$response": "The response returned by the last HTTP call. Only available in the 'HTTP Request' node.",
"codeNodeEditor.completer.$response.headers": "The headers returned by the last HTTP call. Only available in the 'HTTP Request' node.",
"codeNodeEditor.completer.$response.statusCode": "The HTTP status code returned by the last HTTP call. Only available in the 'HTTP Request' node.",
"codeNodeEditor.completer.$response.statusMessage": "An optional message regarding the request status. Only available in the 'HTTP Request' node.",
"codeNodeEditor.completer.$response.body": "The body of the response object from the last HTTP call. Only available in the 'HTTP Request' node",
"codeNodeEditor.completer.$request": "The request object sent during the last run of the node. Only available in the 'HTTP Request' node.",
"codeNodeEditor.completer.$pageCount": "The number of results pages the node has fetched. Only available in the 'HTTP Request' node.",
"codeNodeEditor.completer.dateTime": "Luxon DateTime. Use this object to parse, format and manipulate dates and times.",
"codeNodeEditor.completer.binary": "Returns any binary input data to the current node, for the current item. Shorthand for <code>$input.item.binary</code>.",
"codeNodeEditor.completer.binary.mimeType": "A string representing the format of the file's contents, e.g. <code>image/jpeg</code>",
"codeNodeEditor.completer.binary.fileSize": "A string representing the size of the file (e.g. <code>1 kB</code>)",
"codeNodeEditor.completer.binary.fileName": "The name of the file, including extension",
"codeNodeEditor.completer.binary.fileExtension": "The suffix attached to the filename (e.g. <code>txt</code>)",
"codeNodeEditor.completer.binary.fileType": "A string representing the type of the file, e.g. <code>image</code>. Corresponds to the first part of the MIME type.",
"codeNodeEditor.completer.binary.id": "The unique ID of the file. Used to identify the file when it is stored on disk or in a storage service such as S3.",
"codeNodeEditor.completer.binary.directory": "The path to the directory that the file is stored in. Useful for distinguishing between files with the same name in different directories. Not set if n8n is configured to store files in its database.",
"codeNodeEditor.completer.item.binary": "Returns any binary data the item contains.",
"codeNodeEditor.completer.item.json": "Returns the JSON data the item contains.",
"codeNodeEditor.completer.math": "Mathematical utility methods",
"codeNodeEditor.completer.globalObject": "Methods to manipulate JavaScript Objects",
"codeNodeEditor.completer.globalObject.assign": "Merge all enumerable object properties into a target object. Returns the modified target object.",
"codeNodeEditor.completer.globalObject.entries": "The object's keys and values",
"codeNodeEditor.completer.globalObject.keys": "The object's keys",
"codeNodeEditor.completer.globalObject.values": "The object's values",
"codeNodeEditor.completer.json": "Returns the JSON input data to the current node, for the current item. Shorthand for <code>$input.item.json</code>.",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.expandFormat": "Produce the the fully expanded format token for the locale Does NOT quote characters, so quoted tokens will not round trip correctly.",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromFormat": "Create a DateTime from an input string and format string.",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromFormatExplain": "Explain how a string would be parsed by fromFormat().",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromHTTP": "Create a DateTime from an HTTP header date",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromISO": "Create a DateTime from an ISO 8601 string",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromISO.args.isoString": "ISO 8601 string to convert to a DateTime",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromISO.args.opts": "Configuration options. See See <a target=\"blank\" href=\"https://moment.github.io/luxon/api-docs/index.html#datetimefromiso\">Luxon docs</a> for more info.",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromJSDate": "Create a DateTime from a JavaScript Date object. Uses the default zone",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromMillis": "Create a DateTime from a number of milliseconds since the epoch (meaning since 1 January 1970 00:00:00 UTC). Uses the default zone",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromMillis.args.milliseconds": "Number of milliseconds since the epoch (meaning since 1 January 1970 00:00:00 UTC)",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromMillis.args.opts": "Configuration options. See See <a target=\"blank\" href=\"https://moment.github.io/luxon/api-docs/index.html#datetimefrommillis\">Luxon docs</a> for more info.",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromObject": "Create a DateTime from a JavaScript object with keys like 'year' and 'hour' with reasonable defaults",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromRFC2822": "Create a DateTime from an RFC 2822 string",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromString": "Deprecated: use `fromFormat` instead.",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromStringExplain": "Deprecated: use `fromFormatExplain` instead.",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromSQL": "Create a DateTime from a SQL date, time, or datetime",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromSeconds": "Create a DateTime from a number of seconds since the epoch (meaning since 1 January 1970 00:00:00 UTC). Uses the default zone",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromSeconds.args.seconds": "Number of seconds since the epoch (meaning since 1 January 1970 00:00:00 UTC)",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.fromSeconds.args.opts": "Configuration options. See <a target=\"blank\" href=\"https://moment.github.io/luxon/api-docs/index.html#datetimefromseconds\">Luxon docs</a> for more info.",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.invalid": "Create an invalid DateTime.",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.isDateTime": "Check if an object is a DateTime. Works across context boundaries",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.isDateTime.args.maybeDateTime": "Potential DateTime to check. Only instances of the Luxon DateTime class will return <code>true</code>.",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.local": "Create a local DateTime",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.max": "Return the max of several date times.",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.max.args.dateTimes": "DateTime objects to compare",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.min": "Return the min of several date times.",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.min.args.dateTimes": "DateTime objects to compare",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.now": "Create a DateTime for the current instant, in the workflow's local time zone",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.parseFormatForOpts": "Produce the the fully expanded format token for the locale Does NOT quote characters, so quoted tokens will not round trip correctly.",
"codeNodeEditor.completer.luxon.dateTimeStaticMethods.utc": "Create a DateTime in UTC",
"codeNodeEditor.completer.luxon.instanceMethods.day": "The day of the month (1-31).",
"codeNodeEditor.completer.luxon.instanceMethods.daysInMonth": "Returns the number of days in this DateTime's month.",
"codeNodeEditor.completer.luxon.instanceMethods.daysInYear": "Returns the number of days in this DateTime's year.",
"codeNodeEditor.completer.luxon.instanceMethods.diff": "Return the difference between two DateTimes as a Duration.",
"codeNodeEditor.completer.luxon.instanceMethods.diffNow": "Return the difference between this DateTime and right now.",
"codeNodeEditor.completer.luxon.instanceMethods.endOf": "Rounds the DateTime up to the end of one of its units, e.g. the end of the month",
"codeNodeEditor.completer.luxon.instanceMethods.endOf.args.unit": "The unit to round to the end of. Can be <code>year</code>, <code>quarter</code>, <code>month</code>, <code>week</code>, <code>day</code>, <code>hour</code>, <code>minute</code>, <code>second</code>, or <code>millisecond</code>.",
"codeNodeEditor.completer.luxon.instanceMethods.endOf.args.opts": "Object with options that affect the output. Possible properties:\n<code>useLocaleWeeks</code> (boolean): Whether to use the locale when calculating the start of the week. Defaults to false.",
"codeNodeEditor.completer.luxon.instanceMethods.equals": "Returns <code>true</code> if the two DateTimes represent exactly the same moment and are in the same time zone. For a less strict comparison, use <code>hasSame()</code>.",
"codeNodeEditor.completer.luxon.instanceMethods.equals.args.other": "The other DateTime to compare",
"codeNodeEditor.completer.luxon.instanceMethods.hasSame": "Returns <code>true</code> if the two DateTimes are the same, down to the unit specified. Time zones are ignored (only local times are compared), so use <code>toUTC()</code> first if needed.",
"codeNodeEditor.completer.luxon.instanceMethods.hasSame.args.other": "The other DateTime to compare",
"codeNodeEditor.completer.luxon.instanceMethods.hasSame.args.unit": "The unit of time to check sameness down to. One of <code>year</code>, <code>quarter</code>, <code>month</code>, <code>week</code>, <code>day</code>, <code>hour</code>, <code>minute</code>, <code>second</code>, or <code>millisecond</code>.",
"codeNodeEditor.completer.luxon.instanceMethods.hour": "The hour of the day (0-23).",
"codeNodeEditor.completer.luxon.instanceMethods.invalidExplanation": "Returns an explanation of why this DateTime became invalid, or null if the DateTime is valid.",
"codeNodeEditor.completer.luxon.instanceMethods.invalidReason": "Returns an error code if this DateTime is invalid, or null if the DateTime is valid.",
"codeNodeEditor.completer.luxon.instanceMethods.isInDST": "Whether the DateTime is in daylight saving time.",
"codeNodeEditor.completer.luxon.instanceMethods.isInLeapYear": "Whether the DateTime is in a leap year.",
"codeNodeEditor.completer.luxon.instanceMethods.isOffsetFixed": "Get whether this zone's offset ever changes, as in a DST.",
"codeNodeEditor.completer.luxon.instanceMethods.isValid": "Returns whether the DateTime is valid. Invalid DateTimes occur when The DateTime was created from invalid calendar information, such as the 13th month or February 30. The DateTime was created by an operation on another invalid date.",
"codeNodeEditor.completer.luxon.instanceMethods.locale": "The locale of a DateTime, such 'en-GB'. The locale is used when formatting the DateTime.",
"codeNodeEditor.completer.luxon.instanceMethods.max": "Return the max of several date times.",
"codeNodeEditor.completer.luxon.instanceMethods.millisecond": "The millisecond of the second (0-999).",
"codeNodeEditor.completer.luxon.instanceMethods.min": "Return the min of several date times",
"codeNodeEditor.completer.luxon.instanceMethods.minus": "Subtract hours, minutes, seconds, or milliseconds increases the timestamp by the right number of milliseconds.",
"codeNodeEditor.completer.luxon.instanceMethods.minute": "The minute of the hour (0-59).",
"codeNodeEditor.completer.luxon.instanceMethods.month": "The month (1-12).",
"codeNodeEditor.completer.luxon.instanceMethods.monthLong": "The textual long month name, e.g. 'October'. Defaults to the system's locale if unspecified.",
"codeNodeEditor.completer.luxon.instanceMethods.monthShort": "The textual abbreviated month name, e.g. 'Oct'. Defaults to the system's locale if unspecified.",
"codeNodeEditor.completer.luxon.instanceMethods.numberingSystem": "Get the numbering system of a DateTime, such 'beng'. The numbering system is used when formatting the DateTime.",
"codeNodeEditor.completer.luxon.instanceMethods.offset": "Get the UTC offset of this DateTime in minutes",
"codeNodeEditor.completer.luxon.instanceMethods.offsetNameLong": "Get the long human name for the zone's current offset, for example \"Eastern Standard Time\" or \"Eastern Daylight Time\".",
"codeNodeEditor.completer.luxon.instanceMethods.offsetNameShort": "Get the short human name for the zone's current offset, for example \"EST\" or \"EDT\".'",
"codeNodeEditor.completer.luxon.instanceMethods.offsetNumber": "Get the short human name for the zone's current offset, for example \"EST\" or \"EDT\".'",
"codeNodeEditor.completer.luxon.instanceMethods.ordinal": "Get the ordinal (meaning the day of the year).",
"codeNodeEditor.completer.luxon.instanceMethods.outputCalendar": "Get the output calendar of a DateTime, such 'islamic'. The output calendar is used when formatting the DateTime.",
"codeNodeEditor.completer.luxon.instanceMethods.plus": "Add hours, minutes, seconds, or milliseconds increases the timestamp by the right number of milliseconds.",
"codeNodeEditor.completer.luxon.instanceMethods.quarter": "The quarter of the year (1-4).",
"codeNodeEditor.completer.luxon.instanceMethods.reconfigure": "'Set' the locale, numberingSystem, or outputCalendar. Returns a newly-constructed DateTime.",
"codeNodeEditor.completer.luxon.instanceMethods.resolvedLocaleOptions": "Returns the resolved Intl options for this DateTime. This is useful in understanding the behavior of formatting methods.",
"codeNodeEditor.completer.luxon.instanceMethods.second": "The second of the minute (0-59).",
"codeNodeEditor.completer.luxon.instanceMethods.set": "Assigns new values to specified units of the DateTime. To round a DateTime, see also <code>startOf()</code> and <code>endOf()</code>.",
"codeNodeEditor.completer.luxon.instanceMethods.set.args.values": "An object containing the units to set and corresponding values to assign. Possible keys are <code>year</code>, <code>month</code>, <code>day</code>, <code>hour</code>, <code>minute</code>, <code>second</code> and <code>millsecond</code>.",
"codeNodeEditor.completer.luxon.instanceMethods.setLocale": "Sets the locale, which determines the language and formatting for the DateTime. Useful when generating a textual representation of the DateTime, e.g. with <code>format()</code> or <code>toLocaleString()</code>.",
"codeNodeEditor.completer.luxon.instanceMethods.setLocale.args.locale": "The locale to set, e.g. 'en-GB' for British English or 'pt-BR' for Brazilian Portuguese. <a target=\"blank\" href=”https://www.localeplanet.com/icu/”>List</a> (unofficial)",
"codeNodeEditor.completer.luxon.instanceMethods.setZone": "Converts the DateTime to the given time zone. The DateTime still represents the same moment unless specified in the options. See also <code>toLocal()</code> and <code>toUTC()</code>.",
"codeNodeEditor.completer.luxon.instanceMethods.setZone.args.zone": "A zone identifier, either in the format <code>'America/New_York'</code>, <code>'UTC+3'</code>, or the strings <code>'local'</code> or <code>'utc'</code>. <code>'local'</code> is the workflow's local time zone, this can be changed in workflow settings.",
"codeNodeEditor.completer.luxon.instanceMethods.setZone.args.opts": "Options that affect the output. Possible properties:\n<code>keepCalendarTime</code> (boolean): Whether to keep the time the same and only change the offset. Defaults to false.",
"codeNodeEditor.completer.luxon.instanceMethods.startOf": "Rounds the DateTime down to the beginning of one of its units, e.g. the start of the month",
"codeNodeEditor.completer.luxon.instanceMethods.startOf.args.unit": "The unit to round to the beginning of. One of <code>year</code>, <code>quarter</code>, <code>month</code>, <code>week</code>, <code>day</code>, <code>hour</code>, <code>minute</code>, <code>second</code>, or <code>millisecond</code>.",
"codeNodeEditor.completer.luxon.instanceMethods.startOf.args.opts": "Object with options that affect the output. Possible properties:\n<code>useLocaleWeeks</code> (boolean): Whether to use the locale when calculating the start of the week. Defaults to false.",
"codeNodeEditor.completer.luxon.instanceMethods.toBSON": "Returns a BSON serializable equivalent to this DateTime.",
"codeNodeEditor.completer.luxon.instanceMethods.toFormat": "Returns a string representation of this DateTime formatted according to the specified format string.",
"codeNodeEditor.completer.luxon.instanceMethods.toHTTP": "Returns a string representation of this DateTime appropriate for use in HTTP headers.",
"codeNodeEditor.completer.luxon.instanceMethods.toISO": "Returns an ISO 8601-compliant string representation of this DateTime.",
"codeNodeEditor.completer.luxon.instanceMethods.toISO.args.opts": "Configuration options. See <a target=\"blank\" href=\"https://moment.github.io/luxon/api-docs/index.html#datetimetoiso\">Luxon docs</a> for more info.",
"codeNodeEditor.completer.luxon.instanceMethods.toISODate": "Returns an ISO 8601-compliant string representation of this DateTime's date component.",
"codeNodeEditor.completer.luxon.instanceMethods.toISOTime": "Returns an ISO 8601-compliant string representation of this DateTime's time component.",
"codeNodeEditor.completer.luxon.instanceMethods.toISOWeekDate": "Returns an ISO 8601-compliant string representation of this DateTime's week date.",
"codeNodeEditor.completer.luxon.instanceMethods.toJSON": "Returns an ISO 8601 representation of this DateTime appropriate for use in JSON.",
"codeNodeEditor.completer.luxon.instanceMethods.toJsDate": "Returns a JavaScript Date equivalent to this DateTime.",
"codeNodeEditor.completer.luxon.instanceMethods.toLocal": "Converts a DateTime to the workflow's local time zone. The DateTime still represents the same moment unless specified in the parameters. The workflow's time zone can be set in the workflow settings.",
"codeNodeEditor.completer.luxon.instanceMethods.toLocal.example": "if time zone is Europe/Berlin",
"codeNodeEditor.completer.luxon.instanceMethods.toLocaleParts": "Returns an array of format \"parts\", meaning individual tokens along with metadata.",
"codeNodeEditor.completer.luxon.instanceMethods.toLocaleString": "Returns a localized string representing the DateTime, i.e. in the language and format corresponding to its locale. Defaults to the system's locale if none specified.",
"codeNodeEditor.completer.luxon.instanceMethods.toLocaleString.args.opts": "Configuration options for the rendering. See <a href=”https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat#parameters”>Intl.DateTimeFormat</a> for a full list. Defaults to rendering a short date.",
"codeNodeEditor.completer.luxon.instanceMethods.toLocaleString.example": "Configuration options for the rendering. See <a href=”https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat#parameters”>Intl.DateTimeFormat</a> for a full list. Defaults to rendering a short date.",
"codeNodeEditor.completer.luxon.instanceMethods.toMillis": "Returns a Unix timestamp in milliseconds (the number elapsed since 1st Jan 1970)",
"codeNodeEditor.completer.luxon.instanceMethods.toObject": "Returns a JavaScript object with this DateTime's year, month, day, and so on.",
"codeNodeEditor.completer.luxon.instanceMethods.toRFC2822": "Returns an RFC 2822-compatible string representation of this DateTime, always in UTC.",
"codeNodeEditor.completer.luxon.instanceMethods.toRelative": "Returns a textual representation of the time relative to now, e.g. 'in two days'. Rounds down by default.",
"codeNodeEditor.completer.luxon.instanceMethods.toRelative.args.opts": "Options that affect the output. Possible properties:\n<code>unit</code> = the unit to default to (<code>years</code>, <code>months</code>, <code>days</code>, etc.).\n<code>locale</code> = the language and formatting to use (e.g. <code>de</code>, <code>fr</code>)",
"codeNodeEditor.completer.luxon.instanceMethods.toRelativeCalendar": "Returns a string representation of this date relative to today, such as '\"'yesterday' or 'next month'.",
"codeNodeEditor.completer.luxon.instanceMethods.toSQL": "Returns a string representation of this DateTime appropriate for use in SQL DateTime.",
"codeNodeEditor.completer.luxon.instanceMethods.toSQLDate": "Returns a string representation of this DateTime appropriate for use in SQL Date.",
"codeNodeEditor.completer.luxon.instanceMethods.toSQLTime": "Returns a string representation of this DateTime appropriate for use in SQL Time.",
"codeNodeEditor.completer.luxon.instanceMethods.toSeconds": "Returns a Unix timestamp in seconds (the number elapsed since 1st Jan 1970)",
"codeNodeEditor.completer.luxon.instanceMethods.toString": "Returns a string representation of the DateTime. Similar to <code>toISO()</code>. For more formatting options, see <code>format()</code> or <code>toLocaleString()</code>.",
"codeNodeEditor.completer.luxon.instanceMethods.toUTC": "Converts a DateTime to the UTC time zone. The DateTime still represents the same moment unless specified in the parameters. Use <code>setZone()</code> to convert to other zones.",
"codeNodeEditor.completer.luxon.instanceMethods.toUTC.args.offset": "An offset from UTC in minutes",
"codeNodeEditor.completer.luxon.instanceMethods.toUTC.args.opts": "Options that affect the output. Possible properties:\n<code>keepCalendarTime</code> (boolean): Whether to keep the time the same and only change the offset. Defaults to false.",
"codeNodeEditor.completer.luxon.instanceMethods.toUnixInteger": "Returns the epoch seconds (as a whole number) of this DateTime.",
"codeNodeEditor.completer.luxon.instanceMethods.until": "Return an Interval spanning between this DateTime and another DateTime.",
"codeNodeEditor.completer.luxon.instanceMethods.valueOf": "Returns the epoch milliseconds of this DateTime.",
"codeNodeEditor.completer.luxon.instanceMethods.weekNumber": "The week number of the year (1-52ish).",
"codeNodeEditor.completer.luxon.instanceMethods.weekYear": "Get the week year.",
"codeNodeEditor.completer.luxon.instanceMethods.weekday": "The day of the week. 1 is Monday and 7 is Sunday.",
"codeNodeEditor.completer.luxon.instanceMethods.weekdayLong": "The textual long weekday name, e.g. 'Wednesday'. Defaults to the system's locale if unspecified.",
"codeNodeEditor.completer.luxon.instanceMethods.weekdayShort": "The textual abbreviated weekday name, e.g. 'Wed'. Defaults to the system's locale if unspecified.",
"codeNodeEditor.completer.luxon.instanceMethods.weeksInWeekYear": "Returns the number of weeks in this DateTime's year.",
"codeNodeEditor.completer.luxon.instanceMethods.year": "The year.",
"codeNodeEditor.completer.luxon.instanceMethods.zone": "The time zone associated with the DateTime",
"codeNodeEditor.completer.luxon.instanceMethods.zoneName": "Get the name of the time zone.",
"codeNodeEditor.completer.selector.all": "@:_reusableBaseText.codeNodeEditor.completer.all",
"codeNodeEditor.completer.selector.context": "Extra data about the node",
"codeNodeEditor.completer.selector.first": "@:_reusableBaseText.codeNodeEditor.completer.first",
"codeNodeEditor.completer.selector.item": "Returns the matching item, i.e. the one used to produce the current item in the current node.",
"codeNodeEditor.completer.selector.args.branchIndex": "The output branch of the node to use. Defaults to the first branch (index 0)",
"codeNodeEditor.completer.selector.args.runIndex": "The run of the node to use. Defaults to the first run (index 0)",
"codeNodeEditor.completer.selector.itemMatching": "@:_reusableBaseText.codeNodeEditor.completer.itemMatching",
"codeNodeEditor.completer.selector.itemMatching.args.currentItemIndex": "The index of the item in the current node to be matched with.",
"codeNodeEditor.completer.selector.last": "@:_reusableBaseText.codeNodeEditor.completer.last",
"codeNodeEditor.completer.selector.params": "The configuration settings of the given node. These are the parameters you fill out within the node's UI (e.g. its operation).",
"codeNodeEditor.completer.selector.isExecuted": "Is <code>true</code> if the node has executed, <code>false</code> otherwise",
"codeNodeEditor.completer.section.input": "Input",
"codeNodeEditor.completer.section.prevNodes": "Earlier nodes",
"codeNodeEditor.completer.section.metadata": "Metadata",
"codeNodeEditor.completer.section.fields": "Fields",
"codeNodeEditor.completer.section.properties": "Properties",
"codeNodeEditor.completer.section.methods": "Methods",
"codeNodeEditor.completer.section.otherMethods": "Other methods",
"codeNodeEditor.completer.section.recommended": "Suggested",
"codeNodeEditor.completer.section.recommendedMethods": "Suggested methods",
"codeNodeEditor.completer.section.other": "Other",
"codeNodeEditor.completer.section.edit": "Edit",
"codeNodeEditor.completer.section.query": "Query",
"codeNodeEditor.completer.section.format": "Format",
"codeNodeEditor.completer.section.component": "Component",
"codeNodeEditor.completer.section.case": "Case",
"codeNodeEditor.completer.section.cast": "Cast",
"codeNodeEditor.completer.section.compare": "Compare",
"codeNodeEditor.completer.section.validation": "Validate",
"codeNodeEditor.completer.section.variable.project": "Project Variables",
"codeNodeEditor.completer.section.variable.global": "Global Variables",
"codeNodeEditor.linter.allItems.firstOrLastCalledWithArg": "expects no argument.",
"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.",
"codeNodeEditor.linter.allItems.itemCall": "`item` is a property to access, not a method to call. Did you mean `.item` without brackets?",
"codeNodeEditor.linter.allItems.itemMatchingNoArg": "`.itemMatching()` expects an item index to be passed in as its argument.",
"codeNodeEditor.linter.allItems.unavailableItem": "Legacy `item` is only available in the 'Run Once for Each Item' mode.",
"codeNodeEditor.linter.allItems.unavailableProperty": "`.item` only works correctly in 'Run Once for Each Item' mode. It will always return the first item here. Use `.first()` instead.",
"codeNodeEditor.linter.allItems.unavailableVar": "is only available in the 'Run Once for Each Item' mode.",
"codeNodeEditor.linter.bothModes.directAccess.firstOrLastCall": "@:_reusableBaseText.codeNodeEditor.linter.useJson",
"codeNodeEditor.linter.bothModes.directAccess.itemProperty": "@:_reusableBaseText.codeNodeEditor.linter.useJson",
"codeNodeEditor.linter.bothModes.varDeclaration.itemProperty": "@:_reusableBaseText.codeNodeEditor.linter.useJson",
"codeNodeEditor.linter.bothModes.varDeclaration.itemSubproperty": "@:_reusableBaseText.codeNodeEditor.linter.useJson",
"codeNodeEditor.linter.eachItem.emptyReturn": "Code doesn't return an object. Please return an object representing the output item",
"codeNodeEditor.linter.eachItem.legacyItemAccess": "`item` is a legacy var. Consider using `$input.item`",
"codeNodeEditor.linter.eachItem.returnArray": "Code doesn't return an object. Array found instead. Please return an object representing the output item",
"codeNodeEditor.linter.eachItem.unavailableItems": "Legacy `items` is only available in the 'Run Once for All Items' mode.",
"codeNodeEditor.linter.eachItem.unavailableMethod": "Method `$input.{method}()` is only available in the 'Run Once for All Items' mode.",
"codeNodeEditor.linter.eachItem.preferFirst": "Prefer `.first()` over `.item` so n8n can optimize execution",
"codeNodeEditor.linter.bothModes.syntaxError": "Syntax error",
"codeNodeEditor.linter.bothModes.dollarSignVariable": "Use a string literal instead of a variable so n8n can optimize execution.",
"codeNodeEditor.askAi.placeholder": "Tell AI what you want the code to achieve. You can reference input data fields using dot notation (e.g. user.email)",
"codeNodeEditor.askAi.intro": "Hey AI, generate JavaScript code that...",
"codeNodeEditor.askAi.help": "Help",
"codeNodeEditor.askAi.generateCode": "Generate Code",
"codeNodeEditor.askAi.noInputData": "You can generate code once this node has incoming input data (from a node earlier in your workflow)",
"codeNodeEditor.askAi.sureLeaveTab": "Are you sure you want to switch tab? The code generation will stop",
"codeNodeEditor.askAi.areYouSure": "Are you sure?",
"codeNodeEditor.askAi.switchTab": "Switch Tab",
"codeNodeEditor.askAi.noPrompt": "First enter a prompt above before generating code",
"codeNodeEditor.askAi.onlyAllItemsMode": "Ask AI generation works only in 'Run Once for All Items' mode",
"codeNodeEditor.askAi.promptTooShort": "Enter a minimum of {minLength} characters before attempting to generate code",
"codeNodeEditor.askAi.generateCodeAndReplace": "Generate and Replace Code",
"codeNodeEditor.askAi.replaceCurrentCode": "Replace current code?",
"codeNodeEditor.askAi.areYouSureToReplace": "Are you sure you want to generate new code? Your current code will be replaced.",
"codeNodeEditor.askAi.loadingPhrase0": "AI cogs whirring, almost there…",
"codeNodeEditor.askAi.loadingPhrase1": "up up down down left right b a start…",
"codeNodeEditor.askAi.loadingPhrase2": "Consulting Jan Oberhauser…",
"codeNodeEditor.askAi.loadingPhrase3": "Gathering bytes and pieces…",
"codeNodeEditor.askAi.loadingPhrase4": "Checking if another AI knows the answer…",
"codeNodeEditor.askAi.loadingPhrase5": "Checking on Stack Overflow…",
"codeNodeEditor.askAi.loadingPhrase6": "Crunching data, AI-style…",
"codeNodeEditor.askAi.loadingPhrase7": "Stand by, AI magic at work…",
"codeNodeEditor.askAi.generationCompleted": "✨ Code generation completed",
"codeNodeEditor.askAi.generationFailed": "Code generation failed",
"codeNodeEditor.askAi.generationFailedUnknown": "Code generation failed due to an unknown reason. Try again in a few minutes",
"codeNodeEditor.askAi.generationFailedWithReason": "Code generation failed with error: {error}. Try again in a few minutes",
"codeNodeEditor.askAi.generationFailedDown": "We're sorry, our AI service is currently unavailable. Please try again later. If the problem persists, contact support.",
"codeNodeEditor.askAi.generationFailedRate": "We've hit our rate limit with our AI partner (too many requests). Please wait a minute before trying again.",
"codeNodeEditor.askAi.generationFailedTooLarge": "Your workflow data is too large for AI to process. Simplify the data being sent into the Code node and retry.",
"codeNodeEditor.tabs.askAi": "✨ Ask AI",
"codeNodeEditor.tabs.code": "Code",
"codeNodeEditor.examples": "Examples",
"codeNodeEditor.parameters": "Parameters",
"codeNodeEditor.optional": "optional",
"codeNodeEditor.defaultsTo": "Defaults to {default}.",
"collectionParameter.choose": "Choose...",
"collectionParameter.addItem": "Add item",
"collectionParameter.deleteItem": "Delete",
"collectionParameter.dragItem": "Drag to reorder",
"collectionParameter.noProperties": "No properties",
"collectionParameter.allOptionsAdded": "All options have been added",
"communityNodeFooter.legacy": "Legacy",
"communityNodeFooter.manage": "Manage",
"communityNodeFooter.reportIssue": "Report issue",
"credentialEdit.credentialConfig.accountConnected": "Account connected",
"credentialEdit.credentialConfig.clickToCopy": "Click To Copy",
"credentialEdit.credentialConfig.connectionTestedSuccessfully": "Connection tested successfully",
"credentialEdit.credentialConfig.couldntConnectWithTheseSettings": "Couldn’t connect with these settings",
"credentialEdit.credentialConfig.couldntConnectWithTheseSettings.sharee": "Problem with connection settings. {owner} may be able to fix this",
"credentialEdit.credentialConfig.needHelpFillingOutTheseFields": "Need help filling out these fields?",
"credentialEdit.credentialConfig.oAuthRedirectUrl": "OAuth Redirect URL",
"credentialEdit.credentialConfig.openDocs": "Read our docs",
"credentialEdit.credentialConfig.pleaseCheckTheErrorsBelow": "Please check the errors below",
"credentialEdit.credentialConfig.pleaseCheckTheErrorsBelow.sharee": "Problem with connection settings. {owner} may be able to fix this",
"credentialEdit.credentialConfig.reconnect": "Reconnect",
"credentialEdit.credentialConfig.reconnectOAuth2Credential": "Reconnect OAuth2 Credential",
"credentialEdit.credentialConfig.redirectUrlCopiedToClipboard": "Redirect URL copied to clipboard",
"credentialEdit.credentialConfig.retry": "Retry",
"credentialEdit.credentialConfig.retryCredentialTest": "Retry credential test",
"credentialEdit.credentialConfig.retrying": "Retrying",
"credentialEdit.credentialConfig.subtitle": "In {appName}, use the URL above when prompted to enter an OAuth callback or redirect URL",
"credentialEdit.credentialConfig.theServiceYouReConnectingTo": "the service you're connecting to",
"credentialEdit.credentialConfig.missingCredentialType": "This credential's type isn't available. This usually happens when a previously installed community or custom node was uninstalled.",
"credentialEdit.credentialConfig.oauthModeManaged": "Managed OAuth2 (recommended)",
"credentialEdit.credentialConfig.oauthModeCustom": "Custom OAuth2",
"credentialEdit.credentialConfig.oauthModeManagedTitle": "Setup managed OAuth",
"credentialEdit.credentialConfig.oauthModeCustomTitle": "Setup custom OAuth",
"credentialEdit.credentialConfig.genericTitle": "Setup {credential}",
"credentialEdit.credentialConfig.setupCredential": "Setup credential",
"credentialEdit.credentialConfig.recommendedAuthTypeSuffix": "(recommended)",
"credentialEdit.credentialConfig.switchTo": "Use {name}",
"credentialEdit.credentialConfig.externalSecrets": "Enterprise plan users can pull in credentials from external vaults.",
"credentialEdit.credentialConfig.externalSecrets.moreInfo": "More info",
"credentialEdit.credentialConfig.dynamicCredentials.title": "Set up for dynamic credentials",
"credentialEdit.credentialConfig.dynamicCredentials.infoTip": "When enabled, each execution uses the triggering user's credentials instead of a single fixed credential. Requires a webhook trigger with user identity extraction enabled. The credentials you connect are only used for manual testing or when the workflow uses a non-webhook trigger.",
"credentialEdit.credentialConfig.oauthDisabledTooltip": "Complete all fields to connect",
"credentialEdit.credentialEdit.confirmMessage.beforeClose1.cancelButtonText": "Close",
"credentialEdit.credentialEdit.confirmMessage.beforeClose1.confirmButtonText": "Keep Editing",
"credentialEdit.credentialEdit.confirmMessage.beforeClose1.headline": "Close without saving?",
"credentialEdit.credentialEdit.confirmMessage.beforeClose1.message": "Are you sure you want to throw away the changes you made to the {credentialDisplayName} credential?",
"credentialEdit.credentialEdit.confirmMessage.beforeClose2.cancelButtonText": "Close",
"credentialEdit.credentialEdit.confirmMessage.beforeClose2.confirmButtonText": "Keep Editing",
"credentialEdit.credentialEdit.confirmMessage.beforeClose2.headline": "Close without connecting?",
"credentialEdit.credentialEdit.confirmMessage.beforeClose2.message": "You need to connect your credential for it to work",
"credentialEdit.credentialEdit.confirmMessage.deleteCredential.cancelButtonText": "",
"credentialEdit.credentialEdit.confirmMessage.deleteCredential.confirmButtonText": "Yes, delete",
"credentialEdit.credentialEdit.confirmMessage.deleteCredential.headline": "Delete Credential?",
"credentialEdit.credentialEdit.confirmMessage.deleteCredential.message": "Are you sure you want to delete \"{savedCredentialName}\"? This may break any workflows that use it.",
"credentialEdit.credentialEdit.connection": "Connection",
"credentialEdit.credentialEdit.sharing": "Sharing",
"credentialEdit.credentialEdit.couldNotFindCredentialOfType": "Could not find credential of type",
"credentialEdit.credentialEdit.couldNotFindCredentialWithId": "Could not find credential with ID",
"credentialEdit.credentialEdit.delete": "Delete",
"credentialEdit.credentialEdit.details": "Details",
"credentialEdit.credentialEdit.dynamic": "Dynamic",
"credentialEdit.credentialEdit.saving": "Saving",
"credentialEdit.credentialEdit.showError.createCredential.title": "Problem creating credential",
"credentialEdit.credentialEdit.showError.deleteCredential.title": "Problem deleting credential",
"credentialEdit.credentialEdit.showError.generateAuthorizationUrl.message": "There was a problem generating the authorization URL",
"credentialEdit.credentialEdit.showError.generateAuthorizationUrl.title": "OAuth Authorization Error",
"credentialEdit.credentialEdit.showError.invalidOAuthUrl.message": "Authorization URL must use HTTP or HTTPS protocol.",
"credentialEdit.credentialEdit.showError.invalidOAuthUrl.title": "Invalid OAuth URL",
"credentialEdit.credentialEdit.showError.loadCredential.title": "Problem loading credential",
"credentialEdit.credentialEdit.showError.updateCredential.title": "Problem updating credential",
"credentialEdit.credentialEdit.showMessage.title": "Credential deleted",
"credentialEdit.credentialEdit.testing": "Testing",
"credentialEdit.credentialEdit.info.sharee": "Only {credentialOwnerName} can edit this connection",
"credentialEdit.credentialInfo.allowUseBy": "Allow use by",
"credentialEdit.credentialInfo.created": "Created",
"credentialEdit.credentialInfo.id": "ID",
"credentialEdit.credentialInfo.lastModified": "Last modified",
"credentialEdit.credentialEdit.setupGuide": "Setup guide",
"credentialEdit.credentialEdit.docs": "Docs",
"credentialEdit.oAuthButton.connectMyAccount": "Connect my account",
"credentialEdit.oAuthButton.signInWithGoogle": "Sign in with Google",
"credentialEdit.credentialSharing.info.owner": "Sharing a credential allows people to use it in their workflows. They cannot access credential details.",
"credentialEdit.credentialSharing.info.sharee.team": "Only users with credential sharing permission can change who this credential is shared with",
"credentialEdit.credentialSharing.info.sharee.personal": "Only {credentialOwnerName} or users with credential sharing permission can change who this credential is shared with",
"credentialEdit.credentialSharing.info.sharee.fallback": "the owner",
"credentialEdit.credentialSharing.info.personalSpaceRestricted": "Sharing is disabled in personal spaces. Move the credential to a team project to share",
"credentialEdit.credentialSharing.list.delete": "Remove",
"credentialEdit.credentialSharing.list.delete.confirm.title": "Remove access?",
"credentialEdit.credentialSharing.list.delete.confirm.message": "This may break any workflows in which {name} has used this credential",
"credentialEdit.credentialSharing.list.delete.confirm.confirmButtonText": "Remove",
"credentialEdit.credentialSharing.list.delete.confirm.cancelButtonText": "Cancel",
"credentialEdit.credentialSharing.role.user": "User",
"credentialSelectModal.addNewCredential": "Add new credential",
"credentialSelectModal.continue": "Continue",
"credentialSelectModal.searchForApp": "Search for app...",
"credentialSelectModal.selectAnAppOrServiceToConnectTo": "Select an app or service to connect to",