-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathmessages_en.json
3850 lines (3850 loc) · 179 KB
/
messages_en.json
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
{
"locale": "en",
"datatable": {
"language": {
"decimal": "",
"emptyTable": "No data available in table",
"info": "Showing _START_ to _END_ of _TOTAL_ entries",
"infoEmpty": "Showing 0 to 0 of 0 entries",
"infoFiltered": "(filtered from _MAX_ total entries)",
"infoPostFix": "",
"thousands": ",",
"lengthMenu": "Show _MENU_ entries",
"loadingRecords": "Loading...",
"processing": "Processing...",
"search": "Filter:",
"searchPlaceholder": "Search...",
"zeroRecords": "No matching records found",
"all": "All",
"paginate": {
"first": "First",
"last": "Last",
"next": "Next",
"previous": "Previous"
},
"buttons": {
"colvis": "Show columns",
"copy": "Copy",
"resetColumns": "Reset Columns",
"showAllColumns": "Show All Columns",
"changeColumns": "Change Columns"
},
"aria": {
"sortAscending": ": activate to sort column ascending",
"sortDescending": ": activate to sort column descending"
}
}
},
"format": {
"number": "# ###.##",
"date": {
"shortdate": "MM/dd",
"mediumdate": "MM/dd/YYYY",
"datetime": "MM/DD/YYYY h:mm A",
"datetimeWithSeconds": "MM/DD/YYYY h:mm:ss A",
"minutes": "min",
"seconds": "sec"
}
},
"executionStatus": {
"values": {
"FAILED": "FAILED",
"COMPLETED": "COMPLETED",
"STOPPED": "STOPPED",
"CANCELED": "CANCELED",
"PENDING": "PENDING",
"RUNNING": "RUNNING",
"STARTED": "STARTED"
}
},
"common": {
"accessDenied": "Access denied",
"add": "Add",
"and": "and",
"anonymous": "anonymous",
"cancel": "Cancel",
"close": "Close",
"configureAccess": "Configure access",
"configureAccessModal": {
"addWriteAccessToRole": "Add write access to role:",
"loadingAccessList": "Loading access list...",
"revoke": "Revoke",
"rolesWithWriteAccess": "Roles with write access:"
},
"copiedToClipboard": "Copied To Clipboard!",
"copy": "Copy",
"copyOf": "Copy of <%=name%>",
"copyToClipboard": "Copy to clipboard",
"createACopy": "Create a copy",
"create": "Create",
"days": "days",
"daysAbbr": "d",
"delete": "Delete",
"deselectAll": "Deselect All",
"download": "Download",
"downloading": "Downloading...",
"export": "Export",
"import": "Import",
"loading": "Loading",
"loadingWithDots": "Loading...",
"min": "min",
"noChangesToPersist": "No changes to persist",
"notEnoughPermissions": "Not enough permissions",
"or": "or",
"preview": "Preview",
"progress": "Progress",
"refresh": "Refresh",
"save": "Save",
"search": "Search",
"select": "Select",
"selectAll": "Select All",
"set": "Set",
"unsaved": "(unsaved)",
"unspecified": "UNSPECIFIED!",
"menu": "Menu",
"noData": "No data",
"readOnly": "(Read only)",
"tags": "Tags",
"backToCurrent": "Back to current version",
"saveAsCurrentVersion": "Save as current version",
"unsavedWarning": "Unsaved changes will be lost. Proceed?",
"savePreviewWarning": "Save as current version?",
"conceptSet": "Concept Set",
"cohort": "Cohort",
"characterization": "Characterization",
"pathway": "Pathway Analysis",
"incidenceRate": "Incidence Rate",
"ple": "Population Level Effect Estimation",
"plp": "Patient Level Prediction",
"reusable": "Reusable"
},
"commonErrors": {
"noSources": "The current WebAPI has no sources defined.<br/>Please add one or more on <a href=\"#/configure\">configuration</a> page.",
"webapiConnectError": "Unable to connect to an instance of the WebAPI.<br/>Please contact your administrator to resolve this issue.",
"browserWarning": "Note that only Chrome browser newer than v.63 is officially supported",
"initFailed": "Application initialization failed"
},
"navigation": {
"characterizations": "Characterizations",
"cohortdefinitions": "Cohort Definitions",
"conceptsets": "Concept Sets",
"configuration": "Configuration",
"datasources": "Data Sources",
"estimation": "Estimation",
"feedback": "Feedback",
"home": "Home",
"incidencerate": "Incidence Rates",
"jobs": "Jobs",
"pathways": "Cohort Pathways",
"prediction": "Prediction",
"profiles": "Profiles",
"search": "Search",
"tagging": "Tagging"
},
"options": {
"after": "After",
"all": "all",
"allDrugSources": "All drug sources",
"allEvents": "all events",
"allVisitTypes": "All visit types",
"allVisits": "All visits",
"any": "any",
"atLeast": "at least",
"atMost": "at most",
"before": "Before",
"between": "between",
"contains": "containing",
"drugSource": "Drug Source",
"earliestEvents": "earliest event",
"endDate": "end date",
"endOfContinuousDrugExposure": "end of a continuous drug exposure",
"endOfContinuousObservation": "end of continuous observation",
"endsWith": "ending with",
"eventEnds": "event ends",
"eventStarts": "event starts",
"exactly": "exactly",
"fixedDurationRelativeToInitialEvent": "fixed duration relative to initial event",
"indexEndDate": "index end date",
"indexStartDate": "index start date",
"isAnyOf": "is any of",
"isNotAnyOf": "is not any of",
"latestEvents": "latest event",
"mm": "Monthly",
"no": "No",
"notBetween": "not between",
"notContains": "not containing",
"notEndsWith": "not ending with",
"notStartsWith": "not starting with",
"periodType": "Period type",
"periods": "Periods",
"qq": "Quarterly",
"reports": "Reports",
"rollupUtilizationDrug": "Drugs",
"rollupUtilizationVisit": "Visits",
"rollups": "Rollups",
"startDate": "start date",
"startsWith": "starting with",
"ww": "Weekly",
"yes": "Yes",
"yy": "Yearly",
"yesDescendant": "Yes (Descendant)",
"yesExact": "Yes (Exact)",
"yesParent": "Yes (Parent)",
"included": "Included",
"excluded": "Excluded",
"none": "None",
"true": "true",
"false": "false",
"balanced": "Balanced",
"time": "Time",
"person": "Person",
"reporting": {
"personsAndExposureDuringBaselinePeriod": "Persons and Exposure during baseline period",
"personsAndExposureDuringCohortPeriod": "Persons and Exposure during cohort period",
"visitsDuringBaselinePeriod": "Visits during baseline period",
"visitDatesDuringBaselinePeriod": "Visit-dates during baseline period",
"careSiteVisitDatesDuringBaselinePeriod": "Care-site-visit-dates during baseline period",
"visitsDuringCohortPeriod": "Visits during cohort period",
"visitDatesDuringCohortPeriod": "Visit-dates during cohort period",
"careSiteVisitDatesDuringCohortPeriod": "Care-site-visit-dates during cohort period",
"drugUtilizationDuringBaselinePeriod": "Drug Utilization during baseline period",
"drugUtilizationDuringCohortPeriod": "Drug Utilization during cohort period"
}
},
"components": {
"authorship": {
"createdLabel": "created by <%=createdBy%> on <%=createdDate%>",
"modifiedLabel": "modified by <%=modifiedBy%> on <%=modifiedDate%>"
},
"accessDenied": {
"forbidden": {
"message1": "You do not have access to this feature.",
"message2": "For more information on how to get access please contact the System Administrator."
},
"unauthenticated": {
"login": "log in",
"message": "This feature is protected. Please"
}
},
"analysisExecution": {
"title": "Executions",
"buttons": {
"allExecutions": "All executions (<%=submissions%>)",
"generate": "Generate",
"generating": "Generating",
"pending": "Pending",
"latestResult": "View latest result",
"downloadLatestResult": "Download latest result"
},
"designModal": {
"title": "Design"
},
"exitModal": {
"title": "Execution Exit Message"
},
"messages": {
"permissions": "Not enough permissions to view results"
},
"datatable": {
"viewReports": "View reports",
"sameAsNow": "(same as now)"
},
"noCompletedExecutionsForDataSource": "There is no completed executions for the data source yet.",
"stopGenerationConfirmation": "Do you want to stop generation?"
},
"atlasCohortEditor": {
"enterCohortPlaceholder": "Enter a cohort definition description here",
"importConceptSet": "Import Concept Set From Repository..."
},
"expressionCartoonBindings": {
"primaryCriteria": "Primary Criteria",
"any": "any",
"one": "one",
"s": "s",
"those": "those",
"the": "the",
"paramOf": "<%=param%> of",
"atParamOf": "At <%=param%> of",
"or": "or",
"and": "and",
"anyParam": "any <%=param%>",
"domain": "domain",
"all": "all",
"distinct": "distinct",
"before": "before",
"after": "after",
"noCriteriaGroup": "No criteria group",
"additionalCriteria": "Additional criteria",
"noAdditionalCriteria": "No additional criteria",
"inclusionRules": "Inclusion rules",
"noInclusionRules": "No inclusion rules",
"condition": "condition",
"drug": "drug",
"drugEra": "drug era",
"conditionEra": "condition era",
"doseEra": "dose era",
"procedure": "procedure",
"observation": "observation",
"device": "device",
"measurement": "measurement",
"specimen": "specimen",
"death": "death",
"observationPeriod": "observation period",
"visit": "visit",
"era": "Era",
"daysSupply": "Days supply",
"visitCapital": "Visit",
"expressionCartoonBindingsText_1": "the following primary criterion",
"expressionCartoonBindingsText_2": "<%=oneOrAny%> of the following <%=pcListLength%> primary criteria",
"expressionCartoonBindingsText_3": "Results will be generated for every person event matching <%=pcCritMatch%>. Final results will be limited to <%=thoseOrthe%> events matching any additional criteria and inclusion rules.",
"expressionCartoonBindingsText_4": "Results will be generated for the <%=pLimitTypeToLowerCase%> single event matching <%=pcCritMatch%>.",
"expressionCartoonBindingsText_5": "Result index date<%=pcPlural%> will be the start date<%=pcPlural%> of the matching primary criteria event<%=pcPlural%>.",
"expressionCartoonBindingsText_6": "Restrict to people having events matching <%=critgroupTypeToLowerCase%> of the following criteria.",
"expressionCartoonBindingsText_7": "Events must start within bracketed period",
"expressionCartoonBindingsText_8": "relative to index date. Lines and arrows represent required duration of these events.",
"expressionCartoonBindingsText_9": "with <%=type%> <%=count%> using <%=distinctOrAll%> occurrences",
"expressionCartoonBindingsText_10": "occurring between <%=startDays%> days <%=beforeArAfterStart%> and <%=endDays%> days <%=beforeArAfterEnd%> index"
},
"cohortExpressionEditor": {
"addCensoringEvent": "Add Censoring Event...",
"addInitialEvent": "Add Initial Event...",
"addTrimmingOptions": "add trimming options...",
"censoringEvents": "Censoring Events:",
"cohortEntryEvents": "Cohort Entry Events",
"cohortEntryEventsText_1": "Events are recorded time-stamped observations for the persons, such as drug exposures, conditions, procedures, measurements and visits. All events have a start date and end date, though some events may have a start date and end date with the same value (such as procedures or measurements).",
"cohortEntryEventsText_2": "Events having any of the following criteria:",
"cohortEntryEventsText_3": "with continuous observation of at least",
"cohortEntryEventsText_4": "days before and",
"cohortEntryEventsText_5": "days after event index date",
"cohortEntryEventsText_6": "Limit initial events to:",
"cohortEntryEventsText_7": "per person.",
"cohortErasText_1": "Specify era collapse gap size:",
"cohortErasText_2": "Left censor cohort start dates to",
"cohortErasText_2_1": " ",
"cohortErasText_3": "Right censor cohort end dates to",
"cohortErasText_3_1": " ",
"cohortErasTitle": "Cohort Eras",
"cohortExit": "Cohort Exit",
"cohortExitText_1": "For all qualifying events, there must be a specification of when each event ends presence in the cohort. By default, an event ends at the end of the observation period containing the qualifying initial event, but event end dates may be also be specified:",
"cohortExitText_2": "The qualifying initial event can be set to end after a fixed time period relative to the event start or end date, or the end date can be based on the end of a continuous exposure to a set of drugs identified by a concept set.",
"cohortExitText_3": "Criteria can be used to signal the end of an event. If a censoring event is identified between a qualifying event's start and end date, the date of the censoring event will be used as the exit date.",
"cohortExitText_4": "Exit Cohort based on the following criteria:",
"cohortExitText_5": "No censoring events selected.",
"cohortExitTitle": "Cohort Exit",
"cohortExitTitle_1": "Event End Dates",
"cohortExitTitle_2": "Censoring Events",
"copyOf": "Copy of: ",
"days": "days",
"deleteCriteria": "Delete Criteria",
"eventPersistence": "Event Persistence:",
"inclusionCriteria": "Inclusion Criteria",
"inclusionCriteriaText": "The qualifying cohort will be defined as all persons who have an initial event, satisfy the initial event inclusion criteria, and fulfill all additional qualifying inclusion criteria. Each qualifying inclusion criteria will be evaluated to determine the impact of the criteria on the attrition of persons from the initial cohort.",
"inclusionCriteriaText_1": "Limit qualifying events to:",
"inclusionCriteriaTitle": "Inclusion Criteria",
"indexMessage": "The index date refers to the event from the Cohort Entry criteria.",
"newInclusionCriteria": "New inclusion criteria",
"noCensoring": "No Censoring",
"removeRestriction": "Remove initial event restriction",
"restrictInitialEventsButton": "Restrict initial events",
"restrictInitialEventsTitle": "Restrict intial events to:",
"unnamedCriteria": "Unnamed Criteria"
},
"cohortExpressionViewer": {
"cohortExpressionViewerText_1": "People having any of the following:",
"cohortExpressionViewerText_10": "Limit qualifying cohort to:",
"cohortExpressionViewerText_11": "Censoring Events:",
"cohortExpressionViewerText_12": "Exit Cohort based on the following:",
"cohortExpressionViewerText_13": "Cohort Collapse Strategy:",
"cohortExpressionViewerText_14": "Collapse cohort by era with a gap size of ",
"cohortExpressionViewerText_15": "Inclusion Criteria #(<%=index%>): <%=name%>",
"cohortExpressionViewerText_2": "with continuous observation of at least",
"cohortExpressionViewerText_3": "days prior and ",
"cohortExpressionViewerText_4": "days after event index date,",
"cohortExpressionViewerText_5": "and limit initial events to: ",
"cohortExpressionViewerText_6": "per person.",
"cohortExpressionViewerText_7": "For people matching the Primary Events, include:",
"cohortExpressionViewerText_8": "Limit cohort of initial events to:",
"cohortExpressionViewerText_9": "Inclusion Rules",
"initialEventCohort": "Initial Event Cohort"
},
"conceptPicker": {
"addAndClose": "Add And Close",
"addButton": "Add",
"addSelected": "Add Selected",
"close": "Close",
"done": "Done",
"importButton": "Import",
"importConcepts": "Import Concepts",
"search": "Search",
"selectConcept": "Select Concept",
"waitMessage": "Please wait while the Vocabulary Provider initalizes..."
},
"conceptSet": {
"exportAllToCSV": "Export All Concept Sets To CSV",
"exportingToCsv": "Exporting All Concept Sets To CSV",
"importingConceptSet": "Importing Concept Set",
"conceptSetExpression": "Concept Set Expression",
"includedConcepts": "Included Concepts",
"includedSourceCodes": "Included Source Codes",
"deleteConfirm": "Do you want to delete <%=name%>?",
"conceptSetExpressionJSON": "Concept Set Expression JSON",
"clickToClear": "click to clear",
"closeConceptSet": "Close Concept Set",
"conceptIdentifiers": "Concept Identifiers",
"conceptIdentifierList": "Concept Identifier List",
"includedConceptIdentifierList": "Included Concept Identifier List",
"loadingForExport": "Loading for export...",
"exportToCsv": "Export To CSV",
"sourceCodes": "Source Codes",
"conceptSet": "Concept Set",
"repository": "Repository",
"appendConceptSetExpression": "Append Concept Set Expression",
"overwriteConceptSetExpression": "Overwrite Concept Set Expression",
"enterConceptIdentifiers": "Enter Concept Identifiers",
"name": "Name:",
"addConcepts": "Add Concepts",
"removeSelected": "Remove Selected",
"deleteConceptSet": "Delete Concept Set",
"copyToConceptSetRepository": "Copy To Concept Set Repository",
"notEnoughPermissions": "Not enough permissions to <%=action%> Concept Set",
"actionEdit": "edit",
"actionCreate": "create",
"overwriteConfirm": "Are you sure you want to overwrite current Concept Set Expression?",
"loadingIncludedConcepts": "Loading Included Concepts",
"loadingRecommendedConcepts": "Loading Recommended Concepts",
"commonAncestors": "Common Ancestors",
"loadingIncludedSourcecodes": "Loading Included Sourcecodes",
"expressionResolveError": "Error occurred during resolving expression!",
"forbiddenError": "You are not authorized to view the concept set expression.",
"import": {
"repository": {
"overwriteCheckboxLabel": "Overwrite concept set items (append if not checked)"
},
"sourceCodes": {
"enterSourceCodes": "Enter Source Codes",
"searchConcepts": "Search concepts",
"searchingConcepts": "Searching concepts...",
"notFound": "Not found:"
}
}
},
"conceptLegend": {
"standard": "Standard",
"nonStandard": "Non-Standard",
"classification": "Classification"
},
"conceptAddBox": {
"addToConceptSet": "Add To Concept Set",
"addToNewConceptSet": "Add To New Concept Set",
"selectConceptSet": "Select Concept Set",
"exclude": "Exclude",
"descendants": "Descendants",
"mapped": "Mapped",
"addedToConceptSet": "Added To Concept Set!"
},
"conceptSetBuilder": {
"conceptSet": "Concept Set",
"delete": "Delete",
"export": "Export",
"exportConceptSetTitle": "Export Concept Set...",
"import": "Import",
"importConceptSetPlaceholder": "Import Concept Set",
"importConceptSetTitle": "Import Concept Set...",
"includedConcepts": "Included Concepts",
"load": "Load",
"mappedConcepts": "Mapped Concepts",
"newConceptSet": "New Concept Set",
"pleaseSelectCodesetToModify": "Please select codeset to modify...",
"removeSelected": "Remove Selected",
"selectConceptSet": "Select Concept Set...",
"unnamedConceptSet": "Unnamed Concept Set"
},
"conceptSetSaveModal": {
"conceptSetAlreadyExists": "Concept Set already exists",
"conceptSetNameLabel": "Concept Set Name:",
"conceptSetNamePlaceholder": "Concept Set Name",
"saveNewConceptSet": "Save New Concept Set"
},
"conceptSetSelector": {
"clearConceptSet": "Clear Concept Set",
"importConcept": "Import Concept Set",
"searchWithTripleDots": "Search..."
},
"conditionDeath": {
"addAttribute": "Add attribute...",
"anyDeath": "Any Death",
"conditionDeathText_1": "a death occurrence from",
"conditionDeathText_2": "occurrence start is:",
"conditionDeathText_3": "Death Source Concept is",
"conditionDeathText_4": "with age",
"conditionDeathText_5": "with a gender of:",
"conditionDeathText_6": "gender is any of:",
"deathType": "Death Type",
"indexDataText": "The index date refers to the death event of <%= conceptSetName %>."
},
"conditionDevice": {
"addAttribute": "Add attribute...",
"anyDevice": "Any Device",
"conditionDeviceText_1": "a device exposure of",
"conditionDeviceText_10": "with a Provider Specialty of:",
"conditionDeviceText_11": "with a Visit occurrence of:",
"conditionDeviceText_12": "gender is any of:",
"conditionDeviceText_13": "provider specialty is any of:",
"conditionDeviceText_14": "visit occurrence is any of:",
"conditionDeviceText_2": "for the first time in the person's history",
"conditionDeviceText_3": "occurrence start is:",
"conditionDeviceText_4": "occurrence end is:",
"conditionDeviceText_5": "with a Unique Device ID",
"conditionDeviceText_6": "with quantity",
"conditionDeviceText_7": "Device Source Concept is",
"conditionDeviceText_8": "with age",
"conditionDeviceText_9": "with a gender of:",
"deviceType": "Device Type",
"indexDataText": "The index date refers to the device exposure of <%= conceptSetName %>."
},
"conditionDose": {
"addAttribute": "Add attribute...",
"anyDoseEra": "Any Dose Era",
"anyDrug": "Any Drug",
"conditionDoseText_1": "a dose era of",
"conditionDoseText_10": "with a gender of:",
"conditionDoseText_11": "unit is any of:",
"conditionDoseText_12": "gender is any of:",
"conditionDoseText_2": "for the first time in the person's history",
"conditionDoseText_3": "era start is:",
"conditionDoseText_4": "era end is:",
"conditionDoseText_5": "with Unit:",
"conditionDoseText_6": "with dose value",
"conditionDoseText_7": "with era length",
"conditionDoseText_8": "with age in years at era start",
"conditionDoseText_9": "with age in years at era end",
"indexDataText": "The index date refers to the dose era of <%= conceptSetName %>."
},
"conditionDrug": {
"addAttribute": "Add attribute...",
"anyDrug": "Any Drug",
"conditionDrugText_1": "a drug era of",
"conditionDrugText_10": "with age in years at era end",
"conditionDrugText_11": "with a gender of:",
"conditionDrugText_12": "gender is any of:",
"conditionDrugText_2": "for the first time in the person's history",
"conditionDrugText_3": "era start is:",
"conditionDrugText_4": "era end is:",
"conditionDrugText_5": "with exposure count",
"conditionDrugText_6": "with gap days of",
"conditionDrugText_7": "days",
"conditionDrugText_8": "with era length",
"conditionDrugText_9": "with age in years at era start",
"indexDataText": "The index date refers to the drug era of <%= conceptSetName %>."
},
"conditionDrugExposure": {
"addAttribute": "Add attribute...",
"anyDrug": "Any Drug",
"conditionDrugExposureText_1": "a drug exposure of",
"conditionDrugExposureText_10": "with Effective Drug Dose",
"conditionDrugExposureText_11": "Dose Unit is:",
"conditionDrugExposureText_12": "with a Lot Number",
"conditionDrugExposureText_13": "Drug Source Concept is:",
"conditionDrugExposureText_14": "with age",
"conditionDrugExposureText_15": "with a gender of:",
"conditionDrugExposureText_16": "with a Provider Specialty of:",
"conditionDrugExposureText_17": "with a Visit occurrence of:",
"conditionDrugExposureText_18": "route concept is any of:",
"conditionDrugExposureText_19": "dose unit is any of:",
"conditionDrugExposureText_2": "for the first time in the person's history",
"conditionDrugExposureText_20": "gender is any of:",
"conditionDrugExposureText_21": "provider specialty is any of:",
"conditionDrugExposureText_22": "visit occurrence is any of:",
"conditionDrugExposureText_3": "occurrence start is:",
"conditionDrugExposureText_4": "occurrence end is:",
"conditionDrugExposureText_5": "with a Stop Reason",
"conditionDrugExposureText_6": "with Refills",
"conditionDrugExposureText_7": "with Quantity",
"conditionDrugExposureText_8": "with Days Supply",
"conditionDrugExposureText_9": "Route Concept is:",
"drugType": "Drug Type",
"indexDataText": "The index date refers to the drug exposure of <%= conceptSetName %>."
},
"conditionEra": {
"addAttribute": "Add attribute...",
"anyConditionButton": "Any Condition",
"attributeText_1": "for the first time in the person's history",
"attributeText_2": "era start is:",
"attributeText_3": "era end is:",
"attributeText_4": "with occurrence count",
"attributeText_5": "with era length",
"attributeText_6": "with age in years at era start",
"attributeText_7": "with age in years at era end",
"attributeText_8": "with a gender of:",
"attributeText_9": "days",
"criteriaText_1": "a condition era of",
"returnText_1": "The index date refers to the condition era of"
},
"conditionMeasurement": {
"addAttribute": "Add attribute...",
"anyMeasurement": "Any Measurement",
"conditionMeasurementText_1": "a measurement of",
"conditionMeasurementText_10": "with Range Low Ratio",
"conditionMeasurementText_11": "with Range High",
"conditionMeasurementText_12": "with Range High Ratio",
"conditionMeasurementText_13": "with an abnormal result",
"conditionMeasurementText_14": "Measurement Source Concept is",
"conditionMeasurementText_15": "with age",
"conditionMeasurementText_16": "with a gender of:",
"conditionMeasurementText_17": "with a Provider Specialty of:",
"conditionMeasurementText_18": "with a Visit of:",
"conditionMeasurementText_19": "measurement value operator is any of:",
"conditionMeasurementText_2": "for the first time in the person's history",
"conditionMeasurementText_20": "value as concept is any of:",
"conditionMeasurementText_21": "unit is any of:",
"conditionMeasurementText_22": "with lower range",
"conditionMeasurementText_23": "with lower range ratio",
"conditionMeasurementText_24": "with high range",
"conditionMeasurementText_25": "with high range ratio",
"conditionMeasurementText_26": "gender is any of:",
"conditionMeasurementText_27": "provider specialty is any of:",
"conditionMeasurementText_28": "visit occurrence is any of:",
"conditionMeasurementText_29": "with calculated value as number",
"conditionMeasurementText_3": "occurrence start is:",
"conditionMeasurementText_30": "at the same visit",
"conditionMeasurementText_31": "restricted to the same visit",
"conditionMeasurementText_32": "of",
"conditionMeasurementText_5": "Measurement Value Operator is:",
"conditionMeasurementText_6": "with value as number",
"conditionMeasurementText_7": "Value as Concept is:",
"conditionMeasurementText_8": "Unit is:",
"conditionMeasurementText_9": "with Range Low",
"measurementType": "Measurement Type",
"indexDataText": "The index date refers to the measurement of <%= conceptSetName %>."
},
"conditionObservation": {
"addAttribute": "Add attribute...",
"anyObservation": "Any Observation",
"conditionObservationText_1": "an observation of",
"conditionObservationText_10": "with age",
"conditionObservationText_11": "with a gender of:",
"conditionObservationText_12": "with a Provider Specialty of:",
"conditionObservationText_13": "with a Visit occurrence of:",
"conditionObservationText_14": "value as concept is any of:",
"conditionObservationText_15": "qualifier is any of:",
"conditionObservationText_16": "unit is any of:",
"conditionObservationText_17": "gender is any of:",
"conditionObservationText_18": "provider specialty is any of:",
"conditionObservationText_19": "visit occurrence is any of:",
"conditionObservationText_2": "for the first time in the person's history",
"conditionObservationText_3": "occurrence start is:",
"conditionObservationText_4": "with Value as Number",
"conditionObservationText_5": "with Value as String",
"conditionObservationText_6": "with Value as Concept:",
"conditionObservationText_7": "with Qualifier:",
"conditionObservationText_8": "with Unit:",
"conditionObservationText_9": "Observation Source Concept is:",
"observationType": "Observation Type",
"indexDataText": "The index date refers to the observation of <%= conceptSetName %>."
},
"conditionObservationPeriod": {
"addAttribute": "Add attribute...",
"conditionObservationText_1": "observation periods with the following criteria:",
"conditionObservationText_10": "days.",
"conditionObservationText_11": "an observation period",
"conditionObservationText_12": "period type is any of:",
"conditionObservationText_2": "limited to the patients first observation period",
"conditionObservationText_3": "using specified period:",
"conditionObservationText_4": "observation period start is:",
"conditionObservationText_5": "observation period end is:",
"conditionObservationText_6": "Period Type is:",
"conditionObservationText_7": "with age in years at period start",
"conditionObservationText_8": "with age in years at period end",
"conditionObservationText_9": "with period duration"
},
"conditionOccurrence": {
"addAttribute": "Add attribute...",
"anyCondition": "Any Condition",
"conditionOccurrenceText_1": "a condition occurrence of",
"conditionOccurrenceText_10": "with a Visit occurrence of:",
"conditionOccurrenceText_11": "gender is any of:",
"conditionOccurrenceText_12": "provider specialty is any of:",
"conditionOccurrenceText_13": "visit occurrence is any of:",
"conditionOccurrenceText_2": "for the first time in the person's history",
"conditionOccurrenceText_3": "occurrence start is:",
"conditionOccurrenceText_4": "occurrence end is:",
"conditionOccurrenceText_5": "with a Stop Reason",
"conditionOccurrenceText_6": "Condition Source Concept is",
"conditionOccurrenceText_7": "with age",
"conditionOccurrenceText_8": "with a gender of:",
"conditionOccurrenceText_9": "with a Provider Specialty of:",
"conditionType": "Condition Type",
"indexDataText": "The index date refers to the condition occurrence of <%= conceptSetName %>."
},
"conditionPayerPlanPeriod": {
"addAttribute": "Add attribute...",
"anyPayer": "Any Payer",
"anyPayerSource": "Any Payer Source",
"anyPlan": "Any Plan",
"anyPlanSource": "Any Plan Source",
"anySponsor": "Any Sponsor",
"anySponsorSource": "Any Sponsor Source",
"anyStopReason": "Any Stop Reason",
"anyStopReasonSource": "Any Stop Reason Source",
"conditionPayerPlanText_1": "payer plan periods with the following criteria:",
"conditionPayerPlanText_10": "Payer Concept is",
"conditionPayerPlanText_11": "Plan Concept is",
"conditionPayerPlanText_12": "Sponsor Concept is",
"conditionPayerPlanText_13": "Stop Reason Concept is",
"conditionPayerPlanText_14": "Payer Source Concept is",
"conditionPayerPlanText_15": "Plan Source Concept is",
"conditionPayerPlanText_16": "Sponsor Source Concept is",
"conditionPayerPlanText_17": "Stop Reason Source Concept is",
"conditionPayerPlanText_18": "Note: Payer Plan Period criteria is only available in CDM v5.3 and later.",
"conditionPayerPlanText_19": "a payer plan period",
"conditionPayerPlanText_2": "limited to the patients first payer plan period",
"conditionPayerPlanText_20": "using specified period:",
"conditionPayerPlanText_21": "period start is",
"conditionPayerPlanText_22": "period end is",
"conditionPayerPlanText_23": "with age at start",
"conditionPayerPlanText_24": "with age at end",
"conditionPayerPlanText_25": "gender is any of:",
"conditionPayerPlanText_3": "with age at period start",
"conditionPayerPlanText_4": "with age at period end",
"conditionPayerPlanText_5": "with period duration",
"conditionPayerPlanText_6": "with a gender of:",
"conditionPayerPlanText_7": "using specified period:",
"conditionPayerPlanText_8": "payer plan period start is:",
"conditionPayerPlanText_9": "payer plan period end is:",
"indexDataText": "The index date refers to the payer plan period."
},
"conditionProcedureOccurrence": {
"addAttribute": "Add attribute...",
"anyProcedure": "Any Procedure",
"conditionProcedureOccurrenceText_1": "a procedure occurrence of",
"conditionProcedureOccurrenceText_10": "with a Visit occurrence of:",
"conditionProcedureOccurrenceText_11": "modifier is any of:",
"conditionProcedureOccurrenceText_12": "gender is any of:",
"conditionProcedureOccurrenceText_13": "provider specialty is any of:",
"conditionProcedureOccurrenceText_14": "visit occurrence is any of:",
"conditionProcedureOccurrenceText_2": "for the first time in the person's history",
"conditionProcedureOccurrenceText_3": "occurrence start is:",
"conditionProcedureOccurrenceText_4": "Modifier is:",
"conditionProcedureOccurrenceText_5": "with quantity",
"conditionProcedureOccurrenceText_6": "Procedure Source Concept is:",
"conditionProcedureOccurrenceText_7": "with age:",
"conditionProcedureOccurrenceText_8": "with a gender of:",
"conditionProcedureOccurrenceText_9": "with a Provider Specialty of:",
"procedureType": "Procedure Type",
"indexDataText": "The index date refers to the procedure of <%= conceptSetName %>."
},
"conditionSpecimen": {
"addAttribute": "Add attribute...",
"anySpecimen": "Any Specimen",
"conditionSpecimeText_1": "a specimen of",
"conditionSpecimeText_10": "with a gender of:",
"conditionSpecimeText_11": "unit is any of:",
"conditionSpecimeText_12": "anatomic site is any of:",
"conditionSpecimeText_13": "disease status is any of:",
"conditionSpecimeText_14": "gender is any of:",
"conditionSpecimeText_2": "for the first time in the person's history",
"conditionSpecimeText_3": "occurrence start is:",
"conditionSpecimeText_4": "with Quantity",
"conditionSpecimeText_5": "with Unit:",
"conditionSpecimeText_6": "with Anatomic Site:",
"conditionSpecimeText_7": "with Disease Status:",
"conditionSpecimeText_8": "with Source ID",
"conditionSpecimeText_9": "with age",
"specimenType": "Specimen Type",
"indexDataText": "The index date refers to the specimen of <%= conceptSetName %>."
},
"conditionVisit": {
"addAttribute": "Add attribute...",
"anyLocation": "Any Location",
"anyVisit": "Any Visit",
"conditionSpecimeText_1": "a visit occurrence of",
"conditionSpecimeText_10": "with a Place of Service of:",
"conditionSpecimeText_11": "with a Place of Service located in:",
"conditionSpecimeText_12": "with distance from a Place of Service to Patient",
"conditionSpecimeText_13": "with visit length",
"conditionSpecimeText_14": "gender is any of:",
"conditionSpecimeText_15": "provider specialty is any of:",
"conditionSpecimeText_2": "for the first time in the person's history",
"conditionSpecimeText_3": "occurrence start is:",
"conditionSpecimeText_4": "occurrence end is:",
"conditionSpecimeText_5": "Visit Source Concept is",
"conditionSpecimeText_6": "with visit duration",
"conditionSpecimeText_7": "with age",
"conditionSpecimeText_8": "with a gender of:",
"conditionSpecimeText_9": "with a Provider Specialty of:",
"visitType": "Visit Type",
"indexDataText": "The index date refers to the visit of <%= conceptSetName %>."
},
"conditionVisitDetail": {
"addAttribute": "Add attribute...",
"anyVisitDetail": "Any Visit Detail",
"anyType": "Any Visit Detail Type",
"anySourceConcept": "Any Visit Detail Source Concept",
"anyGender": "Any Gender",
"anyProviderSpeciality": "Any Provider Specialty",
"anyPlaceService": "Any Place of Service",
"anyLocation": "Any Location",
"conditionVisitDetailText_1": "a visit detail of",
"conditionVisitDetailText_10": "with a Place of Service ",
"conditionVisitDetailText_11": "with a Place of Service located in:",
"conditionVisitDetailText_12": "with distance from a Place of Service to Patient:",
"conditionVisitDetailText_2": "for the first time in the person's history",
"conditionVisitDetailText_3": "visit detail start is:",
"conditionVisitDetailText_4": "visit detail end is:",
"conditionVisitDetailText_5": "visit detail Source Concept is",
"conditionVisitDetailText_6": "with visit detail duration",
"conditionVisitDetailText_7": "with age",
"conditionVisitDetailText_8": "with a gender ",
"conditionVisitDetailText_9": "with a Provider Specialty ",
"visitDetailType": "visit detail type",
"indexDataText": "The index date refers to the visit detail of <%= conceptSetName %>."
},
"criteriaGroup": {
"addAdditionalConstraint": "add additional constraint",
"addCriteria": "Add criteria to group...",
"and": "and",
"between": "between",
"criteriaGroupText_1": "restrict to the same visit occurrence",
"criteriaGroupText_2": "allow events from outside observation period",
"deleteCriteria": "Delete Criteria",
"deleteGroup": "Delete Group",
"followingCriteria": "of the following criteria:",
"having": "having",
"havingCapital": "Having",
"occurrencesOf": "occurrences of:",
"occurrenceOf": "occurrence of:",
"usingAll": "using all",
"usingDistinct": "using distinct",
"where": "where",
"with": "with",
"withFollowingCriteria": "with the following event criteria:",
"occurringWithinTheSameVisit": "occurring within the same visit"
},
"customEraStrategy": {
"customEraStrategyText_1": "Continuous Exposure Persistence:",
"customEraStrategyText_10": "Force drug exposure days supply to:",
"customEraStrategyText_11": "days.",
"customEraStrategyText_12": "This strategy creates a drug era from the codes found in the specified concept set. If the index event is found within an era, the cohort end date will use the era's end date. Otherwise, it will use the observation period end date that contains the index event.",
"customEraStrategyText_13": "Use the era end date of",
"customEraStrategyText_14": "allowing",
"customEraStrategyText_15": "days between exposures",
"customEraStrategyText_16": "adding",
"customEraStrategyText_17": "days after exposure end",
"customEraStrategyText_18": "using days supply and exposure end date for exposure duration.",
"customEraStrategyText_19": "forcing drug exposure days supply to:",
"customEraStrategyText_2": "Specify a concept set that contains one or more drugs. A drug era will be derived from all drug exposure events for any of the drugs within the concept set, using the specified persistence window as a maximum allowable gap in days between successive exposure events and adding a specified surveillance window to the final exposure event. If no exposure event end date is provided, then an exposure event end date is inferred to be event start date + days supply in cases when days supply is available or event start date + 1 day otherwise. This event persistence assures that the cohort end date will be no greater than the drug era end date.",
"customEraStrategyText_3": "Concept set containing the drug(s) of interest:",
"customEraStrategyText_4": "Persistence window: allow for a maximum of ",
"customEraStrategyText_5": "days between exposure records when inferring the era of persistence exposure",
"customEraStrategyText_6": "Surveillance window: add ",
"customEraStrategyText_7": "days to the end of the era of persistence exposure as an additional period of surveillance prior to cohort exit.",
"customEraStrategyText_8": "Use days supply and exposure end date for exposure duration. ",
"customEraStrategyText_9": "change",
"selectDrugConceptSet": "Select Drug Concept Set"
},
"cyclops": {
"controlEditor": {
"convergenceType": "Select the convergence type:",
"crossValidationSearchType": "Select the cross validation search type:",
"initialBound": "Initial bound:",
"lowerPrior": "Lower prior variance limit:",
"maxBoundCount": "Max bound count:",
"maxIterations": "Maximum iterations of Cyclops to attempt before returning a failed-to-converge error.",
"maxRelativeChange": "Maximum relative change in convergence criterion from successive iterations to achieve convergence.",
"nameOfExchangeableSamplingUnit": "Name of exchangeable sampling unit. Option <i>byPid</i> selects entire strata. Option <i>byRow</i> selects single rows. If set to <i>auto</i>, <i>byRow</i> will be used for all models except conditional models where the average number of rows per stratum is smaller than the number of strata:",
"noiseLevel": "Noise level for Cyclops screen output:",
"numberOfRandomFolds": "Number of random folds to employ in cross validation:",
"numberOfRepetitions": "Number of repetitions of <%=num%>-fold cross validation:",
"numberOfSteps": "Number of steps:",
"resetAllCoefficients": "Reset all coefficients to 0 between model fits under cross-validation:",
"sizeMultiplier": "Size multiplier for active set:",
"startingVariance": "Starting variance for auto-search cross-validation; -1 = use estimate based on data:",
"minDataCrossValidation": "Minimum amount of data required for cross-validation:",
"upperPrior": "Upper prior variance limit:",
"useTheKarush": "Use the Karush-Kuhn-Tucker conditions to limit search:"
},
"options": {
"auto": "Auto",
"gradient": "Gradient",
"grid": "Grid",
"hierarchical": "Hierarchical",
"lange": "Lange",
"laplace": "Laplace",
"mittal": "Mittal",
"noisy": "Noisy",
"none": "None",
"normal": "Normal",
"quiet": "Quiet",
"silent": "Silent"
},
"prior": {
"crossValidation": "Perform cross-validation to determine prior-variance:",
"distribution": "Specify the prior distribution:",
"distributionVariance": "Specify the prior distribution variance:",
"interceptCoefficient": "Force intercept coefficient into prior:",
"mapping": "Child-to-parent mapping for a hierarchical prior:",
"neighborhoods": "A list of first-order neighborhoods for a partially fused prior:",
"vector": "Specify a vector of numbers or covariate Ids to exclude from prior:"
}
},
"dateOffsetStrategy": {
"dateOffsetStrategyText_6": "Date Offset Exit Criteria",
"dateOffsetStrategyText_7": "This cohort definition end date will be the index event's",
"dateOffsetStrategyText_8": "plus",
"dateOffsetStrategyText_1": "Fixed Duration Persistence:",
"dateOffsetStrategyText_2": "The event end date is derived from adding a number of days to the event's start or end date. If an offset is added to the event's start date, all cohort episodes will have the same fixed duration (subject to further censoring). If an offset is added to the event's end date, persons in the cohort may have varying cohort duration times due to the varying event durations (such as eras of persistent drug exposure or visit length of stay). This event persistence assures that the cohort end date will be no greater than the selected index event date, plus the days offset.",
"dateOffsetStrategyText_3": "Event date to offset from:",
"dateOffsetStrategyText_3_1": " ",
"dateOffsetStrategyText_4": "Number of days offset:",
"dateOffsetStrategyText_5": "days"
},
"dateRange": {
"after": "after",
"and": "and",
"before": "before",
"between": "between",
"firstPlaceholder": "YYYY-MM-DD",
"notBetween": "not between",
"on": "on",
"onOrAfter": "on or after",
"onOrBefore": "on or before",
"inclusive": "inclusive"
},
"demographicCriteria": {
"addAttribute": "Add attribute...",
"demographicCriteriaText_1": "gender is any of:",
"demographicCriteriaText_2": "race is any of:",
"demographicCriteriaText_3": "ethnicity is any of:",
"occurrenceEnd": "occurrence end is:",
"occurrenceStart": "occurrence start is:",
"withAge": "with age",
"withEthnicity": "with a ethnicity of:",
"withGenderOf": "with a gender of:",
"withRaceOf": "with a race of:"
},
"endStrategyEditor": {
"eventWillPersistUntil": "Event will persist until:",
"eventWillPersistUntil2": " "
},
"endStrategyViewer": {
"endDateStrategy": "End Date Strategy",
"endStrategyViewerText_1": "No end date strategy selected. By default, the cohort end date will be the end of the observation period that contains the index event."
},
"evidencePairViewer": {
"evidencePairViewerText_1": "loading evidence pairs",
"evidencePairViewerText_2": "If CommonEvidenceModel has indicated there is product label information for the selected drug-condition pair (1 = true, 0 = false) you may see many product labels below. The count of labels is non-informative since an adverse event on one label is supposed to be on all product labels. So, this page will show all product labels for the selected drug-condition pair.",
"evidencePairViewerText_3": "If the CommonEvidenceModel has listed a number of publications, on the “Viewing Evidence” pop-up, one publication may occur multiple times in the results below. This is because for every drug-condition pair a publication matches, the publication will show up in “View Evidence” list.",
"evidencePairViewerText_4": "Click here for more information about this evidence list",
"evidencePairViewerText_5": "Hide details",
"evidencePairViewerText_6": "The concept set is not marked as valid to generate results. Please make sure this concept set contains only CONDITIONS or DRUGS."
},
"executionUtils": {
"startNewExecutionInParallelConfirmation": "A generation for the source has already been started. Are you sure you want to start a new one in parallel?"
},
"exploreCohort": {
"fetchingFirst": "Fetching first",
"members": "members",
"exploreCohortText_1": "This cohort has no members available to view. Please check the generation status in the Cohort Definition section of Atlas.",
"exploreCohortText_2": "This cohort has no members available to view for the selected data source. Please ensure that you have generated the cohort using the Generation tab."
},
"export": {
"button": "Export",
"progress": "export in progress"
},
"exportSql": {
"incorrectDesign": "Cannot generate SQL: design of the analysis is incorrect"
},
"feasibilityAttritionReport": {
"attritionVisualization": "Attrition Visualization",
"inclusionRule": "Inclusion Rule",
"percentRemain": "% Remain",
"precentDiff": "% Diff"
},
"feasibilityIntersectReport": {
"inclusionRule": "Inclusion Rule",
"percentSatisfied": "% Satisfied",
"percentToGain": "% To-Gain",
"populationVisualization": "Population Visualization",
"rectSummary": "<%=size%> people (<%=percentage%>%), <%=passCount%> criteria passed, <%=failCount%> criteria failed."
},
"feasibilityReportViewer": {
"feasibilityReportViewerText_1": "Match Rate",
"feasibilityReportViewerText_2": "Matches",
"feasibilityReportViewerText_3": "Lost from censoring",
"feasibilityReportViewerText_4": "Total Events",
"feasibilityReportViewerText_5": "Summary Statistics:",
"feasibilityReportViewerText_6": "Switch to attrition view",
"feasibilityReportViewerText_7": "Switch to intersect view",
"feasibilityReportViewerText_8": "No inclusion rules specified for this cohort definition."
},
"featureextraction": {
"covariateSettingsEditor": {
"age": "Age",
"ageGroups": "Age Groups",
"allTime": "All Time",
"anyTimePrior": "Any Time Prior",
"condition": "Condition",
"conditionGroup": "Condition Group",
"conditionPrimaryInpatient": "Condition - Primary Inpatient",
"demographics": "Demographics",
"device": "Device",
"distinctCount": "Distinct Count",
"domain": "Domain",
"drug": "Drug",
"drugGroup": "Drug Group",
"endDays": "End Days",
"eraStart": "Era Start",
"ethnicity": "Ethnicity",
"gender": "Gender",
"indexMonth": "Index Month",
"indexScoreType": "Index Score Type",