forked from Azure/LogicAppsUX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrings.json
More file actions
6690 lines (6690 loc) · 367 KB
/
Copy pathstrings.json
File metadata and controls
6690 lines (6690 loc) · 367 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
{
"++ZVe/": "Testing",
"+0H8Or": "Warning: input node type does not match the schema node's type",
"+0yxlR": "Function display",
"+3rROX": "Protected",
"+4hb/h": "Updating...",
"+64+eE": "Cancel",
"+7+u4y": "Failed to initialize the following operations. Please try again later.",
"+AFyLk": "Finish",
"+DmIHG": "Built-in",
"+EREVh": "Name",
"+FcXe9": "Faulted",
"+HcevX": "Enter a valid boolean.",
"+Jryh+": "Trigger",
"+K0G5q": "Endpoint will be filled automatically.",
"+KXX+O": "Select function from",
"+L+Kma": "Create",
"+M72+a": "Overview",
"+M7bC6": "Succeeded with retries",
"+NW+ab": "Display name",
"+Oshid": "Select Type",
"+P+nuy": "Workflow that supports natural language, human interaction, and agents connected to LLMs",
"+QFwA1": "Key-based",
"+QUFXQ": "OK",
"+R82zZ": "No results found",
"+R90eK": "Retry policy interval is invalid, must match ISO 8601 duration format",
"+RrvZW": "Draft",
"+TUUxa": "Enter a description for the handoff",
"+ThyFK": "Loading all subscriptions...",
"+Uvo/p": "Alt text for down chevron",
"+Uz9M+": "Run with payload",
"+ZSBrq": "Context menu for {title} card",
"+ebtNl": "Create new",
"+gBLFF": "Your template has been saved.",
"+iPg27": "Delete",
"+ijo/2": "Paste last used expression",
"+itf/D": "Save",
"+kRsu+": "Select the access token from where to generate your API keys.",
"+l5XmZ": "Enter a positive integer between {min} and {max}",
"+mAJR3": "(UTC+08:00) Kuala Lumpur, Singapore",
"+mNJQl": "Create a logic app",
"+nCfrr": "Delete assertion",
"+nKZHB": "Can't upload file. Please try again. Error: {errorMessage}",
"+oX/2M": "Add actions to define the steps in your workflow",
"+oelX4": "Required. The string to examine.",
"+powfX": "Time zone",
"+tCJ2g": "On",
"+u2tgz": "Create workspace",
"+xXHdp": "No outputs",
"+yTsXQ": "Add workflows for this template",
"+zIx77": "Choose your target subscription and location",
"/21RuK": "Workflow name must start with a letter and can contain letters, numbers (0-9), dashes ('-'), and underscores ('_').",
"/2V8bQ": "Timed out",
"/4vNBB": "Search logic apps...",
"/5vL6M": "Run based on events in Azure services",
"/88C7X": "At least 1 tool must be selected.",
"/BY2cI": "Select row",
"/EU/oJ": "Required. A string that contains the time zone name of the source time zone. See 'Default Time Zones' at 'https://go.microsoft.com/fwlink/?linkid=2238292'.",
"/IVuGP": "Discard",
"/KRvvg": "No values match your search.",
"/LO3Ia": "Testing",
"/NtebP": "(UTC+05:00) Islamabad, Karachi",
"/QqADs": "Returns the elements in the array starting at index Count",
"/RFd5i": "Successfully created the group.",
"/RS9F7": "(UTC-06:00) Saskatchewan",
"/ULFwg": "Change connection",
"/VcZ9g": "This connector has multiple versions, built-in and Azure-hosted. Use built-in for the best performance, connection-string authentication, and other features. Use Azure-hosted for other authentication options.",
"/W2SX+": "Approval",
"/WW7If": "True",
"/X2+cq": "Open Azure Copilot",
"/ZyaN4": "Select all",
"/boIFK": "No logic apps found",
"/c1l10": "⌘+C",
"/csbOB": "Retry policy count is invalid (must be from {min} to {max})",
"/doURb": "Convert the input to an array",
"/km5eO": "(UTC-04:00) Asuncion",
"/kz09u": "Function folder name cannot be the same as the logic app name.",
"/ld6GS": "Logic app type",
"/mjH84": "Show raw outputs",
"/n13VL": "Properties",
"/qCaDo": "Indicates to template users whether the parameter must be filled to proceed",
"/qchXQ": "Required. The collection to join items from.",
"/qrBuJ": "Create",
"/qu3zt": "0",
"/sBA0p": "Manage",
"/udwYv": "Learn more",
"/ut0u7": "Returns the first Count elements from the array or string passed in",
"/vWMKW": "Missing required inputs",
"/yYyOq": "Resource Group",
"/ye9Df": "Delete workflow action",
"0/OIcB": "Parameter",
"0/VGiF": "Add action",
"0/hw21": "Name must not be empty.",
"00xlpa": "Shared",
"0147jq": "Managed Service Identity",
"03RO5d": "Edit parameter",
"04AwK7": "Error code: ''{errorCode}'', Message: ''{message}''.",
"06T/X8": "Export custom API actions to API management",
"06zKZg": "(UTC+04:00) Tbilisi",
"07ZsoY": "Returns the start of the hour to a string timestamp passed in",
"07oZoX": "(UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky",
"08e2rO": "The managed identity used with this operation no longer exists. To continue, set up an identity or change the connection.",
"09B9CU": "Returns the URL to invoke the trigger or action. Note: This function can only be used in an httpWebhook and apiConnectionWebhook, not in a manual, recurrence, http, or apiConnection.",
"0B5xDu": "(UTC+05:30) Sri Jayawardenepura",
"0BO/tO": "Split-on tracking ID",
"0C5Ywr": "Enter an array",
"0CPsxh": "Del",
"0CvRZW": "Save",
"0FRVkr": "Connection Panel",
"0FzNJV": "Required. The base64 encoded string.",
"0G6CfM": "Model",
"0GT0SI": "Cancel",
"0H5p4k": "Select workflow type",
"0HHGtU": "Select actions that form a contiguous block to group them",
"0IRUjM": "Select a target schema node to start mapping",
"0JIDLK": "There are multiple consecutive Initialize Variable actions in this workflow. Would you like to combine them into a single action?",
"0JTHTZ": "Show run menu",
"0KMjv6": "Tracking",
"0R2D5l": "Returns a binary representation of a URI encoded string",
"0RcjSp": "Collapse",
"0SSwxD": "Close panel",
"0TLYdu": "Create new group",
"0UfxUM": "Next",
"0UjRS5": "Save + publish for production",
"0Va6gs": "Use Dev Container",
"0Vzp0l": "Collapse",
"0ZZJos": "Showing {current_index_start} - {current_index_last} of {max_count} results.",
"0a4IGE": "Refresh",
"0aREuu": "See more",
"0bqihO": "Download chunk size",
"0i/6TR": "Required. The string to convert to upper casing. If a character in the string does not have an uppercase equivalent, the character is included unchanged in the returned string.",
"0l+F9w": "Description",
"0m0zNa": "Connector Type",
"0m2Y1/": "Value",
"0n/bOI": "The name can contain only alphanumeric characters or the following symbols: . _ - ( )",
"0oebOm": "Outputs",
"0p+pJq": "Returns the remainder after dividing the two numbers (modulo)",
"0qV0Qe": "Required. The string that may contain the value.",
"0rJ6RJ": "Loading...",
"0sbIhI": "Production",
"0uiwQZ": "Complete export",
"0uj1Li": "Returns a binary representation of an input data URI string",
"0upuCv": "Hour",
"0uuxAX": "Delete mapping",
"0vVdXF": "Enter the required information",
"0vfdFS": "every day",
"0w/olE": "{connectorName} connection",
"0ws70s": "Enter description",
"0xLWzG": "The name already exists or is invalid. Update the name before you continue.",
"0y5eia": "More commands",
"0zMOIe": "Connector Name",
"1+JO/G": "Designer view",
"1+Z8n9": "Required. The data URI to convert to String representation.",
"109OPL": "Returns the port from a URI. If port is not specified, returns the default port for the protocol",
"10b+jL": "Parameters",
"14lYtE": "18",
"15A50P": "List of workflow tools",
"189xYn": "Showing first {count} matches. Type more to refine search...",
"19fSGN": "Multiple variables have validation errors",
"19gdw8": "Learn more",
"1A1P5b": "Comment",
"1AFYij": "This template contains one workflow, therefore it is classified as a Workflow.",
"1Ch1Od": "This name is reserved and cannot be used as a workflow name.",
"1D047X": "Required. The value to convert to XML.",
"1Fn5n+": "Required. The URI encoded string.",
"1GWzEL": "No results found for the specified filters",
"1Gsrs4": "You can ask questions or describe changes you want to make to your workflow.",
"1HhCtq": "Headers",
"1KFRSn": "Requires a unique hub name under 244 characters with only letters and numbers.",
"1KFpTX": "(UTC+03:00) Minsk",
"1KMc+6": "The integer should be between [{min}, {max}]",
"1LSKq8": "Basics",
"1NBvKu": "Convert the parameter argument to a floating-point number",
"1NVeRR": "This assistant can help you learn about your workflows, answer questions about Azure Logic Apps, and make changes to your workflow.",
"1Orv4i": "Details",
"1REu5/": "See less",
"1Xke9D": "open functions drawer",
"1YRXiO": "Requires a name.",
"1YUi9I": "Add a hand-off agent",
"1ZDLZA": "Learn more",
"1ZrOYn": "AI Foundry Project",
"1b4sPR": "Review + create",
"1bUFmg": "Update MCP server",
"1dlfUe": "Actions perform operations on data, communicate between systems, or run other tasks.",
"1eKQwo": "(UTC+08:00) Perth",
"1f7LG4": "Fixed interval",
"1h43JZ": "Select parameters",
"1hHFdx": "(UTC-01:00) Azores",
"1hPZqe": "The number of times to retry the request",
"1htSs7": "Off",
"1i3RKp": "Published for Testing",
"1jaOSf": "Logic app name cannot be the same as the function folder name.",
"1jf3Dq": "Z to A, descending",
"1jhzOM": "Required. The object to check if it is less than value being compared to.",
"1lLI6H": "Workflow summary is required for publish.",
"1nODUD": "Hide functions",
"1nvvw1": "Enter the value of the Authorization header",
"1pjO9s": "Hide source schema",
"1r967W": "Edit in foundry portal",
"1r9ljA": "Enter a valid URI.",
"1tmN2o": "Workflow version",
"1uGBLP": "5",
"1webqh": "Deselect all",
"1x5IuY": "No connectors found",
"1xa4kY": "No details available",
"1ypa9A": "The ''{serverName}'' server was updated.",
"20oqsp": "Add children (recursive)",
"21a7FD": "{count} ms",
"23fENy": "Returns a binary representation of a base 64 encoded string",
"23szE+": "Required. The value to convert to data URI.",
"23uZn1": "Global search",
"27Nhhv": "Select an API from an API Management instance",
"29Wg4P": "Select all",
"2CGfiU": "Download template",
"2CXCOt": "Select a file to upload",
"2DmMb7": "Chat Availability",
"2Do8Lp": "Name",
"2EZWf6": "Loading...",
"2Gh+Gd": "Workflow assistant",
"2JA3gY": "Expand tree node",
"2JT0E3": "Filter by type",
"2Js04W": "Accelerator",
"2K2fAj": "End time",
"2LtWMp": "Handoffs define which agents can receive control of the workflow. Add descriptions to help agents understand the purpose of the handoff.",
"2MOA1x": "Control how new runs are queued",
"2NGCQq": "Showing {displayedCount} of {totalCount} options. Type to search...",
"2NXYYu": "Search",
"2Noh96": "17",
"2OQU3/": "Cannot run after both trigger and action",
"2On4Xu": "Code view tab",
"2P1Ap0": "Existing",
"2RtLQr": "Choose the harness runtime for agent execution.",
"2TMGk7": "Managed identity",
"2XH9oW": "Back",
"2XMSCZ": "Requires a parameter value.",
"2ZfzaY": "Select existing",
"2aC0Xh": "Saving workflow...",
"2adqQ4": "Maximum interval",
"2bBUCc": "Method",
"2cRdSf": "Not created",
"2cVEMV": "Returns a single value matching the key name from form-data or form-encoded action output",
"2gOfQI": "Existing schemas from",
"2gzGrJ": "Required. The name of the action with a form-data or form-encoded response.",
"2hl9xo": "No connectors found for this category",
"2hrQOL": "(UTC+00:00) Dublin, Edinburgh, Lisbon, London",
"2istir": "Cancel",
"2j1xuE": "Parameter name",
"2p9WPX": "Development & Testing",
"2pCFsW": "Paging count invalid. Value must be a number greater than 0",
"2pRsUf": "Enter a valid array.",
"2q6Vas": "Required",
"2r30S9": "Insert a new step after {parentName}",
"2t7Wx0": "Optional file description",
"2tTQ0A": "On",
"2uINs9": "Default",
"2wT48Z": "Can't find any Cosmos DB resources.",
"2xQWRt": "Search Functions",
"2y24a/": "Save",
"2yCDJd": "Test is not supported for your current operating system",
"2yO/M6": "Include connection configurations in export",
"2z5HGT": "Optional. The RFC 4646 locale code to use. If not specified, default locale is used. If locale isn't a valid value, an error is generated that the provided locale isn't valid or doesn't have an associated locale.",
"3+TQMa": "Loading connection...",
"33+WHG": "Identifier",
"33ZkJ+": "Accepted formats: {formats}",
"34Nt/B": "alt text for button icon",
"36RiST": "System-assigned managed identity",
"36sF7T": "Associated workflows",
"38leUm": "An error occurred while submitting the deployment. Details: {errorDetails}",
"3AWwVl": "Code",
"3AxTTb": "User chat message",
"3BXdMk": "Request settings",
"3BZnxY": "Add dynamic content",
"3CYbZj": "Select a Cosmos DB resource.",
"3DEbi3": "Generate MCP API key",
"3DmVJ2": "Select a model...",
"3ERi+E": "Terms of Service",
"3GINhd": "Triggers",
"3H+PIM": "Overview",
"3Hl3r2": "Published by",
"3JEC7U": "Error type",
"3KPLpx": "Remove all mappings within source element `{nodeName}` first.",
"3MTSYZ": "(UTC-03:00) Salvador",
"3MaYXN": "Embedded chat is unavailable with authentication enabled. Publish to access the chat client and click to open in new tab: {url}",
"3NhwIJ": "Required. The separator.",
"3O0i4j": "There is no content available",
"3PJZH0": "Required. The string to examine.",
"3PXVj+": "Tool",
"3QXY3z": "Replacing an existing schema with an incompatible schema might create errors in your map.",
"3RoD4h": "Returns the collection in reverse order",
"3ST5oT": "You're creating an accelerator template!",
"3V1451": "Input Files",
"3Wcqsy": "Next",
"3X4FHS": "Choose the type of user input",
"3Xf/4S": "Swagger endpoint",
"3Y8a6G": "Required parameters {parameters} not set or invalid",
"3Y9Ff3": "Use the following credentials to connect to your agent from external applications or custom integrations.",
"3YFMW8": "Open Chat Client",
"3a3eHg": "Select actions",
"3c7eHH": "Please enter a valid time format (e.g., 2:30 PM).",
"3cZFcy": "Error Panel",
"3cZZKj": "Divider",
"3cdEwu": "Connection display name",
"3eeli7": "Select a source schema",
"3hHkAn": "Result",
"3hs3ud": "Edit workflows",
"3jL1mR": "Validating resources...",
"3n5pnv": "(UTC+10:30) Lord Howe Island",
"3n6GJG": "Enter a valid JSON.",
"3nUf86": "Provided value",
"3pOMqH": "This could mean that the variable is set up incorrectly.",
"3pheF6": "Select schema",
"3qDalD": "Add optional parameters",
"3rzrWf": "Required. The object to remove the property from.",
"3sJlV+": "Close code view",
"3uA4ml": "Enter a valid datetime.",
"3vCCY7": "Required. The number of a specified time unit to subtract.",
"3vqfeV": "3",
"3wBpcJ": "Submitting...",
"3z6rhG": "Required. This value is the next integer after the highest integer that can be returned.",
"41drjl": "Open connection",
"43xObP": "(UTC+10:00) Canberra, Melbourne, Sydney",
"44jsHY": "Published for Production",
"45ubha": "Authentication",
"47k6r6": "The agent chat interface cannot be displayed in this environment due to security restrictions. Please use the external chat client.",
"47kOXr": "Required. The lowest integer that can be returned.",
"49YUXK": "''{parameterName}'' is required.",
"4BH2f8": "Close",
"4BH9uU": "Errors",
"4BrA0z": "Required. The number of days to add. Can be negative to subtract days.",
"4BuCdw": "Specify the behavior and capabilities for transferring content over HTTP.",
"4D7H4R": "Runs {onDays}",
"4E69aV": "Background color",
"4Ekn9t": "Undo",
"4I7gV9": "Creating...",
"4IV3/7": "Step {current} of {total}",
"4LQwvg": "Cancel",
"4Levd5": "Send me an email when",
"4Q7WzU": "Add a new connection",
"4SDpHu": "Enter a user prompt or question.",
"4SIrVn": "Body",
"4SQKyc": "Edit in advanced mode",
"4Sa4em": "Cannot delete trigger in agent to agent workflows",
"4TXvXe": "Get started quickly",
"4YKQAF": "Required. The unit of time specified in the interval.",
"4Z2vwX": "Searching for connectors...",
"4ZPAvT": "Off",
"4aaixN": "Tour",
"4bT5AR": "Invalid connection. To load complete details, complete or update the connection.",
"4c0uPQ": "Required. The name of the parameter whose values you want.",
"4eYp8/": "Create a new group",
"4ggAK+": "Error occurred while parsing agent instructions.",
"4hi3ks": "Your flow has been updated.",
"4hlqgK": "No results found for {searchTermBeingSearchedFor_DO_NOT_TRANSLATE}",
"4iyEAY": "💾 Saving this flow...",
"4izAMi": "Enter a value to respond with",
"4mxRH9": "All",
"4rIMVu": "Additional steps",
"4rVVyW": "Retry history",
"4rdY7D": "Run ID",
"4vcnOA": "Returns the minimum value in the input array of numbers",
"4vmGh0": "Service request ID",
"4wjJs0": "14",
"4y9tHO": "Use left and right arrow keys to navigate between commands",
"4yDTpq": "Copy URL",
"4yQ6LA": "Loading...",
"5+P3ef": "(UTC+08:45) Eucla",
"5+zBXE": "{label} key item",
"50W8FI": "Explain action",
"53MgCQ": "Open panel",
"56TR3P": "Cancel",
"595Baw": "(UTC+09:00) Osaka, Sapporo, Tokyo",
"59OCrz": "Cancel",
"5BX2sU": "Filter agents",
"5BxSaa": "Paste as parallel branch",
"5Bxb+T": "Refresh agents list",
"5DkTf5": "Target schema node not found for node key ''{nodeKey}''",
"5E66mK": "Remove parameter",
"5G/VKd": "This action doesn't have parameters that need setup.",
"5GHXCP": "Select all",
"5GWxTc": "Function workspace",
"5HY9F4": "Storage account",
"5J9jne": "Tell Microsoft what you liked about this feature",
"5L2vIX": "Subscription",
"5LV34t": "The ''{invalidProperties}'' properties are invalid for the ''{authType}'' authentication type.",
"5OvGgn": "Body",
"5R1r3q": "Create a new connection",
"5SAQOb": "Authority",
"5Tqzsm": "Categorization",
"5U6Dee": "Action Result",
"5Vbd0e": "Select a knowledge hub",
"5VhY2X": "Loading models...",
"5WTRY8": "Errors",
"5akc1Q": "Unsupported 'in' value : ''{value}'' in Parameter",
"5b0sKi": "Returns true if an object, array, or string is empty",
"5cPiWA": "Required. The name of the loop whose item you want.",
"5cR2cP": "Events from apps or services",
"5dCAjy": "Day",
"5fmV2Q": "Parameters used in Logic App will be converted into Azure Resource Manager template during deployment template generation.",
"5gOG+F": "Provide the values to compare and select the operator to use.",
"5hWg4V": "Select element",
"5iMM2U": "Learn more",
"5lEeZZ": "Channels",
"5lRHeK": "--",
"5m1Ozg": "Name",
"5pSOjg": "Create workflows from template",
"5qdGCJ": "Copy run IDs",
"5qzZMo": "Loading...",
"5rljf7": "Discovery Panel",
"5rqV2M": "Failed",
"5szzYP": "Use this template",
"5td/Ux": "Returns a single object containing all properties from the input objects. If both objects have the same property, the property from the second object appears in the final result.",
"5wYM6C": "When an evaluation or assessment process starts",
"5we9SR": "Client tracking ID",
"5z0Zdm": "Load more",
"5zW+oj": "Update workflow from template",
"6+7YiX": "Set up your MCP server with new workflows. Build them with connectors and actions from our catalog.",
"6+L8qX": "Location",
"6+XmJg": "Database",
"613mcC": "Agent name",
"62Ypnr": "Error loading operation data",
"63/zYN": "Required. The object to check if it is greater than value being compared to.",
"632t9E": "Secure inputs of the operation",
"635Koz": "Every week on Monday",
"63CC7M": "Error loading inputs",
"63fQWE": "Show all advanced parameters",
"66kCUP": "Loading...",
"6776lH": "Processing...",
"67FI5P": "Integration service environment",
"68UJHa": "This list shows the new resources to create for your logic app and existing resources if any.",
"69+CIW": "View workflow",
"6ASWgB": "Confirm that you want to delete this MCP server group? You can't undo this action.",
"6D5fAm": "Trigger",
"6DZp5H": "Search",
"6DsS1M": "Duration (days)",
"6ELsbA": "Profile",
"6F5v5s": "The selected sandbox configuration belongs to a different integration account. Please update to match the current account.",
"6HztdX": "Summary",
"6LJZ7n": "Retry policy",
"6OCUKm": "Configure",
"6OSgRP": "Test map",
"6PdOcy": "Cancel",
"6RT/F9": "Add headers for your MCP server.",
"6TZBof": "Managed Service Identity",
"6VV7OY": "Timeout value is invalid, must match ISO 8601 duration format",
"6WOs0A": "For default value:",
"6Y7uWR": "Drop files here or select to browse.",
"6ZzRu4": "''Value'' must be a valid {expectedType}",
"6c1ffO": "Enter JSON object of authentication parameter",
"6d4J74": "Select at least one workflow to continue.",
"6eDY1H": "optional",
"6epkWC": "Body item",
"6fDYzG": "Failed to load the schema. Please try again.",
"6gZ4I3": "Function ''{functionName}'' has too many inputs assigned to it",
"6gblzt": "Updated this action",
"6hj4yW": "Database",
"6jBzPt": "Enter your question or query here.",
"6jJvtY": "Search",
"6jUopY": "Design Patterns",
"6jiO7t": "Show run",
"6jsWn/": "Required. The collection to search within.",
"6kSpHL": "Required. The name of the action with a multipart response.",
"6lLsi+": "This step will be removed from the Logic App.",
"6nWQm7": "Start time",
"6oOQnD": "Close test map",
"6oqk+A": "Previous",
"6pHhCD": "Decodes a string that has been encoded as an XML element or attribute name back to its original form.",
"6pISgk": "To get this workflow ready, finish setting up these actions:",
"6qPgjN": "Description",
"6qkBwz": "Required. The number to multiply Multiplicand 2 with.",
"6rJ+Fj": "Delete workflow graph",
"6sGj3J": "Create flow",
"6sSPNb": "{connectorName} connector",
"6u6CS+": "Required. The value for which to find the index.",
"6u9d0D": "Cancel",
"6uCEoM": "Enter a valid value for ''{parameterName}''.",
"6ueRYm": "Start time",
"6weOOy": "Remove",
"6xRvni": "Data type",
"6yFUar": "Outputs are required when status is \"Succeeded\"",
"6ylGHb": "For each loops run in parallel by default. Use this setting to control how many items are processed in parallel, or set the limit to 1 to run the loop sequentially.",
"7+ZxCU": "Invalid authentication value",
"7/FvCp": "Function namespace must be a valid C# namespace.",
"70cHmm": "OK",
"71Gdi9": "Thinking...",
"73iM9+": "Update source schema",
"74e2xB": "Create a new connection",
"75zXUl": "Cancel",
"76TGL0": "Ground responses and insights with knowledge",
"78Vggn": "Enter username",
"79XCgP": "Azure Storage Account name",
"7BVryg": "Successfully updated MCP server: ''{serverName}''.",
"7Djtki": "File artifact name can't exceed 80 characters.",
"7ERTcu": "You're creating a workflow template!",
"7EZ2oY": "(UTC-04:00) Turks and Caicos",
"7F4Bzv": "Workflow with name \"{workflowName}\" already exists.",
"7FKm7o": "Validation errors",
"7Fyq1F": "No inputs",
"7GSk99": "OK",
"7LmpNN": "Parameter \"{parameterName}\" cannot be found for this operation",
"7MP7FJ": "How do values resolve at runtime?",
"7MbFEx": "Select a connection",
"7N+Zcl": "App Service Plan",
"7PTnxD": "New assertion",
"7PtWvu": "(UTC-05:00) Eastern Time (US & Canada)",
"7QymrD": "Required. The string from which the substring is taken.",
"7ScdN6": "Name",
"7Wn0bz": "Close",
"7X4UA/": "Waiting",
"7ZF1Hr": "Validation error",
"7ZR1xr": "Add an action",
"7aJqIH": "Optional. The locale to be used when formatting (defaults to 'en-us').",
"7adnmH": "Back to template library",
"7bhWPe": "A project with this name already exists in the workspace.",
"7cPLnJ": "Do you want to stop the agent chat? This will cancel the workflow.",
"7fI0ys": "Refreshing...",
"7fZkLA": "Disable static result",
"7gUE8h": "This will revert your workflow to the state it was in before Copilot's edit. If you made additional edits to the workflow after Copilot's, you will lose them. This action cannot be undone. Do you want to continue?",
"7iFZ8E": "No agents found in this project",
"7jcTNd": "Enter a valid email.",
"7kyZuO": "No Connection",
"7lnElz": "Returns the number of ticks (100 nanoseconds interval) since 1 January 0001 00:00:00 UT of a string timestamp",
"7o0h6R": "The ''{serverName}'' server was created.",
"7oWsJU": "Loading agents...",
"7p0pJS": "What are connectors?",
"7pjV7b": "Project details",
"7rItIH": "Cancel",
"7rokiZ": "Embedded chat is unavailable with authentication enabled. Click to open in new tab: {url}",
"7uQSsD": "Parameters",
"7yEdSt": "Show more",
"7yFLpB": "Copy URL",
"7zsUT3": "Unsupported authentication type ''{authType}''.",
"7zzPsK": "Required. The string that may contain the value.",
"7zzSoZ": "Pricing plan",
"8+0teU": "Parameter name already exists.",
"8+TVCG": "Edit: {selectedOperationSummary}",
"8/Vjz3": "Knowledge base",
"805nCJ": "Error Message",
"80T6Ut": "The deployment is taking longer than expected. Please check the Azure portal for more details.",
"80z7j2": "Key-based authentication",
"810OUB": "When triggered by another workflow",
"83G5rr": "Specify the interval.",
"83PYuA": "(UTC-06:00) Central Time (US & Canada)",
"83Vrgj": "Template",
"84D91Y": "Pfx",
"85n/lh": "No items found",
"86z4Hs": "Cut",
"874l4V": "Upload Files",
"89kLK1": "Add a trigger",
"8A0GFO": "Required. The XML-encoded name string to be decoded.",
"8CWFEh": "Required. The value to return if the expression is 'true'.",
"8DFwxH": "Returns a formatted number string",
"8DgDf+": "Custom",
"8FjOSh": "Required. The object to check if it is greater or equal to the comparing object.",
"8G9bj4": "Add custom modules, uncover new scenarios, and find troubleshooting tips",
"8Ifvot": "...and {count} more items. Type to search for specific items.",
"8JEHiY": "Saturday",
"8KpZmj": "The system-assigned identity is unavailable because it's not enabled.",
"8L+oIz": "Cannot render designer due to multiple triggers in definition.",
"8LhQeL": "Switch to code view mode",
"8M2YfK": "Delete",
"8ND+Yc": "Please enable managed identity for the logic app.",
"8NFfuB": "Actions",
"8NUqpR": "Describe how your flow should be changed. Add details where possible, including the connector to use and if any content should be included.",
"8PDiiR": "Displaying {count} {count, plural, one {item} other {items}}",
"8U/Kek": "Retry",
"8U0KPg": "Required. The string to be URI encoded.",
"8UfIAk": "Enter secret as plain text or use a secure parameter",
"8VlCa0": "Discard",
"8Y5xpK": "Thursday",
"8YVpN7": "Logic app created successfully!",
"8ZfbyZ": "(UTC+06:00) Astana",
"8d3lmL": "Storage account",
"8e1bKU": "Delete connector",
"8eKf/c": "(UTC+08:00) Irkutsk",
"8eTWaf": "Rename",
"8f/OBl": "Parameters",
"8h1+4D": "An error occurred while validating the deployment. Details: {errorDetails}",
"8iLlRQ": "Successfully deleted the hub artifacts.",
"8iX8Yu": "Create",
"8j+a0n": "With the asynchronous pattern, if the remote server indicates that the request is accepted for processing with a 202 (Accepted) response, the Logic Apps engine will keep polling the URL specified in the response's location header until reaching a terminal state.",
"8lZGy+": "Chat is only available in production when authentication is enabled on the app. This ensures secure access to your workflow.",
"8m5+M9": "No subscriptions available",
"8mDG0V": "The workflow has parameter validation errors in the following operations: {invalidNodes}",
"8nnC5o": "The user-friendly name displayed for the workflow in the Azure portal.",
"8opHew": "Combine Initialize Variables (preview)",
"8p0yK8": "Run after",
"8wlfdo": "Suppress workflow headers on response",
"8wr0zO": "Adds an integer number of days to a string timestamp passed in",
"8x1csA": "Use existing workflows in your logic app or create new tools.",
"8zcsPi": "Expression editor",
"8zkvmc": "Testing",
"9+y/1L": "Repository",
"9/UeTh": "Returns a single array or object that has common elements between arrays or objects passed in",
"9/bPKH": "Enter run ID",
"9/yaph": "Connect to Agent",
"90Q7Pw": "Value",
"90Vi7t": "Expand static result",
"90o7sB": "File",
"95Psou": "Previous",
"96JG8I": "{operationName} operation",
"96v4Tz": "Select a time...",
"99vsJy": "Connector",
"9COFQr": "Collapse action",
"9CPgcj": "Failed to create agent",
"9EmN2M": "Cancel",
"9EmZWH": "Add",
"9Er8NF": "Logic App Standard",
"9IDWMU": "Close",
"9III/+": "Add",
"9JuvQ4": "Returns a data URI of a value",
"9Jv3+1": "Returns an object with an additional property value pair",
"9KwscD": "Stop chat",
"9LJG/a": "Region",
"9LLnyJ": "(UTC-03:00) Brasilia",
"9LP9d3": "Invoke tools from MCP servers",
"9Mu4CV": "User instructions",
"9OzDnJ": "Search tips",
"9QNZSj": "Revert your flow",
"9QS9a3": "Replace \"{selectedOperation}\" with",
"9SuA/E": "12",
"9V2Uwf": "Insert expression (you can also add by typing '/' in the editor)",
"9VbsXx": "Chat",
"9Vk2Sn": "Location",
"9W0lck": "Invalid split on value ''{splitOn}'', cannot find in outputs.",
"9YGcT2": "ChildErrors",
"9YZ873": "Text",
"9aAkJP": "Workflow name",
"9aj+el": "Default",
"9atGYe": "Add",
"9bCLPz": "Loading API Management APIs...",
"9bQctz": "Validation failed for workflows:",
"9djnqI": "Returns the result from adding the two numbers",
"9emgHc": "Specify which HTTP status codes should trigger a retry. Select one or more status codes.",
"9euy52": "Complete",
"9gb/xS": "Create",
"9hKeBq": "Select an Azure OpenAI resource",
"9klmbJ": "Save",
"9lP2zW": "Please select tool",
"9mG3yl": "Failed to update connection",
"9mjZIW": "Delete handoff",
"9nAAU/": "Connections",
"9o9MIz": "Set up a database for your knowledge base.",
"9u/Ae3": "Returns true if both parameters are true",
"9uv02q": "Set the tracking ID for the run. For split-on this tracking ID is for the initiating request",
"9wX3u9": "Send feedback",
"9yLPwo": "For more detailed information, you can refer to the following resources",
"9yq5lv": "Create as per-user connection?",
"9z/8Jn": "Selected apps",
"A0Kk9V": "Review details for the source Consumption logic app. Provide details for the destination Standard logic app.",
"A5/IqS": "Run identifier",
"A5Ferh": "Source element removed from view.",
"A5szs0": "Learn more about Agent Harness",
"A7wxg0": "Validating...",
"A8T1X/": "Whitespaces must be encoded for URIs.",
"AB+yPQ": "Connection details",
"AEguAy": "Empty value",
"AGCm1p": "Name",
"AJ+LDh": "Provide a unique, descriptive name and review the state type to ensure your workflows are properly configured.",
"AKOkI2": "Service principal",
"AL1iVa": "Working...",
"AMMfbt": "{count} Second",
"APKdYG": "Enter a valid double number.",
"APfopx": "Manage authentication for your MCP servers.",
"AQ7Zxc": "Returns the index for a value's n-th occurrence in a string (case-insensitive, invariant culture).",
"AQqOMB": "Workflow name",
"ASLx7+": "Choose or create a new group",
"AaVRhS": "Multiple actions selected",
"Ae8T94": "View issues",
"Af+Ve0": "(UTC+11:00) Bougainville Island",
"AhAJr6": "Add file sources to your Knowledge base",
"AheXMN": "Select frequency.",
"AhvQ7r": "Remove and clear all advanced parameters and their values",
"Aid5oX": "Handoff description",
"Ak2Lka": "Not connected to",
"AkKqDo": "Built-in Tools",
"AlPxuK": "Description",
"AlWFOS": "Collapse chat panel",
"Alq4/3": "Hybrid connector",
"AmSRsf": "Name this parameter",
"AmlQmq": "Create unit test from run",
"AnX5yC": "Username",
"Ap0SOB": "Deleting workflows will remove them from this template. The template will be unpublished and won't appear in the template library until it is republished. Do you want to delete the workflow(s) and unpublish?",
"ArTh0/": "Required. The string to encode into base64 representation.",
"Aui3Mq": "{title} operation",
"Av2j9p": "Advanced options",
"AwnX1W": "browse to upload.",
"Az0QvG": "Automatic",
"B/JzwK": "{actionCount, plural, one {# Action} =0 {0 Actions} other {# Actions}}",
"B/gCWM": "Error",
"B2N49Y": "Name",
"B2s0iG": "Required. The index of the part to retrieve.",
"B59BCg": "No dynamic content available",
"B6BjCl": "Drop-down list of options",
"B8pog+": "Succeeded",
"B999mz": "Line deleted.",
"B9mTVF": "Copy",
"BBD8Em": "Key",
"BCAnZP": "Either a single format specifier character or a custom format pattern that indicates how to format the value of this timestamp. If format is not provided, the ISO 8601 format ('o') is used.",
"BCgiRh": "Warning: custom value does not match one of the allowed types for this input",
"BFBJi2": "No errors found in your map.",
"BGw6eH": "Missing required properties ''{missingProperties}'' for authentication type ''{authType}''",
"BHXsCs": "Authentication",
"BHe7qY": "Required. The URI encoded string.",
"BIG5Dz": "Stop",
"BIzX3S": "Learn more about undo operations",
"BJXKTR": "Select to collapse",
"BKL0ZG": "Start time",
"BMCFV3": "If available, default parameters specify the minimum inputs for this task. You can add any optional parameters for your scenario. By default, parameters get dynamic values from the AI model, but you can choose to enter static values instead.",
"BO1cXH": "Either limit count or timeout must be specified.",
"BP+WUL": "Close",
"BQCPY7": "Required. The string to decode the URL-unsafe characters from.",
"BQSRV0": "Enter password as plain text or use a secure parameter",
"BQY4w7": "Select the embeddings model to use for this connection",
"BS3gy8": "Sorry, something went wrong. Please try again.",
"BSgavq": "Example: Monday, Friday",
"BUutcC": "Expant list of sibling elements",
"BXb3CB": "Testing tab",
"BYe/Dw": "Edit",
"BYrP8F": "Number",
"BYsNzz": "Your template has been unpublished.",
"Bewmet": "Array",
"BfGFkk": "Test icon",
"Bft/H3": "All the benefits of Stateful, plus the option to build AI agents in your workflow to automate complex tasks.",
"BjrVzW": "Resource group",
"Bkc/+3": "Retry policy minimum interval is invalid, must match ISO 8601 duration format",
"Bl4Iv0": "(UTC+08:00) Ulaanbaatar",
"Bn8iTS": "State type:",
"BnRLjw": "Copy {count} actions",
"BnkCwH": "Search properties",
"BoMvF2": "Collapse",
"BogxJl": "(UTC+04:00) Izhevsk, Samara",
"BrWQ0Z": "Select a managed identity",
"BsZRu5": "Logic app",
"BtL7UI": "No additional information is needed for this step. You will be able to use the outputs in subsequent steps.",
"Btpmnv": "Template details",
"BuYrD3": "A single format specifier that indicates how to format the value of this Guid.",
"BwOKWK": "Remember my choice",
"Bwqlxd": "Key not found ''{nodeKey}''",
"BwxTBw": "Loading logic apps ...",
"BxITRH": "Required. The object to check if it is greater than comparing object.",
"BynK4X": "Ask a question",
"C1cy54": "Body",
"C3taj3": "Set up your MCP server with existing workflows. Select them from this logic app.",
"C4NQ1J": "Retrieve items to meet the specified threshold by following the continuation token. Due to connector's page size, the number returned may exceed the threshold.",
"CAsrZ8": "When an HTTP request is received",
"CBKu4V": "{count} actions selected",
"CBQYkl": "Create workflow",
"CBcl2V": "Logic app name cannot be empty.",
"CBzSJo": "True",
"CCpPpu": "Parameters",
"CDET7A": "This list shows the new resources to create for your logic app and existing resources if any.",
"CG772M": "Connection required",
"CN+Jfd": "No actions",
"CPH+z+": "Save",
"CRTB+v": "Value should be greater than {min}",
"CS/1SY": "Toggle multi-select",
"CWx5jT": "all {count} {count, plural, one {tool} other {tools}} selected",
"CYqoVk": "Create new agent",
"CaajcD": "(UTC+13:00) Samoa",
"CaiUX0": "Resources",
"Cb02hn": "Description",
"Cb6IEq": "(UTC-05:00) Havana",
"Cb8pv0": "(UTC-02:00) Mid-Atlantic - Old",
"Ccbm2Y": "Multi-select list of options",
"CcuFEN": "Report error",
"CdyJ6f": "Recurrence",
"CeF40t": "Authentication type",
"CemHmO": "Loading...",
"CfXSvL": "Standard logic app with built-in connectors and triggers",
"Cg2gLt": "Select the subscription for your Cosmos DB resource.",
"ChIvwj": "Select the completions model to use for this connection",
"ChhFFp": "Close",
"Ci41Od": "(UTC+12:00) Auckland, Wellington",
"Ciol6I": "Output",
"Cj3/LJ": "Must provide the parameter name.",
"ClZW2r": "Value",
"ClowJ/": "Authentication type",
"CnRu/U": "Package setup",
"Cnymq/": "Review all the values you've added to this template. This read-only summary lets you quickly scan your template setup.",
"Cosbik": "Create connection",
"CqN0oM": "Customize parameter",
"CrlPhs": "Edit",
"CvoqQ6": "Please enter or select a date (YYYY-MM-DD)",
"CwAnpR": "Rules engine configuration",
"CwKE/Q": "Update connection",
"Cx7E/L": "Creating...",
"Cy0pyB": "(UTC+09:30) Adelaide",
"Cy4+KL": "Redo",
"CyI9Au": "Dismiss",
"CyT8H7": "Accepts 'Number', 'Integer', and 'Decimal' types.",
"CypYLs": "Insert a new step between {parentName} and {childName}",
"Czt6YV": "at {times}",
"D+Ptnq": "Returns the path and query from a URI",
"D/xTXV": "Show source schema",
"D0D3Sf": "switch case",
"D1lgsT": "Required. The string from which to remove leading and trailing whitespace.",
"D3DXLP": "Sort",
"D5FIKL": "Paste from sample",
"D6KzoS": "Specify upload chunk size between {minimumSize} and {maximumSize} Mb. Example: 10",
"D89UXR": "action",
"DAqQK1": "Hubs: {hubNames}",
"DDIIAQ": "Node",
"DEu7oK": "(UTC-07:00) Arizona",
"DGMwU4": "Use sample payload to generate schema",
"DGPz3M": "Copied!",
"DHI56r": "Rules engine location",
"DIDL6K": "Standard logic app",
"DIH5g2": "Add knowledge sources to build a knowledge base that the agent uses to generate accurate, context-aware responses and insights.",
"DIwFTo": "To generate and test with the latest XSLT, please save the map first.",
"DJW8RE": "Select a value",
"DMugTX": "Search",
"DMuwuJ": "Date",
"DN+7zV": "By Connector",
"DNQtFr": "Name",
"DS/WmZ": "Added Functions",
"DSgKuF": "Learn more",
"DT+e2k": "Manual approvals and user interactions",
"DTIrLI": "Save",
"DWd9vy": "every week",
"DWsh56": "Enter client ID",
"DX9jWz": "Name",
"DXwS7e": "Select workflow with 'An HTTP Request' trigger",
"DYXoEM": "(UTC+02:00) Chisinau",
"DYbiZw": "Fail operation when limits are reached",
"DZZ3fj": "Duration",
"DabKOm": "API keys",
"DbxZhS": "Remove list of options",
"DcJBUx": "Trigger type",
"DeM/yz": "Start time",
"DfXxoX": "Select an existing connection or create a new one",
"DgXA3v": "New",
"Dhu3IS": "Show mini-map",
"DjbVKU": "OAuth",
"Dm0zAO": "The maximum duration on a single outbound request from this action. If the request doesn't finish within this limit after running retries, the action fails",
"DmcfFk": "Select a Foundry agent...",
"DoX1Qb": "Add MCP server",
"DsPDVB": "Trigger condition cannot be empty",
"DserLU": "Connecting to Agent",
"DuoHXI": "Add an input",
"DvKGRc": "Learn more about authentication setup",
"DwLFBV": "Describe This Parameter",
"DyiMWE": "Retry",
"DysO/Q": "Ctrl + Y",
"E+HsWF": "Signing in...",
"E+cyaO": "URL and key-based authentication",
"E+iim4": "Select timezone.",
"E3+TAA": "Schema node ''{nodeName}'' has an input with a mismatched type",
"E70Rdt": "Internal errors",
"E7NzDN": "Settings",
"E7PMTh": "Completions model",
"E7jFWU": "Logic App",
"E8iqLl": "(UTC+11:00) Sakhalin",
"EAAlZ9": "Delete agent",
"ECHpxE": "Your logic app has been created and is ready to use.",
"ECZC6Y": "Converts the parameter to a decimal number",
"EE1vyH": "Update workflow before using this trigger",
"EFQ56R": "Source code",
"EHLy1u": "Hub name can't exceed 244 characters.",
"EMcFck": "Some parameters might need configuration. Review before you continue.",
"ENMteK": "File has been successfully uploaded in knowledge hub {groupName}.",
"EPvt2J": "Select an Azure AI resource",
"ES5vsI": "Value",
"ESZXfC": "At these minutes",
"EUQDM6": "Add an action",
"EX0g1d": "Secure outputs",
"EXEL2j": "Destination",
"EXxdfo": "Fetching resource details...",
"EZz5q7": "Required. The index of where to start extracting the substring.",
"Ea/fr+": "Every {interval} days",
"EaTGcN": "(UTC+01:00) West Central Africa",
"Eaaf3l": "Give the agent context for its role in the workflow",
"EcbMzH": "Multi-select panel",
"EdeHLs": "Switch to input entire array",
"EdzoIs": "1",
"EeJitp": "Type",
"EiRMD4": "Sign in to create a connection to {connectorDisplayName}.",
"EjXdAm": "Password",
"EjYF8U": "Register an MCP server with Azure Logic Apps",
"EoRB1V": "Details",
"EptZhD": "Enter a valid table.",
"EqNkZN": "Application Insights",
"EqX3Mi": "Set up these connections to use them in your flow.",
"EurkzL": "Please select yes or no",
"EvgBRe": "Choose a Model Context Protocol (MCP) server to invoke.",
"Eyxa6q": "The number of workflow instances that can wait to run when your current workflow instance is already running the maximum concurrent instances.",
"F+cOLr": "Community Authored",
"F/13eU": "Delete",
"F0rSr0": "Connect",
"F1AkvV": "Ideal for process business transitional data",
"F2wR+r": "Insert expression",
"F3IDl8": "Required. The number of a specified time unit to add.",
"F3q0Hk": "Cannot paste actions below agents in agent to agent workflows",
"F67pEe": "Waiting",
"F83QRP": "On a schedule",
"F9dR1Q": "Add",
"F9yRDC": "Method",
"FBabb+": "Add files",
"FDF4Qb": "Returns a parameter value that is defined in the definition",
"FEYdkx": "Maximum waiting runs",
"FEucgA": "No MCP servers available",
"FF5p6Q": "Action in an app",
"FFpPcf": "Resubmission",
"FIL1Nt": "Condition is too complex or invalid. Unable to switch to basic mode",
"FIT7i0": "20",
"FKGCvW": "The event that starts your workflow, such as a request, file update, or schedule.",
"FKwmYD": "Configure Authentication",
"FL/0Zp": "(UTC-07:00) Chihuahua, La Paz, Mazatlan",
"FLeN8N": "General",
"FMA0Q0": "Your flow has been updated.",
"FN5zHQ": "Returns a section of a string defined by the start index and the end index",
"FOoLuS": "Description",
"FSD5Z4": "Select all workflows checkbox rows label",
"FT3jt6": "Webhook reference information",
"FTrMxN": "Close",
"FUXlzD": "Run ID: {id}",
"FUuFlC": "Default",
"FUvA4o": "Must provide a condition expression.",
"FXLR5M": "{hours, plural, one {# hour} other {# hours}}",
"FYtDP0": "Enter an email address.",
"Fcvgvg": "Search",
"Fd3EpL": "Plan (SKU)",
"FeAx9p": "Template validation failed. Please fix the errors before proceeding.",
"FeqzjX": "Azure OpenAI model",
"Fh8wYp": "Create a logic app resource",
"FhhFMY": "Add optional parameters for inputs accepted by this task.",
"FiSFtL": "Chat availability: Development vs Production",
"FiyQjU": "2",
"Fmt/E7": "{actionCount, plural, one {# Tool} =0 {0 Tools} other {# Tools}}",
"FoUzpc": "Display name is required for Save.",
"Fpkufw": "Cancel ({count} of {total} eligible)",
"Fsc9ZE": "Logic app with built-in business rules engine for complex decision logic",
"FslNgF": "Status",
"Fx/6sv": "Go to operation",
"FxQ2Ts": "(UTC+02:00) Tripoli",
"G+XvKn": "Returns a string with each item of an array joined by a delimiter",
"G0XYrd": "Required. The string that may contain the value.",
"G0gnge": "Copy entire action",
"G8AUbT": "Key",
"G979pE": "Cloned successfully.",
"GAY7b8": "Returns the query from a URI",
"GBhksx": "What's needed before using this template (e.g., services, connections).",
"GD3m4X": "Expanded",
"GD79s3": "URL and key-based authentication",
"GDUGlm": "Enter authority",
"GE14Xd": "(UTC-03:00) City of Buenos Aires",
"GEB1on": "This contains a value that is not between 0 and 59",
"GFnJQe": "Test map",
"GIUSQs": "Filter by data type",
"GLd3MU": "Required. The object to find inside the Within collection.",
"GQnN3U": "Explain flow",
"GR5+k2": "AI and machine learning capabilities",
"GSzT3T": "Refresh",
"GX3fkR": "New assertion",
"GXFvm+": "To enable chat client for production, setup authentication.",
"GYu5XE": "Failed to load run details",
"GYui13": "Continue editing",
"GYvF54": "Referencing functions",
"GZ8MDP": "{s1} of {s2}",
"GbgqGL": "''{propertyName}'' is required",
"GcG0qf": "Returns true if the parameters are false",
"GdGm4T": "More commands",
"GdaJgz": "URL and key-based authentication",
"GfHVO/": "The endpoint of the resource that hosts the AI model",
"GfPnhv": "Flow structure errors",
"Ggkf4s": "Get started",
"Gi7czD": "Source schema element",
"GiR7ll": "Function not found- ''{nodeKey}''",
"Gk79Ma": "Status code",
"GkbTLA": "State type",
"Gl5khw": "At these hours",
"Gmya+V": "Not available",
"GnY5sj": "The type of value expected (e.g., string, boolean, number).",
"GreYWQ": "Enter parameter name.",
"GtDOFg": "Cancel the selection",
"Gup8o6": "Send messages to the agent while the workflow is running. This will pause the workflow until the agent processes the input.",
"GusLAj": "Case",
"Gw0u+P": "EDI",
"GxU+Zs": "Delete",
"GxdV2y": "Expires",
"GyPgdO": "Failed to create group",
"GyUe4C": "Modify options regarding functions",
"GzIQLR": "Clicking this button will open the run log tree and agent activity log.",
"GzQQqH": "Array",
"H/QVod": "Workflow has settings validation errors on the following operations: {invalidNodes}",
"H0G+5i": "Create a group or select an existing one to manage your knowledge base files.",
"H17jEE": "URI parsing functions",
"H1wnHr": "Required. The string to slice.",
"H2WdiZ": "Enter the valid minute values (from 0 to 59) separated by comma, e.g., 15,30",
"H5VikC": "Invalid connection, mapping must not form a closed loop.",
"H6IC6L": "Show Password",
"H8bEUn": "Required. The number that Subtrahend is removed from.",
"H9CZTr": "The expression is invalid. Make sure to use single quotes.",
"H9pzpO": "Deleted the following hub artifacts:",
"HDqP2g": "Required. The key name of the form data value to return.",
"HET2nV": "Add a Variable",
"HF2SNx": "Is successful",
"HF4xfS": "Enter agent name...",
"HFt+tF": "Favorites",
"HH970i": "Month",
"HILmmE": "Required. The collection to sort.",