forked from Azure/azure-functions-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResources.resx
1909 lines (1897 loc) · 94.3 KB
/
Resources.resx
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
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="eventHubOut_connection_help" xml:space="preserve">
<value>The name of the app setting containing your Event Hub connection string. The connection string must have Send permissions.</value>
</data>
<data name="eventHubOut_connection_label" xml:space="preserve">
<value>Event Hub connection</value>
</data>
<data name="eventHubOut_displayName" xml:space="preserve">
<value>Azure Event Hubs</value>
</data>
<data name="eventHubOut_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="eventHubOut_name_label" xml:space="preserve">
<value>Event parameter name</value>
</data>
<data name="eventHubOut_path_errorText" xml:space="preserve">
<value>The event hub name must start and end with a letter or number, and it can contain only letters, numbers, the hyphen, the period, and the underscore. The name must be 1 to 50 characters.</value>
</data>
<data name="eventHubOut_path_help" xml:space="preserve">
<value>The name of the event hub to which the event will be sent. It can also be mentioned as part of the connection string. If it is present in both locations (connection string and event hub) connection string takes precedence.</value>
</data>
<data name="eventHubOut_path_label" xml:space="preserve">
<value>Event Hub name</value>
</data>
<data name="eventHubTrigger_connection_help" xml:space="preserve">
<value>The name of the app setting containing your your Event Hub connection string. The connection string must have Receive permissions.</value>
</data>
<data name="eventHubTrigger_connection_label" xml:space="preserve">
<value>Event Hub connection</value>
</data>
<data name="eventHubTrigger_consumerGroup_help" xml:space="preserve">
<value>Event Hub consumer group from which to receive events</value>
</data>
<data name="eventHubTrigger_consumerGroup_label" xml:space="preserve">
<value>Event Hub consumer group</value>
</data>
<data name="eventHubTrigger_displayName" xml:space="preserve">
<value>Azure Event Hubs</value>
</data>
<data name="eventHubTrigger_name_help" xml:space="preserve">
<value>The name used to identify this trigger in your code</value>
</data>
<data name="eventHubTrigger_name_label" xml:space="preserve">
<value>Event parameter name</value>
</data>
<data name="eventHubTrigger_path_errorText" xml:space="preserve">
<value>The event hub name must start and end with a letter or number, and it can contain only letters, numbers, the hyphen, the period, and the underscore. The name must be 1 to 50 characters.</value>
</data>
<data name="eventHubTrigger_path_help" xml:space="preserve">
<value>The name of the event hub from which to trigger</value>
</data>
<data name="eventHubTrigger_path_label" xml:space="preserve">
<value>Event Hub name</value>
</data>
<data name="queueOut_displayName" xml:space="preserve">
<value>Azure Queue Storage</value>
</data>
<data name="queueOut_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="queueOut_name_label" xml:space="preserve">
<value>Message parameter name</value>
</data>
<data name="queueOut_queueName_errorText" xml:space="preserve">
<value>Your queue name must start and end with a letter or number, and it can contain only lowercase letters, numbers, and the hyphen. The name must be 3 to 63 characters.</value>
</data>
<data name="queueOut_queueName_label" xml:space="preserve">
<value>Queue name</value>
</data>
<data name="queueOut_queueName_help" xml:space="preserve">
<value>The queue to which the message will be sent. If the queue doesn't exist yet, one will be created for you in the specifed storage account.</value>
</data>
<data name="temp_category_core" xml:space="preserve">
<value>Core</value>
</data>
<data name="temp_category_dataProcessing" xml:space="preserve">
<value>Data Processing</value>
</data>
<data name="temp_timerTrigger_CSharp_desc" xml:space="preserve">
<value>A C# function that will be run on a specified schedule</value>
</data>
<data name="temp_timerTrigger_CSharp_name" xml:space="preserve">
<value>TimerTrigger - C#</value>
</data>
<data name="timerTrigger_displayName" xml:space="preserve">
<value>Timer</value>
</data>
<data name="timerTrigger_name_help" xml:space="preserve">
<value>The name used to identify this trigger in your code</value>
</data>
<data name="timerTrigger_name_label" xml:space="preserve">
<value>Timestamp parameter name</value>
</data>
<data name="timerTrigger_schedule_help" xml:space="preserve">
<value>Enter a cron expression of the format '{second} {minute} {hour} {day} {month} {day of week}' to specify the schedule.</value>
</data>
<data name="timerTrigger_schedule_label" xml:space="preserve">
<value>Schedule</value>
</data>
<data name="variables_apiHubTableConnectionHelp" xml:space="preserve">
<value>The name of the app setting containing your External Table connection.</value>
</data>
<data name="variables_apiHubTableConnectionLabel" xml:space="preserve">
<value>External Table connection</value>
</data>
<data name="variables_apiHubTableDataSetHelp" xml:space="preserve">
<value>The name of the data set to bind to. Leave as 'default' if binding to a table or entity.</value>
</data>
<data name="variables_apiHubTableDataSetLabel" xml:space="preserve">
<value>Data Set Name</value>
</data>
<data name="variables_apiHubTableEntityHelp" xml:space="preserve">
<value>The ID of the entity to bind to. Leave empty if binding to a data set or table.</value>
</data>
<data name="variables_apiHubTableEntityLabel" xml:space="preserve">
<value>Entity ID</value>
</data>
<data name="variables_apiHubTableHelp" xml:space="preserve">
<value>The name of the table to bind to. Leave empty if binding to a data set or entity.</value>
</data>
<data name="variables_apiHubTableNameLabel" xml:space="preserve">
<value>Table Name</value>
</data>
<data name="variables_appSettingsHelp" xml:space="preserve">
<value>The name of the app setting containing your storage account connection string.</value>
</data>
<data name="variables_parameterName" xml:space="preserve">
<value>The parameter name must be an alphanumeric string of any number of characters and cannot start with a number.</value>
</data>
<data name="variables_paramNameInputHelp" xml:space="preserve">
<value>The name of the parameter in code for the input binding to bind to.</value>
</data>
<data name="variables_paramNameOutputHelp" xml:space="preserve">
<value>The name of the parameter in code for the output binding to bind to.</value>
</data>
<data name="variables_selectConnection" xml:space="preserve">
<value>Click select to choose a connection</value>
</data>
<data name="variables_storageConnStringLabel" xml:space="preserve">
<value>Storage account connection</value>
</data>
<data name="variables_paramNameLabel" xml:space="preserve">
<value>Parameter Name</value>
</data>
<data name="temp_category_all" xml:space="preserve">
<value>All</value>
</data>
<data name="temp_category_api" xml:space="preserve">
<value>API & Webhooks</value>
</data>
<data name="temp_category_experimental" xml:space="preserve">
<value>Experimental</value>
</data>
<data name="temp_category_samples" xml:space="preserve">
<value>Samples</value>
</data>
<data name="blobOut_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="blobOut_name_label" xml:space="preserve">
<value>Blob parameter name</value>
</data>
<data name="queueTrigger_queueName_help" xml:space="preserve">
<value>Name of the queue from which the message will be read</value>
</data>
<data name="queueTrigger_name_label" xml:space="preserve">
<value>Message parameter name</value>
</data>
<data name="queueTrigger_queueName_errorText" xml:space="preserve">
<value>Queue name must start and end with a letter or number, and it can contain only lowercase letters, numbers, and the hyphen. The name must be 3 to 63 characters.</value>
</data>
<data name="queueTrigger_name_help" xml:space="preserve">
<value>The name used to identify this trigger in your code</value>
</data>
<data name="queueTrigger_queueName_label" xml:space="preserve">
<value>Queue name</value>
</data>
<data name="blobOut_path_help" xml:space="preserve">
<value>The path within your storage account to which the blob will be written.</value>
</data>
<data name="blobOut_path_errorText" xml:space="preserve">
<value>Your blob path must be a container name of 3 to 63 characters, followed by a blob name of 1 to 1,024 characters.The blob name can be any combination of characters and can contain a maximum of 254 path segments, which are separated by the forward slash(/).</value>
</data>
<data name="blobOut_path_label" xml:space="preserve">
<value>Path</value>
</data>
<data name="blobIn_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="blobIn_name_label" xml:space="preserve">
<value>Blob parameter name</value>
</data>
<data name="blobIn_path_help" xml:space="preserve">
<value>The path within your storage account from which the blob will be read.</value>
</data>
<data name="blobIn_path_label" xml:space="preserve">
<value>Path</value>
</data>
<data name="blobIn_patherrorText" xml:space="preserve">
<value>Your blob path must be a container name of 3 to 63 characters, followed by a blob name of 1 to 1,024 characters. The blob name can be any combination of characters and can contain a maximum of 254 path segments, which are separated by the forward slash (/).</value>
</data>
<data name="blobTrigger_name_label" xml:space="preserve">
<value>Blob parameter name</value>
</data>
<data name="blobTrigger_name_help" xml:space="preserve">
<value>The name used to identify this trigger in your code</value>
</data>
<data name="blobTrigger_path_label" xml:space="preserve">
<value>Path</value>
</data>
<data name="blobTrigger_path_help" xml:space="preserve">
<value>The path within your storage account that the trigger will monitor.</value>
</data>
<data name="blobTrigger_path_errorText" xml:space="preserve">
<value>Your blob path must be a container name of 3 to 63 characters, followed by a blob name of 1 to 1,024 characters. The blob name can be any combination of characters and can contain a maximum of 254 path segments, which are separated by the forward slash (/).</value>
</data>
<data name="apiHubFileIn_name_label" xml:space="preserve">
<value>File parameter name</value>
</data>
<data name="apiHubFileIn_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="apiHubFileIn_path_label" xml:space="preserve">
<value>Path</value>
</data>
<data name="apiHubFileIn_path_help" xml:space="preserve">
<value>The input file path</value>
</data>
<data name="apiHubFileIn_connection_label" xml:space="preserve">
<value>External File connection</value>
</data>
<data name="apiHubFileIn_connection_help" xml:space="preserve">
<value>The name of the app setting containing your External File connection string</value>
</data>
<data name="apiHubFileTrigger_name_label" xml:space="preserve">
<value>File parameter name</value>
</data>
<data name="apiHubFileTrigger_name_help" xml:space="preserve">
<value>The name used to identify this trigger in your code</value>
</data>
<data name="apiHubFileTrigger_path_label" xml:space="preserve">
<value>Path</value>
</data>
<data name="apiHubFileTrigger_path_help" xml:space="preserve">
<value>The path to trigger on. This path must exist.</value>
</data>
<data name="apiHubFileTrigger_connection_label" xml:space="preserve">
<value>External File connection</value>
</data>
<data name="apiHubFileTrigger_connection_help" xml:space="preserve">
<value>The name of the app setting containing your External File connection string</value>
</data>
<data name="apiHubTableIn_displayName" xml:space="preserve">
<value>External Table (Experimental)</value>
</data>
<data name="apiHubTableOut_displayName" xml:space="preserve">
<value>External Table (Experimental)</value>
</data>
<data name="httpTrigger_displayName" xml:space="preserve">
<value>HTTP</value>
</data>
<data name="httpTrigger_name_label" xml:space="preserve">
<value>Request parameter name</value>
</data>
<data name="httpTrigger_name_help" xml:space="preserve">
<value>The name used to identify this trigger in your code</value>
</data>
<data name="httpTrigger_authLevel_label" xml:space="preserve">
<value>Authorization level</value>
</data>
<data name="httpTrigger_methods_label" xml:space="preserve">
<value>Selected HTTP methods</value>
</data>
<data name="httpTrigger_methods_help" xml:space="preserve">
<value>These are the only methods to which this function will respond.</value>
</data>
<data name="httpTrigger_methodRule_label" xml:space="preserve">
<value>Allowed HTTP methods</value>
</data>
<data name="httpTrigger_route_label" xml:space="preserve">
<value>Route template</value>
</data>
<data name="httpTrigger_route_help" xml:space="preserve">
<value>The route template setting allows you to change the URI that triggers this function. The values should be a relative path. Path segments may be treated as parameters by surrounding them with curly braces. For example: customer/{customerId}</value>
</data>
<data name="httpTrigger_methodRule_help" xml:space="preserve">
<value>HttpTrigger can respond to any HTTP method. If you wish to restrict support to specific methods, choose the 'Selected methods' option.</value>
</data>
<data name="httpTrigger_mode_label" xml:space="preserve">
<value>Mode</value>
</data>
<data name="httpTrigger_mode_help" xml:space="preserve">
<value>The mode of the trigger. "Standard" means that the request will be standard HTTP with no additional semantics. "Webhook" means that the request will be processed according to a specified webhook type.</value>
</data>
<data name="apiHubFileIn_displayName" xml:space="preserve">
<value>External File (Preview)</value>
</data>
<data name="apiHubFileTrigger_displayName" xml:space="preserve">
<value>External File (Preview)</value>
</data>
<data name="blobIn_displayName" xml:space="preserve">
<value>Azure Blob Storage</value>
</data>
<data name="blobOut_displayName" xml:space="preserve">
<value>Azure Blob Storage</value>
</data>
<data name="blobTrigger_displayName" xml:space="preserve">
<value>Azure Blob Storage</value>
</data>
<data name="documentDBIn_collectionName_help" xml:space="preserve">
<value>Database collection where data will be read.</value>
</data>
<data name="documentDBIn_collectionName_label" xml:space="preserve">
<value>Collection Name</value>
</data>
<data name="documentDBIn_connection_help" xml:space="preserve">
<value>The name of the app setting containing your Cosmos DB connection string</value>
</data>
<data name="documentDBIn_connection_label" xml:space="preserve">
<value>Cosmos DB account connection</value>
</data>
<data name="documentDBIn_databaseName_help" xml:space="preserve">
<value>Cosmos DB database where data will be read.</value>
</data>
<data name="documentDBIn_databaseName_label" xml:space="preserve">
<value>Database name</value>
</data>
<data name="documentDBIn_displayName" xml:space="preserve">
<value>Azure Cosmos DB</value>
</data>
<data name="documentDBIn_id_help" xml:space="preserve">
<value>The ID of the document that will be read. If neither a SQL query nor an ID are specified, all documents in the collection are returned.</value>
</data>
<data name="documentDBIn_id_label" xml:space="preserve">
<value>Document ID (optional)</value>
</data>
<data name="documentDBIn_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="documentDBIn_name_label" xml:space="preserve">
<value>Document parameter name</value>
</data>
<data name="documentDBOut_collectionName_help" xml:space="preserve">
<value>Database collection where data will be written.</value>
</data>
<data name="documentDBOut_collectionName_label" xml:space="preserve">
<value>Collection Name</value>
</data>
<data name="documentDBOut_connection_help" xml:space="preserve">
<value>The name of the app setting containing your Cosmos DB connection string</value>
</data>
<data name="documentDBOut_connection_label" xml:space="preserve">
<value>Cosmos DB account connection</value>
</data>
<data name="documentDBOut_createIfNotExists_help" xml:space="preserve">
<value>If true, creates the Cosmos DB database and collection.</value>
</data>
<data name="documentDBOut_createIfNotExists_label" xml:space="preserve">
<value>If true, creates the Cosmos DB database and collection</value>
</data>
<data name="documentDBOut_databaseName_help" xml:space="preserve">
<value>The Cosmos DB database where data will be written.</value>
</data>
<data name="documentDBOut_databaseName_label" xml:space="preserve">
<value>Database name</value>
</data>
<data name="documentDBOut_displayName" xml:space="preserve">
<value>Azure Cosmos DB</value>
</data>
<data name="documentDBOut_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="documentDBOut_name_label" xml:space="preserve">
<value>Document parameter name</value>
</data>
<data name="httpOut_displayName" xml:space="preserve">
<value>HTTP</value>
</data>
<data name="httpOut_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="httpOut_name_label" xml:space="preserve">
<value>Response parameter name</value>
</data>
<data name="httpTrigger_authLevel_help" xml:space="preserve">
<value>Authorization level controls whether the function requires an API key and which key to use; Function uses a function key; Admin uses your master key. The function and master keys are found in the 'keys' management panel on the portal, when your function is selected. For user-based authentication, go to Function App Settings.</value>
</data>
<data name="manualTrigger_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="manualTrigger_name_label" xml:space="preserve">
<value>Parameter name</value>
</data>
<data name="mobileTableIn_apiKey_help" xml:space="preserve">
<value>The app setting name that specifies the API Key for your Mobile App. <a target='_blank' href='http:go.microsoft.com/fwlink/?LinkId=780568'>More information</a>.</value>
</data>
<data name="mobileTableIn_apiKey_label" xml:space="preserve">
<value>API key lookup (optional)</value>
</data>
<data name="mobileTableIn_connection_help" xml:space="preserve">
<value>The name of the app setting containing the URL of your Mobile App</value>
</data>
<data name="mobileTableIn_connection_label" xml:space="preserve">
<value>Mobile App URL lookup</value>
</data>
<data name="mobileTableIn_displayName" xml:space="preserve">
<value>Azure Mobile Tables</value>
</data>
<data name="mobileTableIn_id_help" xml:space="preserve">
<value>The id for the record to retrieve.</value>
</data>
<data name="mobileTableIn_id_label" xml:space="preserve">
<value>Record ID</value>
</data>
<data name="mobileTableIn_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="mobileTableIn_name_label" xml:space="preserve">
<value>Record parameter name</value>
</data>
<data name="mobileTableIn_tableName_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="mobileTableIn_tableName_label" xml:space="preserve">
<value>Table name</value>
</data>
<data name="mobileTableOut_apiKey_help" xml:space="preserve">
<value>The app setting name that specifies the API Key for your Mobile App. <a target='_blank' href='http:go.microsoft.com/fwlink/?LinkId=780568'>More information</a>.</value>
</data>
<data name="mobileTableOut_apiKey_label" xml:space="preserve">
<value>API key lookup (optional)</value>
</data>
<data name="mobileTableOut_connection_help" xml:space="preserve">
<value>The name of the app setting containing the URL of your Mobile App</value>
</data>
<data name="mobileTableOut_connection_label" xml:space="preserve">
<value>Mobile App URL lookup</value>
</data>
<data name="mobileTableOut_displayName" xml:space="preserve">
<value>Azure Mobile Tables</value>
</data>
<data name="mobileTableOut_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="mobileTableOut_name_label" xml:space="preserve">
<value>Record parameter name</value>
</data>
<data name="mobileTableOut_tableName_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="mobileTableOut_tableName_label" xml:space="preserve">
<value>Table name</value>
</data>
<data name="notificationHubOut_connection_help" xml:space="preserve">
<value>The name of the app setting containing the connection string to your Notification Hub namespace</value>
</data>
<data name="notificationHubOut_connection_label" xml:space="preserve">
<value>Notification Hubs namespace connection</value>
</data>
<data name="notificationHubOut_displayName" xml:space="preserve">
<value>Azure Notification Hubs</value>
</data>
<data name="notificationHubOut_hubName_help" xml:space="preserve">
<value>The Notification Hub to be used for sending push notifications.</value>
</data>
<data name="notificationHubOut_hubName_label" xml:space="preserve">
<value>Notification Hub name</value>
</data>
<data name="notificationHubOut_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="notificationHubOut_name_label" xml:space="preserve">
<value>Notification parameter name</value>
</data>
<data name="notificationHubOut_platform_help" xml:space="preserve">
<value>Choose platform to send native notifcations. Select Template to send template notification.</value>
</data>
<data name="notificationHubOut_platform_label" xml:space="preserve">
<value>Notification Platform</value>
</data>
<data name="notificationHubOut_tagExpression_help" xml:space="preserve">
<value>Tag expressions enable you to target specific sets of devices/registrations, when sending a push notification through notification hubs. Leave this blank to broadcast to all registered devices <a target='_blank' href='http:go.microsoft.com/fwlink/?LinkId=785094'>More information</a>.</value>
</data>
<data name="notificationHubOut_tagExpression_label" xml:space="preserve">
<value>Tag expression (optional)</value>
</data>
<data name="notificationHubOut_enableTestSend_help" xml:space="preserve">
<value>To get detailed status about the PNS errors encountered while sending the notification, set enableTestSend to true <a target='_blank' href='http:go.microsoft.com/fwlink/?LinkId=832692'>More information</a>.</value>
</data>
<data name="notificationHubOut_enableTestSend_label" xml:space="preserve">
<value>Enable Test Send (optional)</value>
</data>
<data name="rabbitMQTrigger_displayName" xml:space="preserve">
<value>RabbitMQ</value>
</data>
<data name="kafkaTrigger_displayName" xml:space="preserve">
<value>Kafka</value>
</data>
<data name="kafkaOutput_displayName" xml:space="preserve">
<value>Kafka Output</value>
</data>
<data name="queueTrigger_displayName" xml:space="preserve">
<value>Azure Queue Storage</value>
</data>
<data name="sendGrid_displayName" xml:space="preserve">
<value>SendGrid</value>
</data>
<data name="sendGrid_from_help" xml:space="preserve">
<value>The email address the message is sent from. Can be of the form '[email protected]' or 'Display Name <[email protected]>'. If not specified here, the value can be specified in code.</value>
</data>
<data name="sendGrid_from_label" xml:space="preserve">
<value>From address</value>
</data>
<data name="sendGrid_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="sendGrid_name_label" xml:space="preserve">
<value>Message parameter name</value>
</data>
<data name="sendGrid_subject_help" xml:space="preserve">
<value>Subject line to use for the message. If not provided here, the value can be specified in code.</value>
</data>
<data name="sendGrid_subject_label" xml:space="preserve">
<value>Message subject</value>
</data>
<data name="sendGrid_text_help" xml:space="preserve">
<value>Text body to use for the message. If not provided here, the value can be specified in code.</value>
</data>
<data name="sendGrid_text_label" xml:space="preserve">
<value>Message Text</value>
</data>
<data name="sendGrid_to_help" xml:space="preserve">
<value>Email address to which the message should be sent. Can be of the form '[email protected]' or 'Display Name <[email protected]>'. If not provided here, the value can be specified in code.</value>
</data>
<data name="sendGrid_to_label" xml:space="preserve">
<value>To address</value>
</data>
<data name="serviceBusOut_accessRights_help" xml:space="preserve">
<value>The access rights of the Service Bus connection string. Set to Send if you're using a connection string that doesn't have Manage permissions.</value>
</data>
<data name="serviceBusOut_accessRights_label" xml:space="preserve">
<value>Access rights</value>
</data>
<data name="serviceBusOut_connection_help" xml:space="preserve">
<value>The name of the app setting containing your Service Bus connection string. The connection string must have Send rights.</value>
</data>
<data name="serviceBusOut_connection_label" xml:space="preserve">
<value>Service Bus connection</value>
</data>
<data name="serviceBusOut_displayName" xml:space="preserve">
<value>Azure Service Bus</value>
</data>
<data name="serviceBusOut_messageType_help" xml:space="preserve">
<value>Type of Service Bus message, either Queues or Topics.</value>
</data>
<data name="serviceBusOut_messageType_label" xml:space="preserve">
<value>Message type</value>
</data>
<data name="serviceBusOut_messageType_queueName" xml:space="preserve">
<value>Service Bus Queue</value>
</data>
<data name="serviceBusOut_messageType_topicName" xml:space="preserve">
<value>Service Bus Topic</value>
</data>
<data name="serviceBusOut_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="serviceBusOut_name_label" xml:space="preserve">
<value>Message parameter name</value>
</data>
<data name="serviceBusOut_queueName_errorText" xml:space="preserve">
<value>Queue name must start and end with a letter or number, and it can contain only letters, numbers, the hyphen, the period, and the underscore. The name must be 1 to 50 characters.</value>
</data>
<data name="serviceBusOut_queueName_help" xml:space="preserve">
<value>The queue to which the message will be sent.</value>
</data>
<data name="serviceBusOut_queueName_label" xml:space="preserve">
<value>Queue name</value>
</data>
<data name="serviceBusOut_topicName_errorText" xml:space="preserve">
<value>Topic name must start and end with a letter or number, and it can contain only letters, numbers, the hyphen, the period, and the underscore. The name must be 1 to 50 characters.</value>
</data>
<data name="serviceBusOut_topicName_help" xml:space="preserve">
<value>Topic to which the message will be sent.</value>
</data>
<data name="serviceBusOut_topicName_label" xml:space="preserve">
<value>Topic name</value>
</data>
<data name="serviceBusTrigger_accessRights_help" xml:space="preserve">
<value>The access rights of the Service Bus connection string. Set to Send if you're using a connection string that doesn't have Manage permissions.</value>
</data>
<data name="serviceBusTrigger_accessRights_label" xml:space="preserve">
<value>Access rights</value>
</data>
<data name="serviceBusTrigger_connection_help" xml:space="preserve">
<value>The name of the app setting containing your Service Bus connection string. The connection string must have Listen rights.</value>
</data>
<data name="serviceBusTrigger_connection_label" xml:space="preserve">
<value>Service Bus connection</value>
</data>
<data name="serviceBusTrigger_displayName" xml:space="preserve">
<value>Azure Service Bus</value>
</data>
<data name="serviceBusTrigger_messageType_help" xml:space="preserve">
<value>Type of Service Bus message, either Queues or Topics.</value>
</data>
<data name="serviceBusTrigger_messageType_label" xml:space="preserve">
<value>Message type</value>
</data>
<data name="serviceBusTrigger_messageType_queueName" xml:space="preserve">
<value>Service Bus Queue</value>
</data>
<data name="serviceBusTrigger_messageType_topicName" xml:space="preserve">
<value>Service Bus Topic</value>
</data>
<data name="serviceBusTrigger_name_help" xml:space="preserve">
<value>The name used to identify this trigger in your code</value>
</data>
<data name="serviceBusTrigger_name_label" xml:space="preserve">
<value>Message parameter name</value>
</data>
<data name="serviceBusTrigger_queueName_errorText" xml:space="preserve">
<value>Queue name must start and end with a letter or number, and it can contain only letters, numbers, the hyphen, the period, and the underscore. The name must be 1 to 50 characters.</value>
</data>
<data name="serviceBusTrigger_queueName_help" xml:space="preserve">
<value>The queue from which the message will be read.</value>
</data>
<data name="serviceBusTrigger_queueName_label" xml:space="preserve">
<value>Queue name</value>
</data>
<data name="serviceBusTrigger_subscriptionName_errorText" xml:space="preserve">
<value>Subscription name must start and end with a letter or number, and it can contain only letters, numbers, the hyphen, the period, and the underscore. The name must be 1 to 50 characters.</value>
</data>
<data name="serviceBusTrigger_subscriptionName_help" xml:space="preserve">
<value>Subscription name within the topic to bind to.</value>
</data>
<data name="serviceBusTrigger_subscriptionName_label" xml:space="preserve">
<value>Subscription name</value>
</data>
<data name="serviceBusTrigger_topicName_errorText" xml:space="preserve">
<value>Topic name must start and end with a letter or number, and it can contain only letters, numbers, the hyphen, the period, and the underscore. The name must be 1 to 50 characters.</value>
</data>
<data name="serviceBusTrigger_topicName_help" xml:space="preserve">
<value>The name of the topic from which the message will be read.</value>
</data>
<data name="serviceBusTrigger_topicName_label" xml:space="preserve">
<value>Topic name</value>
</data>
<data name="tableIn_displayName" xml:space="preserve">
<value>Azure Table Storage</value>
</data>
<data name="tableIn_filter_help" xml:space="preserve">
<value>Optional query expression used to filter the results of the table query.</value>
</data>
<data name="tableIn_filter_label" xml:space="preserve">
<value>Query filter (optional)</value>
</data>
<data name="tableIn_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="tableIn_name_label" xml:space="preserve">
<value>Table parameter name</value>
</data>
<data name="tableIn_partitionKey_help" xml:space="preserve">
<value>The name of the partition key column of the table. Records with matching Partition key and Row key will be returned. If partition key is provided, row key must also be provided.</value>
</data>
<data name="tableIn_partitionKey_label" xml:space="preserve">
<value>Partition key (optional)</value>
</data>
<data name="tableIn_rowKey_help" xml:space="preserve">
<value>The name of the partition key column of the table. Records with matching Partition key and Row key will be returned. If partition key is provided, row key must also be provided.</value>
</data>
<data name="tableIn_rowKey_label" xml:space="preserve">
<value>Row key (optional)</value>
</data>
<data name="tableIn_tableName_errorText" xml:space="preserve">
<value>Table name must be an alphanumeric string of 3 to 63 characters and cannot start with a number.</value>
</data>
<data name="tableIn_tableName_help" xml:space="preserve">
<value>Table name in storage account from which data will be read.</value>
</data>
<data name="tableIn_tableName_label" xml:space="preserve">
<value>Table name</value>
</data>
<data name="tableIn_take_help" xml:space="preserve">
<value>Integer value for maxium number of records to be returned. You may receive fewer records than this value, depending on table contents and filters. This setting is not applicable for C# functions.</value>
</data>
<data name="tableIn_take_label" xml:space="preserve">
<value>Maximum number of records to read (optional)</value>
</data>
<data name="tableout_displayName" xml:space="preserve">
<value>Azure Table Storage</value>
</data>
<data name="tableout_name_help" xml:space="preserve">
<value>The name used to identify this binding in your code</value>
</data>
<data name="tableout_name_label" xml:space="preserve">
<value>Table parameter name</value>
</data>
<data name="table_tableName_errorText" xml:space="preserve">
<value>Table name must be an alphanumeric string of 3 to 63 characters. It can’t start with a number.</value>
</data>
<data name="table_tableName_help" xml:space="preserve">
<value>Table name in storage account where data will be written.</value>
</data>
<data name="table_tableName_label" xml:space="preserve">
<value>Table name</value>
</data>
<data name="BlobTrigger_description" xml:space="preserve">
<value>A function that will be run whenever a blob is added to a specified container</value>
</data>
<data name="CSharp_description" xml:space="preserve">
<value>A C# function that will be run whenever it receives a GitHub webhook request</value>
</data>
<data name="EmptyBash_description" xml:space="preserve">
<value>An empty Bash function without triggers, inputs, or outputs</value>
</data>
<data name="EmptyBatch_description" xml:space="preserve">
<value>An empty Batch function without triggers, inputs, or outputs</value>
</data>
<data name="EmptyCSharp_description" xml:space="preserve">
<value>An empty C# function without triggers, inputs, or outputs</value>
</data>
<data name="EmptyFSharp_description" xml:space="preserve">
<value>An empty F# function without triggers, inputs, or outputs</value>
</data>
<data name="EmptyNodeJS_description" xml:space="preserve">
<value>An empty JavaScript function without triggers, inputs, or outputs</value>
</data>
<data name="EmptyPHP_description" xml:space="preserve">
<value>An empty PHP function without triggers, inputs, or outputs</value>
</data>
<data name="EmptyPowerShell_description" xml:space="preserve">
<value>An empty PowerShell function without triggers, inputs, or outputs</value>
</data>
<data name="EmptyPython_description" xml:space="preserve">
<value>An empty Python function without triggers, inputs, or outputs</value>
</data>
<data name="EventHubTrigger_description" xml:space="preserve">
<value>A function that will be run whenever an event hub receives a new event</value>
</data>
<data name="FaceLocatorCSharp_description" xml:space="preserve">
<value>A C# function that processes images and outputs the bounding rectangle of faces</value>
</data>
<data name="FaceLocatorFSharp_description" xml:space="preserve">
<value>An F# function that processes images and outputs the bounding rectangle of faces</value>
</data>
<data name="FaceLocatorNodeJS_description" xml:space="preserve">
<value>A JavaScript function that processes images and outputs the bounding rectangle of faces</value>
</data>
<data name="GenericWebhookCSharp_description" xml:space="preserve">
<value>A C# function that will be run whenever it receives a webhook request</value>
</data>
<data name="GenericWebhookFSharp_description" xml:space="preserve">
<value>An F# function that will be run whenever it receives a webhook request</value>
</data>
<data name="GenericWebhookNodeJS_description" xml:space="preserve">
<value>A JavaScript function that will be run whenever it receives a webhook request</value>
</data>
<data name="GitHubCommenterNodeJS_description" xml:space="preserve">
<value>A JavaScript function that will be run whenever it receives a GitHub webhook request</value>
</data>
<data name="GitHubCommenterFSharp_description" xml:space="preserve">
<value>An F# function that will be run whenever it receives a GitHub webhook request</value>
</data>
<data name="GithubWebhookCSharp_description" xml:space="preserve">
<value>A C# function that will be run whenever it receives a GitHub webhook request</value>
</data>
<data name="GithubWebhookFSharp_description" xml:space="preserve">
<value>An F# function that will be run whenever it receives a GitHub webhook request</value>
</data>
<data name="GithubWebhookNodeJS_description" xml:space="preserve">
<value>A JavaScript function that will be run whenever it receives a GitHub webhook request</value>
</data>
<data name="HttpGETCRUDC_description" xml:space="preserve">
<value>A C# function that fetches entities from a Storage Table when it receives an HTTP request</value>
</data>
<data name="HttpGETCRUDFSharp_description" xml:space="preserve">
<value>An F# function that fetches entities from a Storage Table when it receives an HTTP request</value>
</data>
<data name="HttpGETCRUDNodeJS_description" xml:space="preserve">
<value>A JavaScript function that fetches entities from a Storage Table when it receives an HTTP request</value>
</data>
<data name="HttpGETCRUDPHP_description" xml:space="preserve">
<value>(Experimental) A PHP function that fetches entities from a Storage Table when it receives an HTTP request</value>
</data>
<data name="HttpPOSTCRUDCSharp_description" xml:space="preserve">
<value>A C# function that adds entities to a Storage Table when it receives an HTTP request</value>
</data>
<data name="HttpPOSTCRUDFSharp_description" xml:space="preserve">
<value>An F# function that adds entities to a Storage Table when it receives an HTTP request</value>
</data>
<data name="HttpPOSTCRUDNodeJS_description" xml:space="preserve">
<value>A JavaScript function that adds entities to a Storage Table when it receives an HTTP request</value>
</data>
<data name="HttpPUTCRUDC_description" xml:space="preserve">
<value>A C# function that updates entity in a Storage Table when it receives an HTTP request</value>
</data>
<data name="HttpPUTCRUDFSharp_description" xml:space="preserve">
<value>An F# function that updates entity in a Storage Table when it receives an HTTP request</value>
</data>
<data name="HttpTrigger_description" xml:space="preserve">
<value>A function that will be run whenever it receives an HTTP request, responding based on data in the body or query string</value>
</data>
<data name="ImageResizerCSharp_description" xml:space="preserve">
<value>A C# function that creates resized images whenever a blob is added to a specified container</value>
</data>
<data name="ImageResizerFSharp_description" xml:space="preserve">
<value>An F# function that creates resized images whenever a blob is added to a specified container</value>
</data>
<data name="ManualTriggerCSharp_description" xml:space="preserve">
<value>A C# function that is triggered manually via the portal "Run" button</value>
</data>
<data name="ManualTriggerFSharp_description" xml:space="preserve">
<value>An F# function that is triggered manually via the portal "Run" button</value>
</data>
<data name="ManualTriggerNodeJS_description" xml:space="preserve">
<value>A JavaScript function that is triggered manually via the portal "Run" button</value>
</data>
<data name="QueueTrigger_description" xml:space="preserve">
<value>A function that will be run whenever a message is added to a specified Azure Storage queue</value>
</data>
<data name="RabbitMQTrigger_description" xml:space="preserve">
<value>A function that will be run whenever a message is added to a specified RabbitMQ queue</value>
</data>
<data name="KafkaTrigger_description" xml:space="preserve">
<value>A function that will be run whenever a message is added to a specified Kafka topic</value>
</data>
<data name="KafkaOutput_description" xml:space="preserve">
<value>A function that will send messages to a specified Kafka topic</value>
</data>
<data name="SaasFileTriggerBatch_description" xml:space="preserve">
<value>(Experimental) A Batch function that will be run whenever a file is added to a External File provider.</value>
</data>
<data name="SaasFileTriggerCSharp_description" xml:space="preserve">
<value>(Preview) A C# function that will be run whenever a file is added to a External File provider.</value>
</data>
<data name="SaasFileTriggerFSharp_description" xml:space="preserve">
<value>(Preview) An F# function that will be run whenever a file is added to a External File provider.</value>
</data>
<data name="SaasFileTriggerNodeJS_description" xml:space="preserve">
<value>(Preview) A JavaScript function that will be run whenever a file is added to a External File provider.</value>
</data>
<data name="SaasFileTokenNodeJS_description" xml:space="preserve">
<value>(Preview) A JavaScript function that will be run whenever a file is added to a External File provider.</value>
</data>
<data name="SaasTableCSharp_description" xml:space="preserve">
<value>(Experimental) A C# function that fetches entities from a External Table when it receives an HTTP request.</value>
</data>
<data name="SaasTableFSharp_description" xml:space="preserve">
<value>(Experimental) An F# function that fetches entities from a External Table when it receives an HTTP request.</value>
</data>
<data name="SasTokenFSharp_description" xml:space="preserve">
<value>An F# function that generates a SAS token for Azure Storage for a given container and blob name.</value>
</data>
<data name="SendGrid_description" xml:space="preserve">
<value>A function that sends a confirmation e-mail when a new item is added to a particular queue</value>
</data>
<data name="ServiceBusQueueTriggerCSharp_description" xml:space="preserve">
<value>A C# function that will be run whenever a message is added to a specified Service Bus queue</value>
</data>
<data name="ServiceBusQueueTriggerFSharp_description" xml:space="preserve">
<value>An F# function that will be run whenever a message is added to a specified Service Bus queue</value>
</data>
<data name="ServiceBusQueueTriggerNodeJS_description" xml:space="preserve">
<value>A JavaScript function that will be run whenever a message is added to a specified Service Bus queue</value>
</data>
<data name="ServiceBusTopicTriggerFSharp_description" xml:space="preserve">
<value>An F# function that will be run whenever a message is added to the specified Service Bus topic</value>
</data>
<data name="ServiceBusTopicTriggerNodeJS_description" xml:space="preserve">
<value>A JavaScript function that will be run whenever a message is added to the specified Service Bus topic</value>
</data>
<data name="TimerTrigger_description" xml:space="preserve">
<value>A function that will be run on a specified schedule</value>
</data>
<data name="TimerTriggerExcelOutlook_description" xml:space="preserve">
<value>Read two Excel tables, send emails based on the data, and then update an Excel table.</value>
</data>
<data name="timerTrigger_schedule_errorText" xml:space="preserve">
<value>Invalid Cron Expression. Please consult the <a target='_blank' href='https://azure.microsoft.com/en-us/documentation/articles/functions-bindings-timer/'>documentation</a> to learn more.</value>