-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathEnglish.json
More file actions
1757 lines (1752 loc) · 89.5 KB
/
Copy pathEnglish.json
File metadata and controls
1757 lines (1752 loc) · 89.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"English": {
"spoke_selection": {
"spoke": "Spoke",
"continue": "Continue"
},
"platform_feedback": {
"feedback": "Feedback",
"weValueYourFeedback": "We value your feedback",
"youHaveLoggedOut":"You have logged out of the session",
"subtitle": " We’d love to hear about your experience (optional)",
"category": "Category",
"selectCategory": "Select Category",
"loggedInConsent":"Submit anonymously (if unchecked, we will store your user id for follow-up)",
"anonymousInfo":"You are not logged in, this feedback will be submitted anonymously.",
"okay": "Okay",
"thankYou": "Thank you, your feedback is valuable to us!"
},
"role_selection": {
"Registrar": "Registrar",
"Nurse": "Nurse",
"Doctor": "Doctor",
"LabTechnician": "Lab Technician",
"Pharmacist": "Pharmacist",
"Radiologist": "Radiologist",
"Oncologist": "Oncologist"
},
"nurse_tabs": {
"visit": "Visit",
"current": "Current TC",
"future": "Future TC",
"referred":"MMU Referred"
},
"tabs": {
"current": "Current",
"future": "Future"
},
"ro": {
"registration": "Registration",
"benIDOrPhNo": "Look for BeneficiaryID or Phone number or ABHA here...",
"personalInfo": {
"personalInformation": "Personal Information",
"educationalQualification": "Educational Qualification",
"otherOccupation": "Other Occupation",
"martialStatus": "Marital Status",
"ageAtMarriage": "Age at Marriage (Years)",
"spouseName": "Spouse Name",
"firstName": "First Name",
"lastName": "Last Name/Sur Name",
"fullName": "Full Name",
"maritalStatus": "Martial Status",
"contactNo": "Contact No",
"gender": "Gender",
"age": "Age",
"ageUnit": "Age Unit",
"dob": "DOB (DD/MM/YYYY)",
"incomeStatus": "Income Status",
"literacyStatus": "Literacy Status",
"occupation": "Occupation",
"capturePhoto": "Capture Photo"
},
"locInfo": {
"locInformation": "Location Information",
"state": "State",
"district_Town_City": "District/Town/City",
"taluk": "Taluk/Tehsil",
"zone": "Zone",
"parkingPlace": "Parking Place",
"street": "Street/ Panchayat/ Village",
"habitation": "Habitation",
"address1": "Address Line 1",
"address2": "Address Line 2",
"address3": "Address Line 3",
"pincode": "Pincode"
},
"otherInfo": {
"otherInformation": "Other Information",
"fatherName": "Father's Name",
"fName": "Father Name",
"motherName": "Mother's Name",
"emailID": "Email ID",
"community": "Community",
"bankName": "Bank Name",
"branchName": "Branch Name",
"accountNo": "Account No",
"ifscCode": "IFSC Code",
"healthID": "Health ID Number",
"religion": "Religion",
"govtIDType": "Govt. ID Type",
"govtIDNumber": "Govt. ID Number",
"govtHealthProgramType": "Govt. Health Program Type",
"govtHealthProgramIDNumber": "Govt. Health Program ID Number"
}
},
"bendetails": {
"edit": "Edit",
"editLocation": "Edit Location",
"beneficiaryID": "Beneficiary ID",
"beneficiaryName": "Beneficiary Name",
"lastName":"Last Name",
"gender": "Gender",
"age": "Age",
"fatherName": "Father's Name",
"phoneNo": "Phone No",
"district": "District / Village",
"registrationDate": "Registration Date",
"image": "Image",
"advanceSearch": "Advance Search",
"externalSearch": "Higher Health Facility Search",
"status": "Status",
"visitCategory": "Visit Category / Visit No",
"tcDate": "TC Date",
"beneficiaryArrived": "Beneficiary Arrived",
"action": "Action",
"visitDate": "Visit Date",
"regDate": "Registration Date",
"village_spoke": "Village/Spoke",
"sNo":"S.No",
"emergencyCaseSheet":"Emergency Case Sheet"
},
"benDetailsAlert": {
"firstNameMandatory": "First Name is required",
"minCharRequired": "Please provide atleast 2 character",
"mobNoMandatory": "Mobile Number is required",
"minDigitsRequired": "Please provide 10 digit number",
"ageMandatory":"Age is required",
"fatherNameMandatory":"Father's Name is required"
},
"common": {
"diabetes":"Diabetes",
"epilepsy": "Epilepsy",
"asthma": "Asthma",
"noRecordsFound": "No Records Found",
"visionScreening": "Vision Screening",
"tuberculosisScreening": "Tuberculosis Screening",
"malariaScreening": "Malaria Screening",
"doYouWantToLinkCareContext":"Do you want to link Care Context?",
"moderate":"Moderate",
"higher":"Higher",
"lower": "Lower",
"weight": "Weight",
"provisionalDiagnosisSelection":"Provisional Diagnosis Selection",
"selectPrintPage":"Select Print Page",
"Worklist":"Worklist",
"timeSheet":"Timesheet",
"dataSync":"Data Sync",
"TCSpecialist":"TC Specialist",
"enterOncologistObservation":"Enter oncologist observation",
"totalPages":"Total Pages",
"term":"Term",
"beneficiaryMovedtoNurse":"Beneficiary moved to nurse worklist",
"kindlyMark": "Kindly mark in the following diagram",
"update": "Update",
"month": "Month",
"ok": "Ok",
"enterDigitAadharNumber": "Enter 12 Digit Aadhar Number",
"enterCharacterVoterID": "Enter 10 Character Voter ID",
"enterCharacterDrivingLicenseID": "Enter min 8 Character Driving License ID",
"EnterCharacterPanID": "Enter 10 Character Pan ID",
"EnterCharacterPassport": "Enter 15 Character Passport",
"EnterCharacterRationcardID": "Enter 15 Character Rationcard ID",
"errorinExaminationUpdate": "Error in Examination update",
"examinationUpdatedSuccessfully": "Examination updated successfully",
"pendingForConsultation": "Pending For consultation",
"PleaseConfirmtoDelete": "Please confirm to delete",
"MedicineAlreadyPrescribed": "Medicine is already prescribed, Please delete the previously added one to change",
"DurationannotGreater": "Duration cannot be greater than age",
"MaximumDiagnosisAdded": "Maximum 30 diagnosis can be added",
"NoCasesheetAvailableNCDScreening": "No casesheet available for NCD screening",
"ConfirmtoViewCasesheet": "Confirm to view casesheet",
"valueCannotGreater": "value can not be greater than 5",
"invalidValueMorethan": "invalid value. Should be more than zero(0)",
"InvalidValueLessorEqual": "Invalid value. Should be less or equal to Nine(9)",
"InvalidValue": "Invalid Value",
"temperature": "Temperature",
"Success": "Success",
"DiastolicBPLessThan": "Diastolic BP should be less than Systolic BP",
"bluetoothDevice": "Bluetooth Device",
"proceed": "Proceed",
"scheduleForTM": "Schedule For TM",
"confirm": "Confirm",
"cancel": "Cancel",
"history": "History",
"caseRecord": "Case Record",
"search": "Search",
"reset": "Reset",
"select": "Select",
"submit": "Submit",
"close": "Close",
"clear": "Clear",
"refresh": "Refresh",
"next": "Next",
"yes": "Yes",
"no": "No",
"back": "Back",
"coherent": "Coherent",
"incoherent": "Incoherent",
"normal": "Normal",
"abnormal": "Abnormal",
"limping": "Limping",
"comfortable": "Comfortable",
"uncomfortable": "Uncomfortable",
"present": "Present",
"absent": "Absent",
"elevated": "Elevated",
"laterality": "Laterality",
"abnormality": "Abnormality",
"audible": "Audible",
"notAudible": "Not Audible",
"positive": "Positive",
"negative": "Negative",
"regular": "Regular",
"irregular": "Irregular",
"enlarged": "Enlarged",
"notEnlarged": "Not Enlarged",
"involved": "Involved",
"notInvolved": "Not Involved",
"left": "LEFT",
"right": "RIGHT",
"inTableSearch": "In-Table Search",
"totalCount": "Total Count",
"remarks": "Remarks",
"result": "Result",
"report": "Reports",
"date": "Date",
"filesToDownload": "Files (Click to download)",
"noRecordFound": "No Records Found",
"dateofcapture": "Date of Capture",
"firstVisit": "First Visit",
"reVisit": "Revisit",
"scheduledTC": "Scheduled for TC",
"surgery": "Surgery",
"disease": "Disease",
"ConceptID": "Concept ID",
"mctcalldetails": "MCTS Call Details",
"question": "Question",
"answer": "Answer",
"noCallDetailsFound": "No call details found",
"load": "Load",
"noVisitFound": "No visit found",
"visibility": "visibility",
"viewQnA": "View Q&A",
"id": "ID",
"viewMore": "View More",
"previousRecordWeight": "No previous weight records found",
"bloodPressureTrend": "Blood Pressure Trends",
"bloodGlucoseTrend": "Blood Glucose Trends",
"resultMammogram": "Results of Mammogram",
"otherComplication": "Other Complication of Current Pregnancy",
"add": "add",
"confirmDiagnosis": "Confirmatory Diagnosis",
"labTest": "Test Report",
"annotatedimagereport": "Annotated Image Report",
"chevronleft": "chevron_left",
"arrowupward": "arrow_upward",
"viewmodule": "view_module",
"SelectTestname": "Select Test name",
"scheduler": "Scheduler",
"walkIn": "Walk In",
"allocationDate": "Allocation Date",
"specialization": "Specialization",
"specialistDetails": "Specialist Details",
"hR": "HR(bpm)",
"rR": "RR(bpm)",
"download": "Download",
"prevFamilyHistory": "Previous Family History Details",
"prevVaccine": "Previous Other Vaccines Details",
"prevObsteric": "Previous Obstetric History Details",
"beneAlreadyAdded": "Beneficiary already present in nurse worklist",
"scheduleforTM": "Schedule For",
"confirmation": "confirmation",
"YesPregnancyStatus": "Yes in Pregnancy status",
"MMU": "MMU",
"TM": "TM",
"MCTS": "MCTS",
"LoadMMU": "Load MMU",
"Dashboard": "Dashboard",
"syncUpdate": "sync Update",
"Rangeto": "Range 1000 to 5000",
"LabStart": "Lab - Start",
"SelectLanguage": "Select Language",
"Pendinglatestresult": "Pending for latest result",
"loadSyncUpdate": "Load syncUpdate",
"loadDash": "Load DashBoard",
"loadMcts": "Load MCTS",
"loadTm": "Load TM",
"mmu": "MMU",
"submitSlot": "Submit slot",
"allocation": "Allocation",
"conformPopUp": "conformation pop-up to proceed",
"followUp": "Follow Up",
"fieldNamesDanger": "FieldNames like Danger Signs",
"unableSave": "Unable to save data",
"specialistName": "Specialist Name",
"slotNotAvailable": "Slot is not available",
"fromTime": "From Time",
"toTime": "To Time",
"Kindlyuploadthefiles": "Kindly upload the files",
"clearslots":"Clear Slot",
"advanceBeneficiarySearch": "Advance Beneficiary Search",
"externalBeneficiarySearch": "External Beneficiary Search",
"firstNameisrequired": "First Name is required",
"pleaseprovideatleast2character": "Please provide atleast 2 character",
"pleaseprovideatleast3character": "Please provide atleast 3 character",
"invalidMarriageAge": "Invalid Marriage Age",
"PleaseenterBeneficiaryagefirst": "Please enter Beneficiary age first",
"Marriageatageismorethantheactualage": "Marriage at age is more than the actual age",
"Dataupdatedsuccessfully": "Data updated successfully",
"RestoreDefault": "Restore Default",
"TCDone": "Tele-Consultation Done",
"TCPending": "Tele-Consultation Pending",
"selectAll": "Select All",
"sNo": "S.No.",
"confirmWhetherBeneficiaryHasArrived": "Confirm Whether Beneficiary has arrived",
"startTest":"Start Test"
},
"idrs": {
"screening": "Screening",
"iDRSScore": "IDRS Score",
"suspectedFor": "Suspected(+ve) for",
"confirmedFor": "Confirmed for",
"previousDiabetesHistory":"Previous Diabetes History"
},
"covid": {
"cOVID19ContactHistory": "COVID-19 Contact History",
"historyOfContactWithAPersonwho": "In the Last 14 days, do you have any history of contact with a person who",
"historyOfContact": " History of Contact",
"yES":"YES",
"travelHistory": "Travel History"
},
"travel": {
"haveyouTravelledlast14days": "Have you Travelled last 14 days",
"travelType": "Travel Type",
"domestic": "Domestic",
"international":"International",
"locationTravelledFrom": "Location Travelled From",
"locationTravelledTo": "Location Travelled To",
"outcome":"Outcome",
"suspectedCOVID": "Suspected COVID-19",
"recommendation": "Recommendation",
"travelledlastDays": "Travelled last 14 days",
"modeofTravel": "Mode of Travel",
"state": "State",
"district" :"District",
"subDistrict" :"Sub District",
"country" :"Country",
"city": "City",
"bus": "Bus",
"flight" :"Flight",
"train" : "Train",
"ship": "Ship"
},
"nurseData": {
"visitDetails": "Visit Details",
"visitDetailsForm": {
"reasonForVisit": "Reason for Visit",
"visitCategory": "Visit Category",
"pregnancyStatus": "Pregnancy Status",
"uploadFiles": "Upload Files",
"selectFile": "Select File",
"viewFiles": "View Files",
"MCTSOrRCHID": "MCTS ID / RCH+ ID",
"diseaseConfirmation": "Disease Confirmation"
},
"chiefComplaintsDetails": {
"chiefComplaints": "Chief Complaints",
"SCTID": "SCT ID",
"duration": "Duration",
"unitOfDuration": "Unit Of Duration",
"description": "Description",
"noCheifComplaint": "No chief complaint captured by nurse",
"selectunitOfDuration": "Select Unit Of Duration"
},
"adherenceDetails": {
"adherence": "Adherence",
"drugs": "Drugs",
"referral": "Referral",
"reason": "Reason",
"progress": "Progress"
},
"investigationsDetails": {
"investigations": "Investigations",
"laboratory": "Laboratory"
},
"scheduleTM": "Schedule For TM",
"viewTmSchedule": "View TM Schedule"
},
"ancData": {
"anc": "ANC",
"ancDetails": "ANC Details",
"ancDataDetails": {
"primiGravida": "Primi Gravida",
"lastMenstrualPeriod": "Last Menstrual Period",
"currentGestationalAge": "Current Gestational Age (weeks)",
"eDD": "Expected Date Of Delivery",
"periodofPregnancy": "Period of Pregnancy (Months)",
"trimesterNumber": "Trimester number"
},
"obstetricDeatils": {
"obstetricFormula": "Obstetric Formula",
"gravida": "Gravida",
"bloodGroupType": "Blood Group Type",
"abortions": "Abortions (A)",
"livingChildren": "Living Children (L)",
"pretermDeliveries": "Pre term Deliveries(P)",
"termDeliveries": "Term Deliveries(T)"
},
"ancImmune": {
"ancImmunization": "ANC Immunization",
"tt1Status": "TT-1 Status",
"tt2Status": "TT-2 Status",
"ttBoosterStatus": "TT-Booster Status",
"dateReceived": "Date Received",
"facilityName": "Facility Name",
"govtFacility": "Govt Facility",
"pvtFacility": "Pvt Facility"
}
},
"pncData": {
"pnc": "PNC",
"placeofDelivery": "Place of Delivery",
"typeofDelivery": "Type of Delivery",
"dateofDelivery": "Date of Delivery",
"deliveryComplication": "Delivery Complication",
"outcomeofpregnancy": "Outcome of pregnancy",
"postNatalComplication": "Post Natal Complication",
"others": "Others",
"gestationalAgeofNewborn": "Gestational Age of Newborn",
"birthWeight": "Birth Weight (kg)",
"newBornHealthStatus": "New Born Health Status"
},
"DurationData": {
"duration": "Duration",
"timeperiodAgo": "Time period ago",
"durationUnit": "Duration Unit",
"unitOfDuration": "Unit Of Duration",
"previousDetails": "Previous Details"
},
"historyData": {
"history": "History",
"ancHistory": {
"pastHistory": "Past History",
"pastIllnessDataANC_OPD_NCD_PNC": {
"pastIllness": "Past Illness",
"illness": "Illness"
},
"pastHOSurgeryANC_OPD_NCD_PNC": {
"pastSurgery": "Past H/o Surgery",
"hoSurgery": "H/o Surgery"
},
"previousHistoryDetails": {
"pastHistoryalert": "Past history not available",
"previousHistory": "Previous Illness and Surgery history"
},
"combordityANC_OPD_NCD_PNC": {
"comorbidityConditions": "Comorbidity/Concurrent Conditions",
"comorbidConditions": "Comorbid conditions",
"PreviousDetails": "Previous Comorbidity Condition"
},
"medicationANC_OPD_NCD_PNC": {
"medicationHistory": "Medication History",
"currentMedication": "Current Medication",
"PreviousHistory": "Previous Medication History"
},
"personalHistoryANC_OPD_NCD_PNC": {
"personalHistoryData": "Personal History (Habits / Risk Factors)",
"dietaryType": "Dietary Type",
"vegetarian": "Vegetarian",
"nonVegetarian": "Non-Vegetarian",
"physicalActivityType": "Physical Activity Type",
"sedentary": "Sedentary",
"active": "Active",
"riskySexualPracticesStatus": "Risky Sexual Practices Status",
"tobaccoData": {
"tobaccoUseStatus": "Tobacco Use Status",
"tobacco": "Tobacco",
"typeofTobaccoUse": "Type of Tobacco Use",
"numberPerDay": "Number Per Day",
"number": "Number"
},
"alcoholData": {
"alcoholUseStatus": "Alcohol Use Status",
"alcohol": "Alcohol",
"typeofAlcohol": "Type of Alcohol",
"freqofAlcohol": "Frequency of Alcohol Intake",
"qtyofAlcoholintake": "Qty of Alcohol Intake"
},
"allergicStatus": {
"allergicStatus": "Allergic Status",
"allergy": "Allergy",
"allergyType": "Allergy Type",
"allergenName": "Allergen Name",
"typeofReaction": "Type of Reaction"
},
"previousAllergyhistory": "Previous Allergy history",
"previousAlcoholhistory": "Previous Alcohol history",
"previousTobaccohistory": "Previous Tobacco history",
"snomedTermRemoved": "Snomed Term removed"
},
"familyHistoryDataANC_OPD_NCD_PNC": {
"familyHistory": "Family History",
"diseaseType": "Disease Type",
"familyMember": "Family Member",
"H_geneticDisorders": "H/o Genetic Disorders",
"consanguineousMarriage": "H/o Consanguineous Marriage",
"geneticDisorders": "Genetic Disorders",
"previousFamilyHistory": "Previous Family History",
"pleaseSelectDiabetesMellitusInDiseaseType": "Please select Diabetes Mellitus in disease type"
},
"menstrualHistoryANC": {
"menstrualHistory": "Menstrual History",
"menstrualCycleStatus": "Menstrual Cycle Status",
"menstrualProblems": "Menstrual Problems",
"previousMenstrualHistory": "Previous Menstrual History"
}
},
"cancerScreeningHistory": {
"familyMedical": {
"familyMedicalHistory": "Family Medical History",
"diseaseType": "Disease Type",
"otherCancerDetails": "Other Cancer Details",
"familyMembers": "Family Members"
},
"personal": {
"personalHistory": "Personal History",
"tobaccoUse": "Tobacco Use",
"startAge": "Start Age (in Years)",
"stopAge": "Stop Age (in years)",
"typeofTobaccoProductsused": "Type of Tobacco Products used",
"cigarettes": "Cigarettes/Beedi- quantity/day",
"exposuretoSecondHandsmoke": "Exposure to Second Hand smoke (>5min)",
"habitofBetelnutchewing": "Habit of Betel nut chewing",
"durationofbetelquidinmouth": "Duration of betel quid in mouth (in mins)",
"alcoholuse": "Alcohol use",
"alcoholconsumed": "Alcohol consumed (within 12 months)",
"frequency": "Frequency (within 12 months)",
"dietType": "Diet Type",
"weeklyintakeofOutsidemeal": "Weekly intake of Outside meal",
"fruitconsumption": "Fruit consumption (days per week)",
"quantityconsumed": "Quantity consumed (Cups/day)",
"vegetableconsumption": "Vegetable consumption (days per week)",
"typeofoilconsumed": "Type of oil consumed",
"physicalActivityType": "Physical Activity Type",
"historyofexposuretoradiation": "History of exposure to radiation",
"historyofthyroiddisorder": "History of thyroid disorder",
"cigarette": "Cigarettes",
"filtered": "Filtered",
"nonFiltered": "Non Filtered"
},
"obstetric": {
"pregnancyStatus": "Pregnancy Status",
"obstetricHistory": "Obstetric History",
"urinepregnancytest": "Urine pregnancy test",
"nooftimespregnant": "No. of times pregnant",
"nooflivingchildren": "No. of living children",
"abortions": "Abortions",
"oralContraceptiveUsed": "Oral Contraceptive Used in 5 years",
"harmonereplacementTherapy": "Harmone replacement Therapy in 5 years",
"ageatmenarche": "Age at menarche (in years)",
"regularityofMenstrualCycle": "Regularity of Menstrual Cycle",
"lengthofMenstrualCycle": "Length of Menstrual Cycle (in days)",
"menstrualFlowduration": "Menstrual Flow duration (in days)",
"typeofFlow": "Type of Flow",
"dysmenorrhea": "Dysmenorrhea",
"interMenstrualBleeding": "Inter-Menstrual Bleeding",
"ageAtmenopause": "Age At menopause (in years)",
"postMenopausalBleeding": "Post-menopausal Bleeding"
}
},
"opd_NCD_PNCHistory": {
"perinatal_OPD": {
"perinatalHistory": "Perinatal History",
"placeofDelivery": "Place of Delivery",
"typeofDelivery": "Type of Delivery",
"complicationatBirth": "Complication at Birth",
"gestation": "Gestation",
"birthWeight": "Birth Weight (kg)"
},
"immunization": {
"ImmunizationHistory": "Immunization History",
"age": "Age",
"Vaccines": "Vaccines",
"sctCode":"Snomed Code",
"sctTerm":"Snomed Term",
"Status": "Status"
},
"otherVaccine": {
"vaccine": "Vaccine",
"otherVaccineName":"Other Vaccine Name",
"otherVaccines": "Other/Optional Vaccines",
"nameofVaccine": "Name of Vaccine",
"vaccineSctCode": "Vaccine Snomed CT Code",
"sctCode":"Snomed Code",
"sctTerm":"Snomed Term",
"ageatReceived": "Age at Received",
"facilityName": "Facility Name"
},
"feeding": {
"feedingHistory": "Feeding History",
"typeofFeeds": "Type of Feeds during first 6 months",
"ageatweaning": "Age at weaning/complimentary feeds introduced",
"numberofComplimentaryfoodservings": "Number of Complimentary food servings in a day",
"foodIntoleranceStatus": "Food Intolerance Status",
"typeofFoodIntolerance": "Type of Food Intolerance"
},
"development": {
"previousDevelopmentalHistory": "Previous Developmental History",
"developmentHistory": "Development History",
"grossMotorMilestone": "Gross Motor Milestone",
"fineMotorMilestone": "Fine Motor Milestone",
"socialMilestone": "Social Milestone",
"languageMilestone": "Language Milestone",
"developmentalProblems": "Developmental Problems"
},
"menstrual": {
"menstrualHistory": "Menstrual History",
"menstrualCycleStatus": "Menstrual Cycle Status",
"regularityofMenstrualCycles": "Regularity of Menstrual Cycles",
"lengthofMenstrualCycle": "Length of Menstrual Cycle",
"menstrualBloodFlowDuration": "Menstrual Blood Flow Duration",
"menstrualProblems": "Menstrual Problems",
"lastMenstrualPeriod": "Last Menstrual Period"
},
"obstetric": {
"pastObstetricHistory": "Past Obstetric History",
"totalNumberofPregnancies": "Total Number of Pregnancies",
"number": "Number",
"orderofPregnancy": "Order of Pregnancy",
"complicationduringPregnancy": "Complication during Pregnancy",
"outcomeofpregnancy": "Outcome of pregnancy",
"placeofDelivery": "Place of Delivery",
"durationofPregnancy": "Duration of Pregnancy",
"deliveryType": "Type of Delivery",
"deliveryComplication": "Delivery Complication",
"others": "Others",
"postpartumComplication": "Postpartum Complication",
"newBornComplication": "New Born Complication",
"congenitalAnomalies": "Congenital Anomalies in Newborn",
"typeOfAbortion":"Type of Abortion",
"noOfcompletedWeeks": "No. Of Completed Weeks of Pregnancy",
"complicationPostAbortion": "Complication Post Abortion",
"typeofFacility":"Type Of Facility"
}
},
"familyhistory": {
"familydiseasehistory": "Family Disease history",
"previousfamilyhistory": "Previous Family History Details",
"otherdiseasetype": "Other Disease Type",
"isgeneticdisorder": "Is Genetic Disorder",
"isconsanguineousmarrige": "Is Consanguineous Marrige",
"cancerdiseasetype": "Cancer Disease Type"
},
"personalhistory": {
"personaldiethistory": "Personal diet history ",
"previouspersonalhistory": "Previous personal history details",
"fruitquantity": "Fruit Quantity(Cups/day)",
"vegetablequantity": "Vegetable Quantity(Cups/day)",
"weeklyintakeofoutsidepreparedmeal": "Weekly Intake Of Outside Prepared Meal",
"historyofanythyroiddisorder": "History of any thyroid disorder"
},
"personalhabit": {
"personalhabithistroy": "Personal habit histroy",
"Previouspersonalhistory": "Previous personal history details",
"typeoftobaccoproduct": "Type Of Tobacco Product",
"Quantityperday": "Quantity(Per Day)",
"filteredcigarette": "Filtered Cigarette",
"exposuretocigarette": "Exposure to Cigarette",
"betelnutchewing": "Betel Nut Chewing",
"frequencyofalcoholuse": "Frequency Of Alcohol Use(within 12 months)"
},
"obstetrichistory": {
"obstetricshistory": "Obstetric history",
"previousobstetrichistory": "Previous obstetric history details",
"previousObstetricHist":"Previous Obstetric History",
"pregorder": "Preg Order",
"Pregcomplicationtype": "Preg Complication Type",
"otherpregcomplication": "Other Preg Complication",
"durationtype": "Duration Type",
"deliverytype": "Delivery Type",
"deliveryplace": "Delivery Place",
"otherdeliveryplace": "Other Delivery Place",
"deliverycomplicationtype": "Delivery Complication Type",
"otherdeliverycomplication": "Other Delivery Complication",
"PregOutcome": "Preg Outcome",
"postpartumcomplicationtype": "Postpartum Complication Type",
"otherpostpartumcompType": "Other Postpartum Complication",
"otherpostnatalcomplication": "Other Post Natal Complication",
"OtherNewBornComplication": "Other New Born Complication"
},
"Previousillness": {
"previousillnessandsurgery": "Previous Illness and Surgery history",
"previouspasthistory": "Previous Past History Details",
"illnesstype": "Illness Type",
"otherillnesstype": "Other Illness Type",
"yearofillness": "Year of Illness",
"surgerytype": "Surgery Type",
"othersurgerytype": "Other Surgery Type",
"yearofsurgery": "Year of Surgery"
},
"comorbiditycondition": {
"previouscomorbiditycondition": "Previous Comorbidity Condition",
"previouscomorbidityhistory": "Previous Comorbidity History Details",
"othercomorbidcondition": "Other Comorbid Condition"
},
"Medicationhistorydetails": {
"previousmedicationhistory": "Previous Medication History",
"previousmedicationhistorydetails": "Previous Medication History Details",
"currentmedication": "Current Medication"
},
"Allergyhistory": {
"previousallergyhistory": "Previous Allergy history",
"previousallergyhistorydetails": "Previous Allergy History Details",
"allergystatus": "Allergy Status",
"allergicreactiontype": "Allergic Reaction Type",
"otherallergicreaction": "Other Allergic Reaction"
},
"Perinatalhistorydetails": {
"previousperinatalhistory": "Previous Perinatal History",
"developmentalhistorydetails": "Previous Developmental History Details",
"otherplaceofdelivery": "Other Place of Delivery",
"otherpomplicationatBirth": "Other Complication at Birth"
},
"Previousdevelopmental": {
"developmentproblem": "Development Problem"
},
"Othervaccineshistory": {
"previousothervaccineshistory": "Previous Other Vaccines History",
"defaultreceivingage": "Default Receiving Age",
"Vaccinename": "Vaccine Name",
"actualreceivingage": "Actual Receiving Age",
"receivedfacilityname": "Received Facility Name"
},
"Feedinghistorydetails": {
"previousfeedinghistory": "Previous Feeding History",
"childid": "Child ID",
"beneficiarymotherid": "Beneficiary Mother ID",
"typeoffeed": "Type of Feed",
"compfeedstartage": "Comp Feed Start Age",
"noofcompfeedperday": "No of Comp Feed Per Day"
},
"QuickConsultDetails": {
"quickconsult": "Quick Consult",
"basicinformation": "Basic Information",
"chiefcomplaintsdescription": "Chief Complaints Description"
},
"Previousmenstrualhistory": {
"previousmenstrualhistory": "Previous Menstrual History Details",
"cyclelength": "Cycle Length",
"bloodflowduration": "Blood Flow Duration",
"problemname": "Problem Name"
},
"Alcoholhistory": {
"previousalcoholhistorydetails": "Previous Alcohol History Details",
"Alcohol Intake Status": "Alcohol Intake Status",
"alcoholtype": "Alcohol Type",
"otheralcoholtype": "Other Alcohol Type",
"alcoholintakefrequency": "Alcohol Intake Frequency",
"avgalcoholconsumption": "Avg Alcohol Consumption",
"alcoholusestartedate": "Alcohol Use Started Date",
"riskysexualpracticesstatus": "Risky Sexual Practices Status"
},
"Tobaccohistory": {
"tobaccousetype": "Tobacco Use Type",
"othertobaccousetype": "Other Tobacco Use Type",
"tobaccousestartdate": "Tobacco Use Start Date"
},
"ncdPhysicalActivityHistory": {
"physicalActivityHistory": "Physical Activity History",
"previousPhysicalActivityHistory":"Previous Physical Activity History",
"physicalActivityType": "Physical Activity Type",
"sedentary": "Sedentary",
"active": "Active",
"physcialActivityQuestions": "Physcial Activity Questions"
}
},
"vitalsDetails": {
"AnthropometryDataANC_OPD_NCD_PNC": {
"anthropometry": "Anthropometry",
"height": "Height(cm)",
"waist": "Waist(cm)",
"weight": "Weight(kg)",
"BMI": "BMI",
"obesity": "Obesity",
"underweight": "Underweight",
"normalWeight": "Normal Weight",
"overweight": "Overweight",
"hipCircumference": "Hip Circumference(cm)",
"waisttoHipRatio": "Waist to Hip Ratio",
"headCircumference": "Head Circumference",
"midUpperArmCircumference": "Mid Upper Arm Circumference",
"BodyTemperature": "Body Temperature"
},
"vitalsDataANC_OPD_NCD_PNC": {
"vitals": "Vitals",
"temperature": "Temperature(F)",
"pulseRate": "Pulse Rate(per min)",
"systolicBP": "Systolic BP(mmHg)",
"diastolicBP": "Diastolic BP(mmHg)",
"respiratoryRate": "Respiratory Rate(per min)"
},
"vitalsCancerscreening_QC": {
"waistCircumference": "Waist Circumference(cm)",
"bloodPressure1": "Blood Pressure (1)",
"bloodPressure2": "Blood Pressure (2)",
"bloodPressure3": "Blood Pressure (3)",
"HbA1c": "HbA1c(%)",
"hemoglobin": "Hemoglobin(mg/dl)",
"bloodGlucose": "Blood Glucose",
"fasting": "Fasting",
"random": "Random",
"postPrandial": "2Hr Post Prandial",
"systolic": "Systolic",
"diastolic": "Diastolic",
"BloodGlucoseFasting": "Blood Glucose (Fasting)",
"BloodGlucoseRandom": "Blood Glucose (Random)",
"BloodGlucosePP": "Blood Glucose (2 Hrs PP)"
},
"vitalsNCDScreening": {
"nCDScreening": "NCD Screening",
"screeningCondition": "Screening Condition",
"reasonforscreening": "Reason for screening",
"screeningVisitNo": "Screening Visit No.",
"screeningTest": "Screening Test",
"nCDScreeningOutcome": "NCD Screening Outcome",
"bloodPressure": "Blood Pressure",
"systolicBloodPressure": "Systolic Blood Pressure",
"systolicBP1": "Systolic BP 1(mmHg)",
"systolicBP2": "Systolic BP 2(mmHg)",
"systolicBP3": "Systolic BP 3(mmHg)",
"averageSystolicBP": "Average Systolic BP(mmHg)",
"diastolicBloodPressure": "Diastolic Blood Pressure",
"diastolicBP1": "Diastolic BP 1(mmHg)",
"diastolicBP2": "Diastolic BP 2(mmHg)",
"diastolicBP3": "Diastolic BP 3(mmHg)",
"bloodGlucose": "Blood Glucose",
"notSpecified": "Not Specified",
"bloodPressureStatus": "Blood Pressure Status",
"diabeticStatus": "Diabetic Status",
"nextScreeningDate": "Next Screening Date",
"screeningComplete": "Screening Complete"
}
},
"ExaminationData": {
"examination": "Examination",
"ANC_OPD_PNCExamination": {
"genExamination": {
"quickening":"Quickening",
"foetalmovements":"Fetal movements",
"generalExamination": "General Examination",
"consciousness": "Consciousness",
"cooperation": "Cooperation",
"built": "Built and appearance",
"coherence": "Coherence",
"comfortness": "Comfortness",
"gait": "Gait",
"dangersigns": "Danger signs",
"pallor": "Pallor",
"jaundice": "Jaundice",
"cyanosis": "Cyanosis",
"clubbing": "Clubbing",
"lymphadenopathy": "Lymphadenopathy",
"lymph": "Lymph Nodes involved",
"typeofLymphadenopathy": "Type of Lymphadenopathy",
"edema": "Edema",
"extentofEdema": "Extent of Edema",
"typeofEdema": "Type of Edema",
"pitting": "Pitting",
"nonPitting": "Non-Pitting"
},
"headToToe": {
"headexamination": "Head to Toe examination",
"Head": "Head",
"Eyes": "Eyes",
"Ears": "Ears",
"Nose": "Nose",
"Oralcavity": "Oral cavity",
"Throat": "Throat",
"Breast": "Breast",
"Trunk": "Trunk",
"upperlimbs": "Upper limbs",
"lowerlimbs": "Lower limbs",
"Skin": "Skin",
"Hairs": "Hairs",
"Nails": "Nails"
},
"systemic": {
"systemicExamination": "Systemic Examination",
"cardioForANC_OPD_PNC": {
"cardioSystem": "Cardio Vascular System",
"jugularVenousPressure": "Jugular Venous Pressure",
"apexBeatLocation": "Apex Beat Location",
"apexBeatType": "Apex Beat Type",
"firstHeartSound": "First Heart Sound(S1)",
"secondHeartSound": "Second Heart Sound(S2)",
"otherHeartSounds": "Other Heart Sounds(S3, S4)",
"murmurs": "Murmurs",
"pericardialrub": "Pericardial Rub"
},
"respiratoryANC_OPD_PNC": {
"respiratorySystem": "Respiratory System",
"trachea": "Trachea",
"inspection": "Inspection",
"signsDistress": "Signs of Respiratory Distress",
"palpation": "Palpation",
"breathsounds": "Breath sounds",
"stridor": "Stridor",
"crepitations": "Crepitations",
"wheezing": "Wheezing",
"pleuralRub": "Pleural Rub",
"conductedSounds": "Conducted Sounds",
"percussion": "Percussion"
},
"centralANC_OPD_PNC": {
"centralNervousSystem": "Central Nervous System",
"handedness": "Handedness",
"cranial": "Cranial nerves examination",
"motorsystem": "Motor system",
"sensorysystem": "Sensory system",
"autonomicsystem": "Autonomic system",
"cerebellarsigns": "Cerebellar signs",
"signsofMeningealIrritation": "Signs of Meningeal Irritation",
"skull": "Skull"
},
"musculoskeletalANC_OPD_PNC": {
"musculoskeletalSystem": "Musculoskeletal System",
"joints": "Joints",
"typeofJoint": "Type of Joint",
"laterality": "Laterality",
"abnormality": "Abnormality",
"upperLimbs": "Upper Limbs",
"lowerLimbs": "Lower Limbs",
"observation": "Observation",
"chestwall": "Chest wall",
"spine": "Spine"
},
"genitoANC_OPD_PNC": {
"GenitoUrinarySystem": "Genito Urinary System",
"RenalAngle": "Renal Angle",
"Suprapubicregion": "Supra pubic region",
"Externalgenitalia": "External genitalia"
},
"obstetric": {
"obstetricExamination": "Obstetric Examination",
"fundalHeight": "Fundal Height(FH)",
"fHandPOAStatus": "FH and POA Status",
"interpretationFHandPOA": "Interpretation FH and POA",
"fetalMovements": "Fetal Movements",
"fetalHeartsounds": "Fetal Heart sounds",
"fetalHeartRate": "Fetal Heart Rate (per min)",
"fetalposition": "Fetal position/ Lie",
"fetalPresentation": "Fetal Presentation",
"abdominalScars": "Abdominal Scars"
},
"Gastro": {
"gastroIntestinalSystem": "Gastro Intestinal System",
"inspection": "Inspection",
"abdomenTexture": "Abdomen Texture",
"liver": "Liver",
"spleen": "Spleen",
"tenderness": "Tenderness",
"location": "Location of tenderness",
"percussion": "Percussion",
"auscultation": "Auscultation",
"analregion": "Anal region"
}
}
},
"cancerScreeningExamination": {
"symptoms": {
"symptoms": "Symptoms",
"shortnessofbreath": "Shortness of breath",
"coughweeks": "Cough >= 2 weeks",
"bloodinsputum": "Blood in sputum",
"difficultyinopeningmouth": "Difficulty in opening mouth",
"nonhealing": "Non healing ulcer/patch/growth",
"changeInTheToneOfVoice": "Change In The Tone Of Voice",
"foulsmellingvaginaldischarge": "Foul smelling vaginal discharge",
"lumpinbreast": "Lump in breast",
"bloodstaineddischargefromnipple": "Blood stained discharge from nipple",
"changeinshapeandsizeofbreasts": "Change in shape and size of breasts",
"vaginalbleedingbetweenperiods": "Vaginal bleeding between periods",
"vaginalbleedingaftermenopause": "Vaginal bleeding after menopause",
"breastEnlargement": "Breast Enlargement",
"briefHistory": "Brief History",
"lymphnodes": "Lymph nodes",
"mobility": "Mobility",
"subMental": "Sub Mental",
"subMandibular": "Sub Mandibular",
"subdeepcervical": "Sub deep cervical",
"jugulodigastric": "Jugulo-digastric",
"midcervical": "Mid cervical",
"interiorcervical": "Interior cervical",
"supraclavicular": "Supra clavicular",
"posteriorTriangle": "Posterior Triangle",
"axillaryLymphNodes": "Axillary Lymph Nodes"
},