@abihealth/goapp-react-native 1.13.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +157 -0
- package/README.md +3 -0
- package/dist/common/animations/Animation.d.ts +10 -0
- package/dist/common/animations/Animation.js +38 -0
- package/dist/common/animations/FindingAnimation/index.d.ts +2 -0
- package/dist/common/animations/FindingAnimation/index.js +20 -0
- package/dist/common/animations/FindingAnimation/xml.d.ts +2 -0
- package/dist/common/animations/FindingAnimation/xml.js +7 -0
- package/dist/common/animations/HorizontalLoadingAnimation/index.d.ts +5 -0
- package/dist/common/animations/HorizontalLoadingAnimation/index.js +14 -0
- package/dist/common/animations/HorizontalLoadingAnimation/xml.d.ts +1 -0
- package/dist/common/animations/HorizontalLoadingAnimation/xml.js +5 -0
- package/dist/common/animations/LoadingCircleAnimation/index.d.ts +2 -0
- package/dist/common/animations/LoadingCircleAnimation/index.js +24 -0
- package/dist/common/animations/LoadingCircleAnimation/xml.d.ts +2 -0
- package/dist/common/animations/LoadingCircleAnimation/xml.js +5 -0
- package/dist/common/animations/LoadingDotsAnimation/index.d.ts +6 -0
- package/dist/common/animations/LoadingDotsAnimation/index.js +17 -0
- package/dist/common/animations/LoadingDotsAnimation/xml.d.ts +1 -0
- package/dist/common/animations/LoadingDotsAnimation/xml.js +5 -0
- package/dist/common/animations/LoadingHeart.d.ts +2 -0
- package/dist/common/animations/LoadingHeart.js +92 -0
- package/dist/common/api/auth.d.ts +2 -0
- package/dist/common/api/auth.js +18 -0
- package/dist/common/api/config.d.ts +7 -0
- package/dist/common/api/config.js +15 -0
- package/dist/common/api/consultation.d.ts +6 -0
- package/dist/common/api/consultation.js +80 -0
- package/dist/common/api/models/auth.d.ts +8 -0
- package/dist/common/api/models/auth.js +2 -0
- package/dist/common/api/models/consultation.d.ts +70 -0
- package/dist/common/api/models/consultation.js +23 -0
- package/dist/common/api/models/region.d.ts +1 -0
- package/dist/common/api/models/region.js +2 -0
- package/dist/common/api/models/user.d.ts +5 -0
- package/dist/common/api/models/user.js +2 -0
- package/dist/common/api/models/websocket.d.ts +6 -0
- package/dist/common/api/models/websocket.js +2 -0
- package/dist/common/api/user.d.ts +2 -0
- package/dist/common/api/user.js +10 -0
- package/dist/common/api/websocket.d.ts +6 -0
- package/dist/common/api/websocket.js +66 -0
- package/dist/common/assets/background-pattern.png +0 -0
- package/dist/common/components/ActionSheet.d.ts +6 -0
- package/dist/common/components/ActionSheet.js +43 -0
- package/dist/common/components/AnswerScreen/Card.d.ts +8 -0
- package/dist/common/components/AnswerScreen/Card.js +76 -0
- package/dist/common/components/AnswerScreen/CloseConsultationActionSheet.d.ts +2 -0
- package/dist/common/components/AnswerScreen/CloseConsultationActionSheet.js +109 -0
- package/dist/common/components/AnswerScreen/DeliveryAddressCard.d.ts +5 -0
- package/dist/common/components/AnswerScreen/DeliveryAddressCard.js +39 -0
- package/dist/common/components/AnswerScreen/PrescriptionCard/PrescriptionCardHeader.d.ts +5 -0
- package/dist/common/components/AnswerScreen/PrescriptionCard/PrescriptionCardHeader.js +79 -0
- package/dist/common/components/AnswerScreen/PrescriptionCard/index.d.ts +5 -0
- package/dist/common/components/AnswerScreen/PrescriptionCard/index.js +46 -0
- package/dist/common/components/AnswerScreen/Summary.d.ts +5 -0
- package/dist/common/components/AnswerScreen/Summary.js +49 -0
- package/dist/common/components/BackgroundPattern.d.ts +2 -0
- package/dist/common/components/BackgroundPattern.js +19 -0
- package/dist/common/components/Button.d.ts +14 -0
- package/dist/common/components/Button.js +124 -0
- package/dist/common/components/CancelConsultationButton.d.ts +2 -0
- package/dist/common/components/CancelConsultationButton.js +107 -0
- package/dist/common/components/Card.d.ts +2 -0
- package/dist/common/components/Card.js +13 -0
- package/dist/common/components/Checkbox.d.ts +7 -0
- package/dist/common/components/Checkbox.js +75 -0
- package/dist/common/components/DateInput.d.ts +8 -0
- package/dist/common/components/DateInput.js +76 -0
- package/dist/common/components/DoctorProfileCard.d.ts +8 -0
- package/dist/common/components/DoctorProfileCard.js +128 -0
- package/dist/common/components/FadeIn.d.ts +8 -0
- package/dist/common/components/FadeIn.js +66 -0
- package/dist/common/components/FormControl.d.ts +8 -0
- package/dist/common/components/FormControl.js +40 -0
- package/dist/common/components/FormWrapper.d.ts +11 -0
- package/dist/common/components/FormWrapper.js +46 -0
- package/dist/common/components/Header.d.ts +10 -0
- package/dist/common/components/Header.js +109 -0
- package/dist/common/components/Input.d.ts +8 -0
- package/dist/common/components/Input.js +74 -0
- package/dist/common/components/Modal/AttachmentPreviewModal.d.ts +9 -0
- package/dist/common/components/Modal/AttachmentPreviewModal.js +68 -0
- package/dist/common/components/Modal/CancelModal.d.ts +9 -0
- package/dist/common/components/Modal/CancelModal.js +16 -0
- package/dist/common/components/Modal/CloseConsultationModal.d.ts +9 -0
- package/dist/common/components/Modal/CloseConsultationModal.js +16 -0
- package/dist/common/components/Modal/DoctorProfileModal.d.ts +8 -0
- package/dist/common/components/Modal/DoctorProfileModal.js +47 -0
- package/dist/common/components/Modal/ModalHeader.d.ts +7 -0
- package/dist/common/components/Modal/ModalHeader.js +40 -0
- package/dist/common/components/Modal/TwoOptionsModal.d.ts +14 -0
- package/dist/common/components/Modal/TwoOptionsModal.js +58 -0
- package/dist/common/components/Modal/index.d.ts +7 -0
- package/dist/common/components/Modal/index.js +57 -0
- package/dist/common/components/PhoneInput.d.ts +11 -0
- package/dist/common/components/PhoneInput.js +81 -0
- package/dist/common/components/Reminder.d.ts +7 -0
- package/dist/common/components/Reminder.js +214 -0
- package/dist/common/components/ScreenWrapper.d.ts +12 -0
- package/dist/common/components/ScreenWrapper.js +46 -0
- package/dist/common/components/Select.d.ts +17 -0
- package/dist/common/components/Select.js +132 -0
- package/dist/common/components/Slide.d.ts +13 -0
- package/dist/common/components/Slide.js +83 -0
- package/dist/common/components/SlideUp.d.ts +8 -0
- package/dist/common/components/SlideUp.js +69 -0
- package/dist/common/components/Text.d.ts +22 -0
- package/dist/common/components/Text.js +130 -0
- package/dist/common/contexts/ConsultationContext.d.ts +22 -0
- package/dist/common/contexts/ConsultationContext.js +215 -0
- package/dist/common/contexts/FormContext.d.ts +25 -0
- package/dist/common/contexts/FormContext.js +55 -0
- package/dist/common/contexts/ThemeContext.d.ts +13 -0
- package/dist/common/contexts/ThemeContext.js +18 -0
- package/dist/common/hooks/useConsultation.d.ts +13 -0
- package/dist/common/hooks/useConsultation.js +166 -0
- package/dist/common/hooks/useForm.d.ts +10 -0
- package/dist/common/hooks/useForm.js +107 -0
- package/dist/common/hooks/useHeader.d.ts +4 -0
- package/dist/common/hooks/useHeader.js +10 -0
- package/dist/common/hooks/useTheme.d.ts +2 -0
- package/dist/common/hooks/useTheme.js +26 -0
- package/dist/common/hooks/useUser.d.ts +4 -0
- package/dist/common/hooks/useUser.js +10 -0
- package/dist/common/icons/AbiLogoIcon.d.ts +2 -0
- package/dist/common/icons/AbiLogoIcon.js +53 -0
- package/dist/common/icons/BackArrowIcon.d.ts +2 -0
- package/dist/common/icons/BackArrowIcon.js +49 -0
- package/dist/common/icons/CalendarIcon.d.ts +3 -0
- package/dist/common/icons/CalendarIcon.js +43 -0
- package/dist/common/icons/CheckSuccessIcon.d.ts +3 -0
- package/dist/common/icons/CheckSuccessIcon.js +47 -0
- package/dist/common/icons/CloseIcon.d.ts +5 -0
- package/dist/common/icons/CloseIcon.js +51 -0
- package/dist/common/icons/DoctorIcon.d.ts +3 -0
- package/dist/common/icons/DoctorIcon.js +48 -0
- package/dist/common/icons/DoctorImagePlaceholderIcon.d.ts +5 -0
- package/dist/common/icons/DoctorImagePlaceholderIcon.js +64 -0
- package/dist/common/icons/DropdownIcon.d.ts +3 -0
- package/dist/common/icons/DropdownIcon.js +41 -0
- package/dist/common/icons/ExitIcon.d.ts +2 -0
- package/dist/common/icons/ExitIcon.js +58 -0
- package/dist/common/icons/InfoIcon.d.ts +2 -0
- package/dist/common/icons/InfoIcon.js +49 -0
- package/dist/common/icons/KoCircleIcon.d.ts +3 -0
- package/dist/common/icons/KoCircleIcon.js +42 -0
- package/dist/common/icons/MotorbikeIcon.d.ts +2 -0
- package/dist/common/icons/MotorbikeIcon.js +65 -0
- package/dist/common/icons/NoCaseFoundIcon.d.ts +3 -0
- package/dist/common/icons/NoCaseFoundIcon.js +55 -0
- package/dist/common/icons/PdfDownloadIcon.d.ts +2 -0
- package/dist/common/icons/PdfDownloadIcon.js +58 -0
- package/dist/common/icons/PdfIcon.d.ts +2 -0
- package/dist/common/icons/PdfIcon.js +50 -0
- package/dist/common/icons/PersonIcon.d.ts +3 -0
- package/dist/common/icons/PersonIcon.js +45 -0
- package/dist/common/icons/PillsIcon.d.ts +2 -0
- package/dist/common/icons/PillsIcon.js +52 -0
- package/dist/common/icons/PlaneIcon.d.ts +5 -0
- package/dist/common/icons/PlaneIcon.js +48 -0
- package/dist/common/icons/RatingIcon.d.ts +2 -0
- package/dist/common/icons/RatingIcon.js +53 -0
- package/dist/common/icons/StarIcon.d.ts +4 -0
- package/dist/common/icons/StarIcon.js +57 -0
- package/dist/common/icons/TextConsultationIcon.d.ts +4 -0
- package/dist/common/icons/TextConsultationIcon.js +53 -0
- package/dist/common/icons/TrashIcon.d.ts +2 -0
- package/dist/common/icons/TrashIcon.js +49 -0
- package/dist/common/icons/VideoConsultationIcon.d.ts +4 -0
- package/dist/common/icons/VideoConsultationIcon.js +50 -0
- package/dist/common/index.d.ts +57 -0
- package/dist/common/index.js +114 -0
- package/dist/common/locale/i18n.d.ts +5 -0
- package/dist/common/locale/i18n.js +79 -0
- package/dist/common/locale/translations/ar-AE.base.json +604 -0
- package/dist/common/locale/translations/ar-LB.base.json +604 -0
- package/dist/common/locale/translations/bg.base.json +488 -0
- package/dist/common/locale/translations/cs.base.json +499 -0
- package/dist/common/locale/translations/en.base.json +923 -0
- package/dist/common/locale/translations/es-MX.base.json +827 -0
- package/dist/common/locale/translations/es.base.json +827 -0
- package/dist/common/locale/translations/fr.base.json +605 -0
- package/dist/common/locale/translations/hu.base.json +488 -0
- package/dist/common/locale/translations/pl.base.json +487 -0
- package/dist/common/locale/translations/ro.base.json +501 -0
- package/dist/common/locale/translations/ru.base.json +603 -0
- package/dist/common/locale/translations/sk.base.json +535 -0
- package/dist/common/locale/translations/zh-HK.base.json +349 -0
- package/dist/common/locale/translations/zh-SG.base.json +603 -0
- package/dist/common/locale/translations/zh-TW.base.json +873 -0
- package/dist/common/screens/AnswerScreen.d.ts +11 -0
- package/dist/common/screens/AnswerScreen.js +101 -0
- package/dist/common/screens/MatchScreen.d.ts +5 -0
- package/dist/common/screens/MatchScreen.js +36 -0
- package/dist/common/screens/MatchingScreen.d.ts +2 -0
- package/dist/common/screens/MatchingScreen.js +41 -0
- package/dist/common/screens/NoConsultationFoundScreen.d.ts +2 -0
- package/dist/common/screens/NoConsultationFoundScreen.js +34 -0
- package/dist/common/screens/PreparingSummaryScreen.d.ts +5 -0
- package/dist/common/screens/PreparingSummaryScreen.js +35 -0
- package/dist/common/screens/RatingScreen.d.ts +2 -0
- package/dist/common/screens/RatingScreen.js +198 -0
- package/dist/common/screens/index.d.ts +3 -0
- package/dist/common/screens/index.js +29 -0
- package/dist/common/types/consultation.d.ts +93 -0
- package/dist/common/types/consultation.js +41 -0
- package/dist/common/types/deliveryAddress.d.ts +18 -0
- package/dist/common/types/deliveryAddress.js +11 -0
- package/dist/common/types/events.d.ts +13 -0
- package/dist/common/types/events.js +15 -0
- package/dist/common/types/prescription.d.ts +52 -0
- package/dist/common/types/prescription.js +31 -0
- package/dist/common/types/professional.d.ts +14 -0
- package/dist/common/types/professional.js +2 -0
- package/dist/common/types/theme.d.ts +82 -0
- package/dist/common/types/theme.js +58 -0
- package/dist/common/types/user.d.ts +10 -0
- package/dist/common/types/user.js +2 -0
- package/dist/common/utils/platform.d.ts +3 -0
- package/dist/common/utils/platform.js +7 -0
- package/dist/common/utils/professional.d.ts +2 -0
- package/dist/common/utils/professional.js +12 -0
- package/dist/common/utils/zod.d.ts +5 -0
- package/dist/common/utils/zod.js +19 -0
- package/dist/index.d.ts +65 -0
- package/dist/index.js +133 -0
- package/dist/video-consultations/animations/CallingAnimation/index.d.ts +2 -0
- package/dist/video-consultations/animations/CallingAnimation/index.js +17 -0
- package/dist/video-consultations/animations/CallingAnimation/xml.d.ts +2 -0
- package/dist/video-consultations/animations/CallingAnimation/xml.js +5 -0
- package/dist/video-consultations/api/models/video.d.ts +10 -0
- package/dist/video-consultations/api/models/video.js +2 -0
- package/dist/video-consultations/api/video.d.ts +3 -0
- package/dist/video-consultations/api/video.js +12 -0
- package/dist/video-consultations/components/AgoraWrapper/components/BaseRenderUsers.d.ts +12 -0
- package/dist/video-consultations/components/AgoraWrapper/components/BaseRenderUsers.js +174 -0
- package/dist/video-consultations/components/AgoraWrapper/components/BtnControls.d.ts +14 -0
- package/dist/video-consultations/components/AgoraWrapper/components/BtnControls.js +55 -0
- package/dist/video-consultations/components/AgoraWrapper/components/ui/index.d.ts +14 -0
- package/dist/video-consultations/components/AgoraWrapper/components/ui/index.js +100 -0
- package/dist/video-consultations/components/AgoraWrapper/index.d.ts +8 -0
- package/dist/video-consultations/components/AgoraWrapper/index.js +173 -0
- package/dist/video-consultations/components/Modal/EndVideoCallModal.d.ts +8 -0
- package/dist/video-consultations/components/Modal/EndVideoCallModal.js +15 -0
- package/dist/video-consultations/components/VideoConsultation.d.ts +7 -0
- package/dist/video-consultations/components/VideoConsultation.js +42 -0
- package/dist/video-consultations/helpers/eventHandler.d.ts +14 -0
- package/dist/video-consultations/helpers/eventHandler.js +61 -0
- package/dist/video-consultations/hooks/useInitRtcEngine.d.ts +15 -0
- package/dist/video-consultations/hooks/useInitRtcEngine.js +194 -0
- package/dist/video-consultations/icons/EndVideoCallIcon.d.ts +2 -0
- package/dist/video-consultations/icons/EndVideoCallIcon.js +51 -0
- package/dist/video-consultations/icons/HangUpIcon.d.ts +3 -0
- package/dist/video-consultations/icons/HangUpIcon.js +41 -0
- package/dist/video-consultations/icons/MicroOffIcon.d.ts +7 -0
- package/dist/video-consultations/icons/MicroOffIcon.js +47 -0
- package/dist/video-consultations/icons/MicroOnIcon.d.ts +3 -0
- package/dist/video-consultations/icons/MicroOnIcon.js +42 -0
- package/dist/video-consultations/icons/PersonIcon.d.ts +3 -0
- package/dist/video-consultations/icons/PersonIcon.js +45 -0
- package/dist/video-consultations/icons/SwitchCameraIcon.d.ts +3 -0
- package/dist/video-consultations/icons/SwitchCameraIcon.js +41 -0
- package/dist/video-consultations/icons/VideoOffIcon.d.ts +5 -0
- package/dist/video-consultations/icons/VideoOffIcon.js +44 -0
- package/dist/video-consultations/icons/VideoOnIcon.d.ts +3 -0
- package/dist/video-consultations/icons/VideoOnIcon.js +41 -0
- package/dist/video-consultations/index.d.ts +10 -0
- package/dist/video-consultations/index.js +24 -0
- package/dist/video-consultations/screens/DeliveryAddressScreen.d.ts +2 -0
- package/dist/video-consultations/screens/DeliveryAddressScreen.js +84 -0
- package/dist/video-consultations/screens/EndingVideoScreen.d.ts +5 -0
- package/dist/video-consultations/screens/EndingVideoScreen.js +27 -0
- package/dist/video-consultations/screens/JoinVideoCallScreen.d.ts +5 -0
- package/dist/video-consultations/screens/JoinVideoCallScreen.js +108 -0
- package/dist/video-consultations/screens/ProcessingPrescriptionScreen.d.ts +2 -0
- package/dist/video-consultations/screens/ProcessingPrescriptionScreen.js +32 -0
- package/dist/video-consultations/screens/VideoCallScreen.d.ts +3 -0
- package/dist/video-consultations/screens/VideoCallScreen.js +77 -0
- package/dist/video-consultations/utils/permission.d.ts +14 -0
- package/dist/video-consultations/utils/permission.js +97 -0
- package/package.json +58 -0
|
@@ -0,0 +1,923 @@
|
|
|
1
|
+
{
|
|
2
|
+
"answer.reset": "Ask a new question",
|
|
3
|
+
"answer.thanks.rating": "Thanks for your rating!",
|
|
4
|
+
"attachmentPreview.title": "Attachment",
|
|
5
|
+
"back": "Back",
|
|
6
|
+
"button.1_week": "1 week ago",
|
|
7
|
+
"button.2_5_mg": "2.5 mg",
|
|
8
|
+
"button.2_week": "2 weeks ago",
|
|
9
|
+
"button.5_mg": "5 mg",
|
|
10
|
+
"button.ask": "Ask",
|
|
11
|
+
"button.cancel": "CANCEL",
|
|
12
|
+
"button.cancel_case": "Cancel case",
|
|
13
|
+
"button.close_consultation": "Close consultation",
|
|
14
|
+
"button.confirm": "CONFIRM",
|
|
15
|
+
"button.confirm_close": "Confirm & close",
|
|
16
|
+
"button.continue": "CONTINUE",
|
|
17
|
+
"button.create_new_password": "Create New Password",
|
|
18
|
+
"button.dont_remind": "Don't remind me",
|
|
19
|
+
"button.end": "END",
|
|
20
|
+
"button.forgot_password": "Forgot password?",
|
|
21
|
+
"button.higher": "Higher",
|
|
22
|
+
"button.less_1_week": "Less than 1 week ago",
|
|
23
|
+
"button.login": "Login",
|
|
24
|
+
"button.more_2_week": "More than 2 weeks ago",
|
|
25
|
+
"button.more_5": "Yes, for more than 5 mg",
|
|
26
|
+
"button.next": "NEXT",
|
|
27
|
+
"button.no": "No",
|
|
28
|
+
"button.not_yet": "Not yet",
|
|
29
|
+
"button.ok": "OK",
|
|
30
|
+
"button.open_summary": "Open summary",
|
|
31
|
+
"button.other_dont_know": "Other / Don't know",
|
|
32
|
+
"button.pay_now": "Pay now",
|
|
33
|
+
"button.remind_me": "Remind me",
|
|
34
|
+
"button.remind.1_week": "Remind me in 1 week",
|
|
35
|
+
"button.remind.3_days": "Remind me in 3 days",
|
|
36
|
+
"button.remind.tomorrow": "Remind me tomorrow",
|
|
37
|
+
"button.remove": "REMOVE",
|
|
38
|
+
"button.reset_password": "Reset password",
|
|
39
|
+
"button.save_selection": "SAVE SELECTION",
|
|
40
|
+
"button.send": "Send",
|
|
41
|
+
"button.skip": "Skip",
|
|
42
|
+
"button.sms_reminder": "SMS ME WHEN THEY REPLY",
|
|
43
|
+
"button.start_again": "START AGAIN",
|
|
44
|
+
"button.submit": "Submit",
|
|
45
|
+
"button.try_again": "Try again",
|
|
46
|
+
"button.undo": "UNDO",
|
|
47
|
+
"button.yes": "Yes",
|
|
48
|
+
"button.yes_2_5": "Yes, for 2.5 mg",
|
|
49
|
+
"button.yes_5": "Yes, for 5 mg",
|
|
50
|
+
"button.yes_it_was_negative": "Yes, it was negative",
|
|
51
|
+
"button.yes_it_was_positive": "Yes, it was positive",
|
|
52
|
+
"case.attachment": "Attachment",
|
|
53
|
+
"case.back": "Back",
|
|
54
|
+
"case.cancel_question": "Quit case",
|
|
55
|
+
"choice.bloating": "Bloating",
|
|
56
|
+
"choice.chronic_fatigue": "Chronic fatigue",
|
|
57
|
+
"choice.decreased_energy_level": "Decreased energy level",
|
|
58
|
+
"choice.difficulty_sleep": "Difficulties with sleep/falling asleep",
|
|
59
|
+
"choice.discomfort_upper_right_abdomen": "Discomfort/pain in the upper right abdomen",
|
|
60
|
+
"choice.hyperlipidemia": "Hyperlipidemia",
|
|
61
|
+
"choice.nausea": "Nausea",
|
|
62
|
+
"choice.obesity": "Obesity/Overweight",
|
|
63
|
+
"choice.type_2_diabetes": "Type 2 diabetes",
|
|
64
|
+
"close.subtitle": "Before closing this consultation, we recommend downloading the summary PDF for future reference.",
|
|
65
|
+
"close.title": "Are you sure you want to close?",
|
|
66
|
+
"condition_symptom.chest_bronchial": "Chest or Bronchial conditions",
|
|
67
|
+
"condition_symptom.sicknote": "Sicknotes",
|
|
68
|
+
"consultation.summary_being_prepared": "is preparing a summary of your consultation.",
|
|
69
|
+
"contact.enter_message_below": "Please enter your message below.",
|
|
70
|
+
"contact.hi": "Hi",
|
|
71
|
+
"country.ad": "Andorra",
|
|
72
|
+
"country.ae": "United Arab Emirates",
|
|
73
|
+
"country.af": "Afghanistan",
|
|
74
|
+
"country.ag": "Antigua and Barbuda",
|
|
75
|
+
"country.ai": "Anguilla",
|
|
76
|
+
"country.al": "Albania",
|
|
77
|
+
"country.am": "Armenia",
|
|
78
|
+
"country.ao": "Angola",
|
|
79
|
+
"country.aq": "Antarctica",
|
|
80
|
+
"country.ar": "Argentina",
|
|
81
|
+
"country.as": "American Samoa",
|
|
82
|
+
"country.at": "Austria",
|
|
83
|
+
"country.au": "Australia",
|
|
84
|
+
"country.aw": "Aruba",
|
|
85
|
+
"country.ax": "Åland Islands",
|
|
86
|
+
"country.az": "Azerbaijan",
|
|
87
|
+
"country.ba": "Bosnia and Herzegovina",
|
|
88
|
+
"country.bb": "Barbados",
|
|
89
|
+
"country.bd": "Bangladesh",
|
|
90
|
+
"country.be": "Belgium",
|
|
91
|
+
"country.bf": "Burkina Faso",
|
|
92
|
+
"country.bg": "Bulgaria",
|
|
93
|
+
"country.bh": "Bahrain",
|
|
94
|
+
"country.bi": "Burundi",
|
|
95
|
+
"country.bj": "Benin",
|
|
96
|
+
"country.bl": "Saint Barthélemy",
|
|
97
|
+
"country.bm": "Bermuda",
|
|
98
|
+
"country.bn": "Brunei",
|
|
99
|
+
"country.bo": "Bolivia",
|
|
100
|
+
"country.br": "Brazil",
|
|
101
|
+
"country.bs": "Bahamas",
|
|
102
|
+
"country.bt": "Bhutan",
|
|
103
|
+
"country.bv": "Bouvet Island",
|
|
104
|
+
"country.bw": "Botswana",
|
|
105
|
+
"country.by": "Belarus",
|
|
106
|
+
"country.bz": "Belize",
|
|
107
|
+
"country.ca": "Canada",
|
|
108
|
+
"country.cc": "Cocos (Keeling) Islands",
|
|
109
|
+
"country.cd": "DR Congo",
|
|
110
|
+
"country.cf": "Central African Republic",
|
|
111
|
+
"country.cg": "Republic of the Congo",
|
|
112
|
+
"country.ch": "Switzerland",
|
|
113
|
+
"country.ci": "Ivory Coast",
|
|
114
|
+
"country.ck": "Cook Islands",
|
|
115
|
+
"country.cl": "Chile",
|
|
116
|
+
"country.cm": "Cameroon",
|
|
117
|
+
"country.cn": "China",
|
|
118
|
+
"country.co": "Colombia",
|
|
119
|
+
"country.cr": "Costa Rica",
|
|
120
|
+
"country.cu": "Cuba",
|
|
121
|
+
"country.cv": "Cape Verde",
|
|
122
|
+
"country.cw": "Curaçao",
|
|
123
|
+
"country.cx": "Christmas Island",
|
|
124
|
+
"country.cy": "Cyprus",
|
|
125
|
+
"country.cz": "Czech Republic",
|
|
126
|
+
"country.de": "Germany",
|
|
127
|
+
"country.dj": "Djibouti",
|
|
128
|
+
"country.dk": "Denmark",
|
|
129
|
+
"country.dm": "Dominica",
|
|
130
|
+
"country.do": "Dominican Republic",
|
|
131
|
+
"country.dz": "Algeria",
|
|
132
|
+
"country.ec": "Ecuador",
|
|
133
|
+
"country.ee": "Estonia",
|
|
134
|
+
"country.eg": "Egypt",
|
|
135
|
+
"country.eh": "Western Sahara",
|
|
136
|
+
"country.er": "Eritrea",
|
|
137
|
+
"country.es": "Spain",
|
|
138
|
+
"country.et": "Ethiopia",
|
|
139
|
+
"country.fi": "Finland",
|
|
140
|
+
"country.fj": "Fiji",
|
|
141
|
+
"country.fk": "Falkland Islands",
|
|
142
|
+
"country.fm": "Micronesia",
|
|
143
|
+
"country.fo": "Faroe Islands",
|
|
144
|
+
"country.fr": "France",
|
|
145
|
+
"country.ga": "Gabon",
|
|
146
|
+
"country.gb": "The United Kingdom",
|
|
147
|
+
"country.gd": "Grenada",
|
|
148
|
+
"country.ge": "Georgia",
|
|
149
|
+
"country.gf": "French Guiana",
|
|
150
|
+
"country.gg": "Guernsey",
|
|
151
|
+
"country.gh": "Ghana",
|
|
152
|
+
"country.gi": "Gibraltar",
|
|
153
|
+
"country.gl": "Greenland",
|
|
154
|
+
"country.gm": "Gambia",
|
|
155
|
+
"country.gn": "Guinea",
|
|
156
|
+
"country.gp": "Guadeloupe",
|
|
157
|
+
"country.gq": "Equatorial Guinea",
|
|
158
|
+
"country.gr": "Greece",
|
|
159
|
+
"country.gs": "South Georgia",
|
|
160
|
+
"country.gt": "Guatemala",
|
|
161
|
+
"country.gu": "Guam",
|
|
162
|
+
"country.gw": "Guinea-Bissau",
|
|
163
|
+
"country.gy": "Guyana",
|
|
164
|
+
"country.hk": "Hong Kong",
|
|
165
|
+
"country.hm": "Heard Island and McDonald Islands",
|
|
166
|
+
"country.hn": "Honduras",
|
|
167
|
+
"country.hr": "Croatia",
|
|
168
|
+
"country.ht": "Haiti",
|
|
169
|
+
"country.hu": "Hungary",
|
|
170
|
+
"country.id": "Indonesia",
|
|
171
|
+
"country.ie": "Ireland",
|
|
172
|
+
"country.il": "Israel",
|
|
173
|
+
"country.im": "Isle of Man",
|
|
174
|
+
"country.in": "India",
|
|
175
|
+
"country.io": "British Indian Ocean Territory",
|
|
176
|
+
"country.iq": "Iraq",
|
|
177
|
+
"country.ir": "Iran",
|
|
178
|
+
"country.is": "Iceland",
|
|
179
|
+
"country.it": "Italy",
|
|
180
|
+
"country.je": "Jersey",
|
|
181
|
+
"country.jm": "Jamaica",
|
|
182
|
+
"country.jo": "Jordan",
|
|
183
|
+
"country.jp": "Japan",
|
|
184
|
+
"country.ke": "Kenya",
|
|
185
|
+
"country.kg": "Kyrgyzstan",
|
|
186
|
+
"country.kh": "Cambodia",
|
|
187
|
+
"country.ki": "Kiribati",
|
|
188
|
+
"country.km": "Comoros",
|
|
189
|
+
"country.kn": "Saint Kitts and Nevis",
|
|
190
|
+
"country.kp": "North Korea",
|
|
191
|
+
"country.kr": "South Korea",
|
|
192
|
+
"country.kw": "Kuwait",
|
|
193
|
+
"country.ky": "Cayman Islands",
|
|
194
|
+
"country.kz": "Kazakhstan",
|
|
195
|
+
"country.la": "Laos",
|
|
196
|
+
"country.lb": "Lebanon",
|
|
197
|
+
"country.lc": "Saint Lucia",
|
|
198
|
+
"country.li": "Liechtenstein",
|
|
199
|
+
"country.lk": "Sri Lanka",
|
|
200
|
+
"country.lr": "Liberia",
|
|
201
|
+
"country.ls": "Lesotho",
|
|
202
|
+
"country.lt": "Lithuania",
|
|
203
|
+
"country.lu": "Luxembourg",
|
|
204
|
+
"country.lv": "Latvia",
|
|
205
|
+
"country.ly": "Libya",
|
|
206
|
+
"country.ma": "Morocco",
|
|
207
|
+
"country.mc": "Monaco",
|
|
208
|
+
"country.md": "Moldova",
|
|
209
|
+
"country.me": "Montenegro",
|
|
210
|
+
"country.mf": "Saint Martin",
|
|
211
|
+
"country.mg": "Madagascar",
|
|
212
|
+
"country.mh": "Marshall Islands",
|
|
213
|
+
"country.mk": "Macedonia",
|
|
214
|
+
"country.ml": "Mali",
|
|
215
|
+
"country.mm": "Myanmar",
|
|
216
|
+
"country.mn": "Mongolia",
|
|
217
|
+
"country.mo": "Macau",
|
|
218
|
+
"country.mp": "Northern Mariana Islands",
|
|
219
|
+
"country.mq": "Martinique",
|
|
220
|
+
"country.mr": "Mauritania",
|
|
221
|
+
"country.ms": "Montserrat",
|
|
222
|
+
"country.mt": "Malta",
|
|
223
|
+
"country.mu": "Mauritius",
|
|
224
|
+
"country.mv": "Maldives",
|
|
225
|
+
"country.mw": "Malawi",
|
|
226
|
+
"country.mx": "Mexico",
|
|
227
|
+
"country.my": "Malaysia",
|
|
228
|
+
"country.mz": "Mozambique",
|
|
229
|
+
"country.na": "Namibia",
|
|
230
|
+
"country.nc": "New Caledonia",
|
|
231
|
+
"country.ne": "Niger",
|
|
232
|
+
"country.nf": "Norfolk Island",
|
|
233
|
+
"country.ng": "Nigeria",
|
|
234
|
+
"country.ni": "Nicaragua",
|
|
235
|
+
"country.nl": "Netherlands",
|
|
236
|
+
"country.no": "Norway",
|
|
237
|
+
"country.np": "Nepal",
|
|
238
|
+
"country.nr": "Nauru",
|
|
239
|
+
"country.nu": "Niue",
|
|
240
|
+
"country.nz": "New Zealand",
|
|
241
|
+
"country.om": "Oman",
|
|
242
|
+
"country.pa": "Panama",
|
|
243
|
+
"country.pe": "Peru",
|
|
244
|
+
"country.pf": "French Polynesia",
|
|
245
|
+
"country.pg": "Papua New Guinea",
|
|
246
|
+
"country.ph": "Philippines",
|
|
247
|
+
"country.pk": "Pakistan",
|
|
248
|
+
"country.pl": "Poland",
|
|
249
|
+
"country.pm": "Saint Pierre and Miquelon",
|
|
250
|
+
"country.pn": "Pitcairn Islands",
|
|
251
|
+
"country.pr": "Puerto Rico",
|
|
252
|
+
"country.ps": "Palestine",
|
|
253
|
+
"country.pt": "Portugal",
|
|
254
|
+
"country.pw": "Palau",
|
|
255
|
+
"country.py": "Paraguay",
|
|
256
|
+
"country.qa": "Qatar",
|
|
257
|
+
"country.re": "Réunion",
|
|
258
|
+
"country.ro": "Romania",
|
|
259
|
+
"country.rs": "Serbia",
|
|
260
|
+
"country.ru": "Russia",
|
|
261
|
+
"country.rw": "Rwanda",
|
|
262
|
+
"country.sa": "Saudi Arabia",
|
|
263
|
+
"country.sb": "Solomon Islands",
|
|
264
|
+
"country.sc": "Seychelles",
|
|
265
|
+
"country.sd": "Sudan",
|
|
266
|
+
"country.se": "Sweden",
|
|
267
|
+
"country.sg": "Singapore",
|
|
268
|
+
"country.si": "Slovenia",
|
|
269
|
+
"country.sj": "Svalbard and Jan Mayen",
|
|
270
|
+
"country.sk": "Slovakia",
|
|
271
|
+
"country.sl": "Sierra Leone",
|
|
272
|
+
"country.sm": "San Marino",
|
|
273
|
+
"country.sn": "Senegal",
|
|
274
|
+
"country.so": "Somalia",
|
|
275
|
+
"country.sr": "Suriname",
|
|
276
|
+
"country.ss": "South Sudan",
|
|
277
|
+
"country.st": "São Tomé and Príncipe",
|
|
278
|
+
"country.sv": "El Salvador",
|
|
279
|
+
"country.sx": "Sint Maarten",
|
|
280
|
+
"country.sy": "Syria",
|
|
281
|
+
"country.sz": "Swaziland",
|
|
282
|
+
"country.tc": "Turks and Caicos Islands",
|
|
283
|
+
"country.td": "Chad",
|
|
284
|
+
"country.tf": "French Southern and Antarctic Lands",
|
|
285
|
+
"country.tg": "Togo",
|
|
286
|
+
"country.th": "Thailand",
|
|
287
|
+
"country.tj": "Tajikistan",
|
|
288
|
+
"country.tk": "Tokelau",
|
|
289
|
+
"country.tl": "Timor-Leste",
|
|
290
|
+
"country.tm": "Turkmenistan",
|
|
291
|
+
"country.tn": "Tunisia",
|
|
292
|
+
"country.to": "Tonga",
|
|
293
|
+
"country.tr": "Turkey",
|
|
294
|
+
"country.tt": "Trinidad and Tobago",
|
|
295
|
+
"country.tv": "Tuvalu",
|
|
296
|
+
"country.tw": "Taiwan",
|
|
297
|
+
"country.tz": "Tanzania",
|
|
298
|
+
"country.ua": "Ukraine",
|
|
299
|
+
"country.ug": "Uganda",
|
|
300
|
+
"country.um": "US Minor Outlying Islands",
|
|
301
|
+
"country.us": "The United States",
|
|
302
|
+
"country.us.area.ak": "Alaska",
|
|
303
|
+
"country.us.area.al": "Alabama",
|
|
304
|
+
"country.us.area.ar": "Arkansas",
|
|
305
|
+
"country.us.area.as": "American Samoa",
|
|
306
|
+
"country.us.area.az": "Arizona",
|
|
307
|
+
"country.us.area.ca": "California",
|
|
308
|
+
"country.us.area.co": "Colorado",
|
|
309
|
+
"country.us.area.ct": "Connecticut",
|
|
310
|
+
"country.us.area.dc": "District of Columbia",
|
|
311
|
+
"country.us.area.de": "Delaware",
|
|
312
|
+
"country.us.area.fl": "Florida",
|
|
313
|
+
"country.us.area.ga": "Georgia",
|
|
314
|
+
"country.us.area.gu": "Guam",
|
|
315
|
+
"country.us.area.hi": "Hawaii",
|
|
316
|
+
"country.us.area.ia": "Iowa",
|
|
317
|
+
"country.us.area.id": "Idaho",
|
|
318
|
+
"country.us.area.il": "Illinois",
|
|
319
|
+
"country.us.area.in": "Indiana",
|
|
320
|
+
"country.us.area.ks": "Kansas",
|
|
321
|
+
"country.us.area.ky": "Kentucky",
|
|
322
|
+
"country.us.area.la": "Louisiana",
|
|
323
|
+
"country.us.area.ma": "Massachusetts",
|
|
324
|
+
"country.us.area.md": "Maryland",
|
|
325
|
+
"country.us.area.me": "Maine",
|
|
326
|
+
"country.us.area.mi": "Michigan",
|
|
327
|
+
"country.us.area.mn": "Minnesota",
|
|
328
|
+
"country.us.area.mo": "Missouri",
|
|
329
|
+
"country.us.area.mp": "Northern Mariana Islands",
|
|
330
|
+
"country.us.area.ms": "Mississippi",
|
|
331
|
+
"country.us.area.mt": "Montana",
|
|
332
|
+
"country.us.area.nc": "North Carolina",
|
|
333
|
+
"country.us.area.nd": "North Dakota",
|
|
334
|
+
"country.us.area.ne": "Nebraska",
|
|
335
|
+
"country.us.area.nh": "New Hampshire",
|
|
336
|
+
"country.us.area.nj": "New Jersey",
|
|
337
|
+
"country.us.area.nm": "New Mexico",
|
|
338
|
+
"country.us.area.nv": "Nevada",
|
|
339
|
+
"country.us.area.ny": "New York",
|
|
340
|
+
"country.us.area.oh": "Ohio",
|
|
341
|
+
"country.us.area.ok": "Oklahoma",
|
|
342
|
+
"country.us.area.or": "Oregon",
|
|
343
|
+
"country.us.area.pa": "Pennsylvania",
|
|
344
|
+
"country.us.area.pr": "Puerto Rico",
|
|
345
|
+
"country.us.area.ri": "Rhode Island",
|
|
346
|
+
"country.us.area.sc": "South Carolina",
|
|
347
|
+
"country.us.area.sd": "South Dakota",
|
|
348
|
+
"country.us.area.tn": "Tennessee",
|
|
349
|
+
"country.us.area.tx": "Texas",
|
|
350
|
+
"country.us.area.um": "United States Minor Outlying Islands",
|
|
351
|
+
"country.us.area.ut": "Utah",
|
|
352
|
+
"country.us.area.va": "Virginia",
|
|
353
|
+
"country.us.area.vi": "U.S. Virgin Islands",
|
|
354
|
+
"country.us.area.vt": "Vermont",
|
|
355
|
+
"country.us.area.wa": "Washington",
|
|
356
|
+
"country.us.area.wi": "Wisconsin",
|
|
357
|
+
"country.us.area.wv": "West Virginia",
|
|
358
|
+
"country.us.area.wy": "Wyoming",
|
|
359
|
+
"country.uy": "Uruguay",
|
|
360
|
+
"country.uz": "Uzbekistan",
|
|
361
|
+
"country.va": "Vatican City",
|
|
362
|
+
"country.vc": "Saint Vincent and the Grenadines",
|
|
363
|
+
"country.ve": "Venezuela",
|
|
364
|
+
"country.vg": "British Virgin Islands",
|
|
365
|
+
"country.vi": "US Virgin Islands",
|
|
366
|
+
"country.vn": "Vietnam",
|
|
367
|
+
"country.vu": "Vanuatu",
|
|
368
|
+
"country.wf": "Wallis and Futuna",
|
|
369
|
+
"country.ws": "Samoa",
|
|
370
|
+
"country.xk": "Kosovo",
|
|
371
|
+
"country.ye": "Yemen",
|
|
372
|
+
"country.yt": "Mayotte",
|
|
373
|
+
"country.za": "South Africa",
|
|
374
|
+
"country.zm": "Zambia",
|
|
375
|
+
"country.zw": "Zimbabwe",
|
|
376
|
+
"delivery.address.address": "Address",
|
|
377
|
+
"delivery.address.address.placeholder.1": "Street name and number",
|
|
378
|
+
"delivery.address.address.placeholder.2": "Apartment, suite, unit, building or floor",
|
|
379
|
+
"delivery.address.building_name_number": "Building name / number",
|
|
380
|
+
"delivery.address.building_name_number.placeholder": "Lucky Building",
|
|
381
|
+
"delivery.address.country": "Country",
|
|
382
|
+
"delivery.address.country.placeholder": "Please select...",
|
|
383
|
+
"delivery.address.description": "A prescription has been issued. Please provide your full address for delivery.",
|
|
384
|
+
"delivery.address.district_city": "District/City",
|
|
385
|
+
"delivery.address.district_city.placeholder": "Hong Kong, New Territories",
|
|
386
|
+
"delivery.address.mobile": "Mobile number",
|
|
387
|
+
"delivery.address.number_and_floor": "House or apartment number and floor",
|
|
388
|
+
"delivery.address.number_and_floor.placeholder": "nº 46, 15/F",
|
|
389
|
+
"delivery.address.processing": "Your prescription is being processed...",
|
|
390
|
+
"delivery.address.street": "Street",
|
|
391
|
+
"delivery.address.street.placeholder": "Nim Wan Rd",
|
|
392
|
+
"delivery.address.title": "Delivery Address",
|
|
393
|
+
"delivery.address.zipcode": "ZIP Code",
|
|
394
|
+
"delivery.address.zipcode.placeholder": "000000",
|
|
395
|
+
"download": "DOWNLOAD",
|
|
396
|
+
"download.five_minutes": "This usually takes less than 5 minutes.",
|
|
397
|
+
"download.one_minute": "This usually takes less than 1 minute.",
|
|
398
|
+
"download.summary_being_prepared": "Your summary is being prepared.",
|
|
399
|
+
"download.summary_getting_ready": "The summary is getting ready.",
|
|
400
|
+
"download.usually_takes": "This usually takes less than 1 min.",
|
|
401
|
+
"error.case_already_open": "You already have a case open in another location. Please complete the case there first.",
|
|
402
|
+
"error.something_went_wrong": "Something went wrong, please try again later",
|
|
403
|
+
"error.validation.attachment.duplicated": "Attachment is already added",
|
|
404
|
+
"error.validation.attachment.max": "Error uploading: You can only upload a maximum of {{maxAmount}} files.",
|
|
405
|
+
"error.validation.attachment.size": "Max size per file is {{maxSize}}",
|
|
406
|
+
"error.validation.attachment.type": "Error uploading: please try another file type. Only images (png, jpg) and pdf files are supported.",
|
|
407
|
+
"error.validation.attachment.upload": "There was an error uploading the file",
|
|
408
|
+
"error.validation.default": "Error",
|
|
409
|
+
"error.validation.email": "Please check your email address.",
|
|
410
|
+
"error.validation.fill_form": "You must fill the form.",
|
|
411
|
+
"error.validation.max_value": "The maximum value is {{max}}.",
|
|
412
|
+
"error.validation.max_value.age.ilh": "Invalid age",
|
|
413
|
+
"error.validation.max_value.age.ilh_test": "Invalid age",
|
|
414
|
+
"error.validation.max_value.age.ilh-protection": "Invalid age",
|
|
415
|
+
"error.validation.min_value": "The minimum value is {{min}}",
|
|
416
|
+
"error.validation.min_value.age.mj1": "Invalid age",
|
|
417
|
+
"error.validation.min_value.age.mj1test": "Invalid age",
|
|
418
|
+
"error.validation.phone": "Please check your phone number.",
|
|
419
|
+
"error.validation.required": "Required field",
|
|
420
|
+
"error.wrong_language_combination": "Wrong language + country combination. Please contact us if you need help.",
|
|
421
|
+
"exit_logic.denied.description": "It appears to require additional medical review, therefore we are unable to proceed at this time.",
|
|
422
|
+
"exit_logic.denied.title": "Sorry, due to your response, it is not possible to continue with your request.",
|
|
423
|
+
"experiencing_symptoms.description": "Check all that apply. If none, just press continue.",
|
|
424
|
+
"follow_up": "OR ASK A FOLLOW-UP QUESTION",
|
|
425
|
+
"follow_up.placeholder.text": "Ask a follow-up question.",
|
|
426
|
+
"footer.project_number.mj1": "PP-TR-US-1177 06/2023",
|
|
427
|
+
"footer.project_number.mj1test": "PP-TR-US-1177 06/2023",
|
|
428
|
+
"forgot_password_confirmation.check_email_to_continue": "Please check your email to continue",
|
|
429
|
+
"forgot_password_confirmation.password_reset_email_sent": "Password reset email sent",
|
|
430
|
+
"forgot_password.already_have_an_account": "Already have an account?",
|
|
431
|
+
"forgot_password.forgot_your_password": "Forgot your password?",
|
|
432
|
+
"forgot_password.we_will_email_you": "We will email you a link to create a new one",
|
|
433
|
+
"form.gender.other": "Other",
|
|
434
|
+
"form.gender.female": "Female",
|
|
435
|
+
"form.gender.male": "Male",
|
|
436
|
+
"form.gender.non-binary": "Non-binary",
|
|
437
|
+
"form.gender.prefer_not_to_answer": "Prefer not to answer",
|
|
438
|
+
"form.gender.transgender_female": "Transgender female",
|
|
439
|
+
"form.gender.transgender_male": "Transgender male",
|
|
440
|
+
"fulfillment.collect.description": "Your prescription will be sent directly to your chosen pharmacy.",
|
|
441
|
+
"fulfillment.collect.title": "Collect from pharmacy",
|
|
442
|
+
"fulfillment.delivery.description": "Your prescription will be delivered to your home or work address.",
|
|
443
|
+
"fulfillment.delivery.title": "Home delivery",
|
|
444
|
+
"fulfillment.download.description": "Download a printable PDF that can be brought to any pharmacy.",
|
|
445
|
+
"fulfillment.download.title": "Download as PDF",
|
|
446
|
+
"fulfillment.please_select": "Please select a fulfillment option.",
|
|
447
|
+
"fulfillment.title": "Your prescription is being issued. How would you like to receive it?",
|
|
448
|
+
"general.coming_soon": "Coming soon",
|
|
449
|
+
"general.consultation.assessment.description": "Complete an anonymous online assessment. It will be professionally reviewed and you will be provided with recommended next steps.",
|
|
450
|
+
"general.consultation.assessment.title": "Professional Assessment",
|
|
451
|
+
"general.consultation.health_navigator.title": "Health Navigator",
|
|
452
|
+
"general.consultation.healthNavigator.title": "Health Navigator",
|
|
453
|
+
"general.consultation.medicalConsultation.description": "Ask a medical question by text and get a discreet answer from a qualified doctor in just a few minutes.",
|
|
454
|
+
"general.consultation.medicalConsultation.description.enfa": "Ask a medical question by text and get a discreet answer from a qualified nurse in just a few minutes.",
|
|
455
|
+
"general.consultation.medicalConsultation.description.enfa_test": "Ask a medical question by text and get a discreet answer from a qualified nurse in just a few minutes.",
|
|
456
|
+
"general.consultation.medicalConsultation.description.ilh": "Ask a medical question by text and get a discreet answer from a qualified doctor in just a few minutes.",
|
|
457
|
+
"general.consultation.medicalConsultation.description.ilh_test": "Ask a medical question by text and get a discreet answer from a qualified doctor in just a few minutes.",
|
|
458
|
+
"general.consultation.medicalConsultation.summary": "Text Consultation Summary",
|
|
459
|
+
"general.consultation.medicalConsultation.title": "Message a Doctor",
|
|
460
|
+
"general.consultation.medicalConsultation.title.enfa": "Ask a Nurse",
|
|
461
|
+
"general.consultation.medicalConsultation.title.enfa_test": "Ask a Nurse",
|
|
462
|
+
"general.consultation.medicalConsultation.title.ilh": "Message a Doctor",
|
|
463
|
+
"general.consultation.medicalConsultation.title.ilh_test": "Message a Doctor",
|
|
464
|
+
"general.consultation.medicalConsultation.title.level-health": "Text Consultation",
|
|
465
|
+
"general.consultation.medicalConsultation.title.level-health-test": "Text Consultation",
|
|
466
|
+
"general.consultation.modal.are_you_sure": "Are you sure you want to cancel this case?",
|
|
467
|
+
"general.consultation.modal.are_you_sure.navigator": "Are you sure you want to close?",
|
|
468
|
+
"general.consultation.modal.are_you_sure.prescriptionRequest": "Are you sure you want to cancel this prescription request?",
|
|
469
|
+
"general.consultation.modal.finish_video_call": "Are you sure you want to finish the video call?",
|
|
470
|
+
"general.consultation.navigator.title": "Health Navigator",
|
|
471
|
+
"general.consultation.prescription.description": "Select or search from a list of commonly used medications that can be prescribed here.",
|
|
472
|
+
"general.consultation.prescription.title": "Prescription Request",
|
|
473
|
+
"general.consultation.prescriptionRequest.description": "Select or search from a list of commonly used medications that can be prescribed here.",
|
|
474
|
+
"general.consultation.prescriptionRequest.description.ilh": "Select or search from a list of commonly used medications that can be prescribed here.",
|
|
475
|
+
"general.consultation.prescriptionRequest.description.ilh_test": "Select or search from a list of commonly used medications that can be prescribed here.",
|
|
476
|
+
"general.consultation.prescriptionRequest.summary": "Online Prescription Summary",
|
|
477
|
+
"general.consultation.prescriptionRequest.title": "Online Prescription",
|
|
478
|
+
"general.consultation.prescriptionRequest.title.ilh": "Online Prescription",
|
|
479
|
+
"general.consultation.prescriptionRequest.title.ilh_test": "Online Prescription",
|
|
480
|
+
"general.consultation.prescriptions.description": "Select or search from a list of commonly used medications that can be prescribed here.",
|
|
481
|
+
"general.consultation.prescriptions.title": "Prescription Request",
|
|
482
|
+
"general.consultation.summary.download": "Download summary",
|
|
483
|
+
"general.consultation.text.description": "Ask a medical question by text and get a discreet answer from a qualified doctor in just a few minutes.",
|
|
484
|
+
"general.consultation.text.description.enfa": "Ask a medical question by text and get a discreet answer from a qualified nurse in just a few minutes.",
|
|
485
|
+
"general.consultation.text.description.enfa_test": "Ask a medical question by text and get a discreet answer from a qualified nurse in just a few minutes.",
|
|
486
|
+
"general.consultation.text.title": "Text Consultation",
|
|
487
|
+
"general.consultation.videoConsultation.description": "Request a video call with a registered, local doctor. They can diagnose and issue prescriptions if they deem it appropriate. ",
|
|
488
|
+
"general.consultation.videoConsultation.ending": "is ending the video consultation.",
|
|
489
|
+
"general.consultation.videoConsultation.hcpCanRecall": "This usually takes less than 5 minutes.\nIf necessary, the doctor may call you again to ask for more information.",
|
|
490
|
+
"general.consultation.videoConsultation.isPreparingSummary": "The summary is getting ready.",
|
|
491
|
+
"general.consultation.videoConsultation.summary": "Video Consultation Summary",
|
|
492
|
+
"general.consultation.videoConsultation.title": "Video Consultation",
|
|
493
|
+
"general.consultation.voice.description": "Speak to a doctor, nurse or another specialist healthcare professional. They will call you back in just a few minutes.",
|
|
494
|
+
"general.consultation.voice.title": "Voice Call",
|
|
495
|
+
"general.consultations.answer.end_consultation": "End consultation",
|
|
496
|
+
"general.prescriptionRequest.question.hint": "This will help the doctor to better understand your answers to the previous questions.",
|
|
497
|
+
"general.prescriptionRequest.question.placeholder": "Click here to write.",
|
|
498
|
+
"general.prescriptionRequest.question.title": "In your own words, please explain to the doctor why you need this prescription.",
|
|
499
|
+
"hcp_profile": "Healthcare Professional's Profile",
|
|
500
|
+
"header.reminder_set": "Reminder set.",
|
|
501
|
+
"health_navigator.close_conversation.description": "Note that your conversation will be lost.",
|
|
502
|
+
"health_navigator.close_conversation.title": "Are you sure you want to close?",
|
|
503
|
+
"health_navigator.disclaimer": " This service is powered by AI, and cannot provide direct medical advice or diagnosis. For any health concerns, please consult with a doctor. Learn more",
|
|
504
|
+
"health_navigator.health_resources": "Here you can find curated information from trusted health resources:",
|
|
505
|
+
"health_navigator.new_chat.button": "Start a new chat",
|
|
506
|
+
"health_navigator.new_chat.description": "Note that your current conversation won’t be saved. ",
|
|
507
|
+
"health_navigator.new_chat.title": "Would you like to start a new chat?",
|
|
508
|
+
"health_navigator.placeholder": "Tap to write",
|
|
509
|
+
"health_navigator.recommended": "Recommended",
|
|
510
|
+
"i_consent_to_participate_in_the_programme_as_outlined": "I consent to receive optional SMS reminders and to participate in the program as outlined.",
|
|
511
|
+
"i_have_read_and_agreed_to_the_terms_conditions": "I have read, and I consent to the <a href='https://abi.ai/en/terms-of-use'>Terms & Conditions</a>",
|
|
512
|
+
"i_have_read_and_agreed_to_the_terms_conditions.mj1": "I have read, and I consent to the <a href='https://mj1.abi.ai/en/terms-of-use'>Terms & Conditions</a>",
|
|
513
|
+
"i_have_read_and_understood_the_privacy_policy": "I have read, and I consent to the <a href='https://abi.ai/en/privacy'>Privacy Policy</a>",
|
|
514
|
+
"i_have_read_and_understood_the_privacy_policy.mj1": "I have read, and I consent to the <a href='https://mj1.abi.ai/en/privacy'>Privacy Policy</a>",
|
|
515
|
+
"input.confirm_password": "Confirm Password",
|
|
516
|
+
"input.email": "Email",
|
|
517
|
+
"input.message": "Message",
|
|
518
|
+
"input.password": "Password",
|
|
519
|
+
"input.subject": "Subject",
|
|
520
|
+
"inputs.address.label": "Address",
|
|
521
|
+
"inputs.address.placeholder": "Please add here...",
|
|
522
|
+
"inputs.age.label": "Age",
|
|
523
|
+
"inputs.city.label": "City",
|
|
524
|
+
"inputs.city.placeholder": "City",
|
|
525
|
+
"inputs.dateOfBirth.label": "Date of birth",
|
|
526
|
+
"inputs.email.label": "Email",
|
|
527
|
+
"inputs.firstName.label": "First name",
|
|
528
|
+
"inputs.gender.label": "Gender",
|
|
529
|
+
"inputs.gender.placeholder": "Your gender",
|
|
530
|
+
"inputs.height.label": "Height",
|
|
531
|
+
"inputs.hongKongIdPassport.label": "Hong Kong ID (or Passport Nº)",
|
|
532
|
+
"inputs.lastName.label": "Last name",
|
|
533
|
+
"inputs.mobile_number": "Mobile number",
|
|
534
|
+
"inputs.mobile.label": "Mobile number",
|
|
535
|
+
"inputs.national_identification_number.label": "National Identification Number",
|
|
536
|
+
"inputs.nationalId.label": "National Identification Number",
|
|
537
|
+
"inputs.phone.label": "Cell number",
|
|
538
|
+
"inputs.physicianCountry.label": "Country",
|
|
539
|
+
"inputs.physicianCountry.placeholder": "Country",
|
|
540
|
+
"inputs.physicianState.label": "State",
|
|
541
|
+
"inputs.physicianState.placeholder": "State",
|
|
542
|
+
"inputs.sex.label": "Sex",
|
|
543
|
+
"inputs.surname.label": "Surname",
|
|
544
|
+
"inputs.textarea.min_length": "Min {{minLength}} characters",
|
|
545
|
+
"inputs.textarea.question_empty": "Please ask a health question",
|
|
546
|
+
"inputs.weight.label": "Weight",
|
|
547
|
+
"inputs.zipCode.label": "ZIP Code",
|
|
548
|
+
"inputs.zipCode.placeholder": "ZIP Code",
|
|
549
|
+
"language_selection.footer.mj1": "This promotional message was developed and sponsored by Lilly USA, LLC and is intended for US residents 18 years or older.",
|
|
550
|
+
"language_selection.footer.mj1test": "This promotional message was developed and sponsored by Lilly USA, LLC and is intended for US residents 18 years or older.",
|
|
551
|
+
"language_selection.title": "Please select your preferred language.",
|
|
552
|
+
"languages.en": "English",
|
|
553
|
+
"languages.es": "Spanish",
|
|
554
|
+
"lilly.already_registered": "Cell number already registered. You’ll receive an SMS with access link shortly.",
|
|
555
|
+
"lilly.compelling_material.managing_possible_side_effects": "MANAGING POSSIBLE SIDE EFFECTS",
|
|
556
|
+
"lilly.compelling_material.title": "Additional Support",
|
|
557
|
+
"lilly.compelling_material.video": "Learn how to inject yourself.",
|
|
558
|
+
"lilly.compelling_material.week01.1.button": "SAVINGS",
|
|
559
|
+
"lilly.compelling_material.week01.1.description": "Find out if you’re eligible.",
|
|
560
|
+
"lilly.compelling_material.week01.2.button": "DOSAGE INFORMATION",
|
|
561
|
+
"lilly.compelling_material.week01.2.description": "Learn more about different dose options.",
|
|
562
|
+
"lilly.compelling_material.week01.3.button": "POSSIBLE SIDE EFFECTS",
|
|
563
|
+
"lilly.compelling_material.week01.3.description": "Talk to your doctor if you experience side effects.",
|
|
564
|
+
"lilly.compelling_material.week01.4.button": "HOW-TO VIDEO",
|
|
565
|
+
"lilly.compelling_material.week01.4.description": "Learn how to inject yourself.",
|
|
566
|
+
"lilly.compelling_material.week02.1.button": "WHAT IS THE A1C TEST?",
|
|
567
|
+
"lilly.compelling_material.week02.1.description": "Managing type 2 diabetes",
|
|
568
|
+
"lilly.compelling_material.week02.2.button": "DOSAGE INFORMATION",
|
|
569
|
+
"lilly.compelling_material.week02.2.description": "Learn more about different dose options.",
|
|
570
|
+
"lilly.compelling_material.week02.3.button": "POSSIBLE SIDE EFFECTS",
|
|
571
|
+
"lilly.compelling_material.week02.3.description": "Talk to your doctor if you experience side effects.",
|
|
572
|
+
"lilly.compelling_material.week03.1.button": "DOSAGE INFORMATION",
|
|
573
|
+
"lilly.compelling_material.week03.1.description": "Learn more about different dose options.",
|
|
574
|
+
"lilly.compelling_material.week03.2.button": "SAVINGS",
|
|
575
|
+
"lilly.compelling_material.week03.2.description": "Find out if you’re eligible.",
|
|
576
|
+
"lilly.compelling_material.week04.1.button": "THE A1C TEST",
|
|
577
|
+
"lilly.compelling_material.week04.1.description": "Managing type 2 diabetes",
|
|
578
|
+
"lilly.compelling_material.week04.2.button": "HEALTH TIPS",
|
|
579
|
+
"lilly.compelling_material.week04.2.description": "Lifestyle",
|
|
580
|
+
"lilly.compelling_material.week04.3.button": "DOSAGE INFORMATION",
|
|
581
|
+
"lilly.compelling_material.week04.3.description": "Learn more about different dose options.",
|
|
582
|
+
"lilly.compelling_material.week05.1.button": "DOSAGE INFORMATION",
|
|
583
|
+
"lilly.compelling_material.week05.1.description": "Learn more about different dose options.",
|
|
584
|
+
"lilly.compelling_material.week05.2.button": "AWAY FROM HOME",
|
|
585
|
+
"lilly.compelling_material.week05.2.description": "Food and fitness ideas for while you're out and about",
|
|
586
|
+
"lilly.compelling_material.week05.3.button": "HOW-TO VIDEO",
|
|
587
|
+
"lilly.compelling_material.week05.3.description": "Learn how to inject yourself.",
|
|
588
|
+
"lilly.compelling_material.week06.1.button": "FUTURE GOALS",
|
|
589
|
+
"lilly.compelling_material.week06.1.description": "Get real about your goals.",
|
|
590
|
+
"lilly.compelling_material.week06.2.button": "DOSAGE INFORMATION",
|
|
591
|
+
"lilly.compelling_material.week06.2.description": "Learn more about different dose options.",
|
|
592
|
+
"lilly.compelling_material.week06.3.button": "POSSIBLE SIDE EFFECTS",
|
|
593
|
+
"lilly.compelling_material.week06.3.description": "Talk to your doctor if you experience side effects.",
|
|
594
|
+
"lilly.compelling_material.week07.1.button": "DOSAGE INFORMATION",
|
|
595
|
+
"lilly.compelling_material.week07.1.description": "Learn more about different dose options.",
|
|
596
|
+
"lilly.compelling_material.week07.2.button": "SAVINGS",
|
|
597
|
+
"lilly.compelling_material.week07.2.description": "Find out if you’re eligible.",
|
|
598
|
+
"lilly.compelling_material.week08.1.button": "HEALTH TIPS",
|
|
599
|
+
"lilly.compelling_material.week08.1.description": "Lifestyle",
|
|
600
|
+
"lilly.compelling_material.week08.2.button": "The A1C test",
|
|
601
|
+
"lilly.compelling_material.week08.2.description": "Managing type 2 diabetes",
|
|
602
|
+
"lilly.compelling_material.week08.3.button": "DOSAGE INFORMATION",
|
|
603
|
+
"lilly.compelling_material.week08.3.description": "Learn more about different dose options.",
|
|
604
|
+
"lilly.compelling_material.week09.1.button": "HEALTH TIPS",
|
|
605
|
+
"lilly.compelling_material.week09.1.description": "Lifestyle",
|
|
606
|
+
"lilly.compelling_material.week09.2.button": "DOSAGE INFORMATION",
|
|
607
|
+
"lilly.compelling_material.week09.2.description": "Learn more about different dose options.",
|
|
608
|
+
"lilly.compelling_material.week09.3.button": "HOW-TO VIDEO",
|
|
609
|
+
"lilly.compelling_material.week09.3.description": "Learn how to inject yourself.",
|
|
610
|
+
"lilly.compelling_material.week10.1.button": "FUTURE GOALS",
|
|
611
|
+
"lilly.compelling_material.week10.1.description": "Get real about your goals.",
|
|
612
|
+
"lilly.compelling_material.week10.2.button": "DOSAGE INFORMATION",
|
|
613
|
+
"lilly.compelling_material.week10.2.description": "Learn more about different dose options.",
|
|
614
|
+
"lilly.compelling_material.week10.3.button": "POSSIBLE SIDE EFFECTS",
|
|
615
|
+
"lilly.compelling_material.week10.3.description": "Talk to your doctor if you experience side effects.",
|
|
616
|
+
"lilly.compelling_material.week11.1.button": "SAVINGS",
|
|
617
|
+
"lilly.compelling_material.week11.1.description": "Find out if you’re eligible.",
|
|
618
|
+
"lilly.compelling_material.week11.2.button": "DOSAGE INFORMATION",
|
|
619
|
+
"lilly.compelling_material.week11.2.description": "Learn more about different dose options.",
|
|
620
|
+
"lilly.compelling_material.week12.1.button": "DOSAGE INFORMATION",
|
|
621
|
+
"lilly.compelling_material.week12.1.description": "Learn more about different dose options.",
|
|
622
|
+
"lilly.compelling_material.week12.1.footer": "Thank you for taking part at the Abi Support Program! We have appreciated your time and hope you found the information and resources helpful.",
|
|
623
|
+
"lilly.compelling_material.week12.2.button": "HOW-TO VIDEO",
|
|
624
|
+
"lilly.compelling_material.week12.2.description": "Learn how to inject yourself.",
|
|
625
|
+
"lilly.confirmation": "Thanks {{firstName}}, your number has been confirmed.",
|
|
626
|
+
"lilly.confirmation_message.description.1": "We've sent a confirmation message to the number that you provided. It should arrive in the next few minutes.",
|
|
627
|
+
"lilly.confirmation_message.description.2": "Please open the message and click the link to continue.",
|
|
628
|
+
"lilly.confirmation_message.title": "Thanks {{firstName}}!",
|
|
629
|
+
"lilly.control.landing.week01.description.1": "This 12-week program will provide the key support resources, such as how-to videos and other helpful tips on demand:",
|
|
630
|
+
"lilly.control.landing.week01.description.2": "On the following screen we will ask for some general information to get you set up.",
|
|
631
|
+
"lilly.current_dosage_2.title": "Great. What is the current dose?",
|
|
632
|
+
"lilly.current_dosage.title": "To keep you on track, please tell us your current dosage.",
|
|
633
|
+
"lilly.current_dose_starting.title.2_5": "When did you start your 2.5 mg dosage?",
|
|
634
|
+
"lilly.current_dose_starting.title.5": "When did you start your 5 mg dosage?",
|
|
635
|
+
"lilly.current_dose_starting.title.higher": "When did you start your higher dosage?",
|
|
636
|
+
"lilly.doctor_reminder.title": "Do you want to set up a reminder to go to the doctor?",
|
|
637
|
+
"lilly.injection_status.title": "Have you injected in the last 7 days?",
|
|
638
|
+
"lilly.intake.landing.title": "Welcome to the Abi Support Program for type 2 diabetes treatment.",
|
|
639
|
+
"lilly.landing.footer": "Participation in this program is entirely optional. To opt out at any time, please reply “STOP” to any future text messages or contact <a href='mailto:info@abi.ai'>info@abi.ai</a>.",
|
|
640
|
+
"lilly.landing.not_want_to_register": "If you do not want to register, please visit <a href='https://bit.ly/3lXnc64'>https://bit.ly/3lXnc64</a> for resources.",
|
|
641
|
+
"lilly.mounjaro_day_selection.2": "Keep track with <b>this weekly SMS reminder</b> service which also includes helpful content and resources.",
|
|
642
|
+
"lilly.mounjaro_day_selection.3": "Please click <a href=\"https://www.mounjaro.com/how-to-use-mounjaro\" target=\"_blank\">HERE</a> to ensure you understand how to administer your treatment.",
|
|
643
|
+
"lilly.mounjaro_day_selection.4": "Select your preferred contact day",
|
|
644
|
+
"lilly.mounjaro_day_selection.placeholder": "Select your contact day",
|
|
645
|
+
"lilly.next_prescription.title": "Has your doctor already provided your next prescription?",
|
|
646
|
+
"lilly.pharmacy_reminder_2.title": "Do you want to set up a reminder to pick up your prescription?",
|
|
647
|
+
"lilly.pharmacy_reminder.title": "Would you like a reminder to pick up your prescription at the pharmacy?",
|
|
648
|
+
"lilly.product_in_hand.title": "Have you picked up your box of injection pens?",
|
|
649
|
+
"lilly.return.landing.title": "Welcome back to the Abi Support Program for type 2 diabetes treatment.",
|
|
650
|
+
"lilly.test.landing.week01.description.1": "This 12-week program will provide the following resources on demand:",
|
|
651
|
+
"lilly.test.landing.week01.description.2": "<b>A.</b> Access to helpful treatment starter tips.",
|
|
652
|
+
"lilly.test.landing.week01.description.3": "<b>B.</b> Personalized text reminders for lifestyle changes.",
|
|
653
|
+
"lilly.test.landing.week01.description.4": "On the following screen we will ask for some general information to get you set up.",
|
|
654
|
+
"lilly.test.landing.week02.description.1": "You can access resources about type 2 diabetes treatment, and set personalized text reminders to keep your health on track.",
|
|
655
|
+
"lilly.test.landing.week02.description.2": "We will ask for some general information about your current treatment. It should take no more than 1 minute to complete.",
|
|
656
|
+
"lilly.test.landing.week03.description.1": "Please ensure you have enough pens for the weeks ahead, and talk to your doctor or pharmacist if you are running low. ",
|
|
657
|
+
"lilly.test.landing.week03.description.2": "Click to schedule a text reminder to follow up with your doctor or pharmacist.",
|
|
658
|
+
"lilly.test.landing.week04.description.1": "Check out our type 2 diabetes tips for home. You can also schedule a text reminder to follow-up with your doctor or pharmacist.",
|
|
659
|
+
"lilly.test.landing.week04.description.2": "Before that, we will ask for some general information about your experience with type 2 diabetes treatment. It should take no more than 1 minute to complete.",
|
|
660
|
+
"lilly.test.landing.week05.description.1": "You can hit your lifestyle goal and schedule personalized text reminders to keep your health on track.",
|
|
661
|
+
"lilly.test.landing.week05.description.2": "We will ask for some general information about your current treatment. It should take no more than 1 minute to complete.",
|
|
662
|
+
"lilly.test.landing.week06.description.1": "You're working hard to make healthy changes to your lifestyle. You will find tips and tools to stay focused on your diet and fitness goals as you continue on your type 2 diabetes journey.",
|
|
663
|
+
"lilly.test.landing.week06.description.2": "Let's track your progress! It takes less than one minute.",
|
|
664
|
+
"lilly.test.landing.week07.description.1": "<b>Please ensure you have enough pens for the weeks ahead</b>, and talk to your doctor or pharmacist if you are running low. ",
|
|
665
|
+
"lilly.test.landing.week07.description.2": "Schedule a text reminder to follow up with your doctor or pharmacist below.",
|
|
666
|
+
"lilly.test.landing.week08.description.1": "Check out our type 2 diabetes tips for home. You can also schedule a text reminder to follow-up with your doctor or pharmacist.",
|
|
667
|
+
"lilly.test.landing.week08.description.2": "Before that, we will ask for some general information about your experience. It should take no more than 1 minute to complete.",
|
|
668
|
+
"lilly.test.landing.week09.description.1": "Check out our type 2 diabetes tips for home. ",
|
|
669
|
+
"lilly.test.landing.week09.description.2": "Before that, we will ask for some general information about your experience. It should take no more than 1 minute to complete.",
|
|
670
|
+
"lilly.test.landing.week10.description.1": "<b>Note to self: you can do it!</b> With this program you find tips and tools to stay focused on your goals as you move forward in your type 2 diabetes journey.",
|
|
671
|
+
"lilly.test.landing.week10.description.2": "Track your progress. It takes less than one minute.",
|
|
672
|
+
"lilly.test.landing.week11.description.1": "<b>Please remember to talk to your doctor or pharmacist if you are running low on pens</b>, to ensure you have enough supply for the weeks ahead. On the next screens you can schedule a text reminder to follow-up with your doctor or pharmacist.",
|
|
673
|
+
"lilly.test.landing.week11.description.2": "We will ask for some general information to get you set up.",
|
|
674
|
+
"lilly.test.landing.week12.description.1": "<b>Thank you</b> for taking part in this Abi Support Program. We appreciate your time and hope you found the information and resources helpful.",
|
|
675
|
+
"lilly.test.landing.week12.description.2": "Please complete the following form one more time. It should take no more than 1 minute to complete.",
|
|
676
|
+
"link_content.skip": "No, thanks.",
|
|
677
|
+
"loading_summary": "Loading your summary",
|
|
678
|
+
"match.one_minute": "This usually takes less than 1 minute but it may take longer at certain times of the day.",
|
|
679
|
+
"matching": "Matching you with the right healthcare professional",
|
|
680
|
+
"matching.video.text_message": "You will receive a text message when a doctor invites you to join a videocall.",
|
|
681
|
+
"medical_advice.call_visana": "Call a Medical Helpline",
|
|
682
|
+
"medical_advice.emergency": "Emergency",
|
|
683
|
+
"medical_advice.emergency_visana": "Emergency",
|
|
684
|
+
"medical_advice.no_visit_necessary": "No visit needed for the moment",
|
|
685
|
+
"medical_advice.no_visit_necessary_visana": "No visit necessary now",
|
|
686
|
+
"medical_advice.not_question": "Not a health question",
|
|
687
|
+
"medical_advice.speciality.alr": "Allergology",
|
|
688
|
+
"medical_advice.speciality.car": "Cardiology",
|
|
689
|
+
"medical_advice.speciality.der": "Dermatology",
|
|
690
|
+
"medical_advice.speciality.end": "Endocrinology",
|
|
691
|
+
"medical_advice.speciality.gas": "Gastroenterology",
|
|
692
|
+
"medical_advice.speciality.gpr": "General Practice",
|
|
693
|
+
"medical_advice.speciality.gsu": "General surgery",
|
|
694
|
+
"medical_advice.speciality.gyn": "Obstetrics and gynecology",
|
|
695
|
+
"medical_advice.speciality.hem": "Hematology",
|
|
696
|
+
"medical_advice.speciality.inf": "Infectious diseases",
|
|
697
|
+
"medical_advice.speciality.int": "Internal medicine",
|
|
698
|
+
"medical_advice.speciality.mfs": "Maxillo-facial surgery",
|
|
699
|
+
"medical_advice.speciality.nep": "Nephrology",
|
|
700
|
+
"medical_advice.speciality.neu": "Neurology",
|
|
701
|
+
"medical_advice.speciality.nrs": "Neurosurgery",
|
|
702
|
+
"medical_advice.speciality.onc": "Oncology",
|
|
703
|
+
"medical_advice.speciality.oph": "Ophthalmology",
|
|
704
|
+
"medical_advice.speciality.orl": "Otorhinolaryngology",
|
|
705
|
+
"medical_advice.speciality.ors": "Orthopaedic Surgery and Traumatology",
|
|
706
|
+
"medical_advice.speciality.ped": "Paediatrics",
|
|
707
|
+
"medical_advice.speciality.psy": "Psychiatry",
|
|
708
|
+
"medical_advice.speciality.rad": "Radiology",
|
|
709
|
+
"medical_advice.speciality.res": "Respiratory medicine",
|
|
710
|
+
"medical_advice.speciality.rhb": "Physical medicine and rehabilitation",
|
|
711
|
+
"medical_advice.speciality.rhu": "Rheumatology",
|
|
712
|
+
"medical_advice.speciality.title": "What is the medical specialty related to the previous question?",
|
|
713
|
+
"medical_advice.speciality.title_visana": "For the visit to a doctor, what medical speciality do you recommend?",
|
|
714
|
+
"medical_advice.speciality.trm": "Tropical medicine",
|
|
715
|
+
"medical_advice.speciality.uro": "Urology",
|
|
716
|
+
"medical_advice.speciality.vas": "Angiology",
|
|
717
|
+
"medical_advice.title": "What is your evaluation of the previous question?",
|
|
718
|
+
"medical_advice.title_visana": "Based on the available information, what is your recommendation for this case?",
|
|
719
|
+
"medical_advice.visit_doctor": "Visit a doctor (not urgent)",
|
|
720
|
+
"medical_advice.visit_doctor_next_seven_days_visana": "Visit a doctor within the next 7 days",
|
|
721
|
+
"medical_advice.visit_doctor_next_six_hours_visana": "Visit a doctor within the next 6 hours",
|
|
722
|
+
"medical_advice.visit_doctor_next_twentyfour_hours_visana": "Visit a doctor within the next 24 hours",
|
|
723
|
+
"midwife_title_female": "Ms. {{name}}",
|
|
724
|
+
"midwife_title_male": "Mr. {{name}}",
|
|
725
|
+
"modal.cancel": "Are you sure you want to cancel this consultation?",
|
|
726
|
+
"modal.claimed_by_another_doctor": "This case has been claimed by another doctor.",
|
|
727
|
+
"modal.claimed_by_another_doctor.enfa": "This case has been claimed by another nurse.",
|
|
728
|
+
"modal.claimed_by_another_doctor.enfa_test": "This case has been claimed by another nurse.",
|
|
729
|
+
"modal.question_no_available": "Sorry, the question is no longer available.",
|
|
730
|
+
"modal.sending": "Sending...",
|
|
731
|
+
"modal.sent": "Sent",
|
|
732
|
+
"modal.something_went_wrong": "Sorry, something went wrong. Please contact us, if you need help.",
|
|
733
|
+
"modal.time_to_answer_expired": "The time to answer this case has expired.",
|
|
734
|
+
"modal.we_will_reply_shortly": "Thank you for your message. We will reply to you by email shortly.",
|
|
735
|
+
"navigator.disclaimer": " This service is powered by AI, and cannot provide direct medical advice or diagnosis. For any health concerns, please consult with a doctor. <a href=\"https://www.abi.ai/en/health-navigator-faqs\">Learn more</a>",
|
|
736
|
+
"navigator.welcome_message": "Hi! I’m {{navName}}, brought to you by {{partnerName}}. I can help you to:\n\n- understand symptoms, medications and treatments\n- navigate trusted health resources\n- find care centres and pharmacies\n- connect you with a doctor.\n\nWhat can I do for you today?",
|
|
737
|
+
"no_active_cases.title": "There are no active cases.",
|
|
738
|
+
"notification.title": "Hi",
|
|
739
|
+
"nurse_title_female": "Ms. {{name}} (nurse)",
|
|
740
|
+
"nurse_title_male": "Mr. {{name}} (nurse)",
|
|
741
|
+
"option.friday": "Friday",
|
|
742
|
+
"option.monday": "Monday",
|
|
743
|
+
"option.no_reminder": "No reminder",
|
|
744
|
+
"option.saturday": "Saturday",
|
|
745
|
+
"option.sunday": "Sunday",
|
|
746
|
+
"option.thursday": "Thursday",
|
|
747
|
+
"option.tuesday": "Tuesday",
|
|
748
|
+
"option.wednesday": "Wednesday",
|
|
749
|
+
"payment.before": "Before getting your medication, please make payment.",
|
|
750
|
+
"payment.button": "Proceed to Payment",
|
|
751
|
+
"payment.description": "To continue with your consultation, please complete the payment.",
|
|
752
|
+
"payment.title": "Payment",
|
|
753
|
+
"person_title_female": "Ms. {{name}}",
|
|
754
|
+
"person_title_male": "Mr. {{name}}",
|
|
755
|
+
"pharmacy_selector.description": "Please select the pharmacy where you want to pick your prescription up.",
|
|
756
|
+
"pharmacy_selector.searchbar": "Select your preferred pharmacy",
|
|
757
|
+
"pharmacy_selector.validation": "You must select a pharmacy.",
|
|
758
|
+
"physician_title_female": "Dr. {{name}}",
|
|
759
|
+
"physician_title_male": "Dr. {{name}}",
|
|
760
|
+
"placeholder.text": "Ask a health question.",
|
|
761
|
+
"prescription.categories.searchbar": "Search for a condition or medicine",
|
|
762
|
+
"prescription.patient.address": "Please fill in your address, which is required to generate your prescription.",
|
|
763
|
+
"prescription.request.approved": "Prescription issued.",
|
|
764
|
+
"prescription.request.approved.delivery": "Your prescription will be delivered to the selected address.",
|
|
765
|
+
"prescription.request.approved.email.description": "Present the code we sent you at the desired pharmacy to obtain your medication.",
|
|
766
|
+
"prescription.request.approved.email.title": "Check your email",
|
|
767
|
+
"prescription.request.approved.pharmacy": "Please collect it from the pharmacy linked below.",
|
|
768
|
+
"prescription.request.declined": "Prescription declined",
|
|
769
|
+
"prescription.request.details": "Prescription details.",
|
|
770
|
+
"prescription.request.duration": "Duration: {{duration}}",
|
|
771
|
+
"prescription.request.frequency": "Frequency: {{frequency}}",
|
|
772
|
+
"prescriptions-us.pharmacy.filter.address.placeholder": "123 Main Street",
|
|
773
|
+
"prescriptions-us.pharmacy.filter.address.title": "Address",
|
|
774
|
+
"prescriptions-us.pharmacy.filter.city.placeholder": "San Diego",
|
|
775
|
+
"prescriptions-us.pharmacy.filter.city.title": "City",
|
|
776
|
+
"prescriptions-us.pharmacy.filter.name.placeholder": "Spring Valley Pharmacy",
|
|
777
|
+
"prescriptions-us.pharmacy.filter.name.title": "Pharmacy name",
|
|
778
|
+
"prescriptions-us.pharmacy.filter.phoneOrFax.placeholder": "(123) 456-789",
|
|
779
|
+
"prescriptions-us.pharmacy.filter.phoneOrFax.title": "Phone number",
|
|
780
|
+
"prescriptions-us.pharmacy.filter.speciality.all-specialities": "All specialties",
|
|
781
|
+
"prescriptions-us.pharmacy.filter.speciality.mail": "Mail order",
|
|
782
|
+
"prescriptions-us.pharmacy.filter.speciality.retail": "Retail",
|
|
783
|
+
"prescriptions-us.pharmacy.filter.speciality.title": "Pharmacy specialty",
|
|
784
|
+
"prescriptions-us.pharmacy.filter.title": "Add filters",
|
|
785
|
+
"prescriptions-us.pharmacy.filter.zipCode.placeholder": "000000",
|
|
786
|
+
"prescriptions-us.pharmacy.filter.zipCode.title": "ZIP Code",
|
|
787
|
+
"prescriptions-us.pharmacy.load_more": "Load more",
|
|
788
|
+
"prescriptions-us.pharmacy.no-pharmacies": "No pharmacies meet your criteria. Please review or clear the filters to refine your search.",
|
|
789
|
+
"prescriptions-us.pharmacy.remove_filters": "Remove filters",
|
|
790
|
+
"prescriptions-us.pharmacy.title": "Please, select your preferred pharmacy.",
|
|
791
|
+
"psychologist_title_female": "Ms. {{name}} (Psychologist)",
|
|
792
|
+
"psychologist_title_male": "Mr. {{name}} (Psychologist)",
|
|
793
|
+
"rating.description": "Please rate your consultation before downloading the summary",
|
|
794
|
+
"rating.description.download": "Please rate your consultation before downloading the summary.",
|
|
795
|
+
"rating.description.ilh": "Please rate your consultation before downloading the summary",
|
|
796
|
+
"rating.description.ilh_test": "Please rate your consultation before downloading the summary",
|
|
797
|
+
"rating.subtitle": "Please rate your consultation and help us improve your experience.",
|
|
798
|
+
"rating.title": "Your opinion matters!",
|
|
799
|
+
"rating.validation": "Rating is required",
|
|
800
|
+
"recommended_link.no_thanks": "No Thanks",
|
|
801
|
+
"reminder_set": "Reminder set.",
|
|
802
|
+
"responding": "is responding to your case.",
|
|
803
|
+
"reviewing": "is reviewing your request.",
|
|
804
|
+
"reviewing.video": "is reviewing your request. \nYou will soon see a button to join the video call.",
|
|
805
|
+
"sanofi.professional_assessment": "Professional Assessment",
|
|
806
|
+
"serviceForm.title": "To support you throughout the first weeks of treatment and to personalize your experience, we will ask for some general information.",
|
|
807
|
+
"settings.clinical_guidelines": "Clinical Guidelines",
|
|
808
|
+
"settings.contact_us": "Contact Us",
|
|
809
|
+
"settings.faqs": "FAQs",
|
|
810
|
+
"settings.logout": "Logout",
|
|
811
|
+
"settings.notifications": "Notifications",
|
|
812
|
+
"settings.signature": "Signature",
|
|
813
|
+
"settings.terms_of_use": "Terms of Use",
|
|
814
|
+
"settings.training": "Training",
|
|
815
|
+
"sms_reminder.confirmation": "Done! You will receive an SMS when your answer is ready.",
|
|
816
|
+
"sms_reminder.error": "Sorry, it is not possible to process your request at this time.",
|
|
817
|
+
"something_went_wrong": "Something went wrong",
|
|
818
|
+
"specialty_alr": "Allergology",
|
|
819
|
+
"specialty_ane": "Anaesthetics",
|
|
820
|
+
"specialty_car": "Cardiology",
|
|
821
|
+
"specialty_den": "Dentistry",
|
|
822
|
+
"specialty_der": "Dermatology",
|
|
823
|
+
"specialty_emr": "Accident and emergency medicine",
|
|
824
|
+
"specialty_end": "Endocrinology",
|
|
825
|
+
"specialty_for": "Forensic Medicine",
|
|
826
|
+
"specialty_gas": "Gastroenterology",
|
|
827
|
+
"specialty_ger": "Geriatrics",
|
|
828
|
+
"specialty_gpr": "General Practice",
|
|
829
|
+
"specialty_grl": "General Medicine",
|
|
830
|
+
"specialty_gsu": "General surgery",
|
|
831
|
+
"specialty_gyn": "Obstetrics and gynecology",
|
|
832
|
+
"specialty_hem": "Hematology",
|
|
833
|
+
"specialty_icm": "Intensive care medicine",
|
|
834
|
+
"specialty_imm": "Immunology",
|
|
835
|
+
"specialty_inf": "Infectious diseases",
|
|
836
|
+
"specialty_int": "Internal medicine",
|
|
837
|
+
"specialty_lab": "Laboratory medicine",
|
|
838
|
+
"specialty_mbo": "Microbiology",
|
|
839
|
+
"specialty_mfs": "Maxillo-facial surgery",
|
|
840
|
+
"specialty_nep": "Nephrology",
|
|
841
|
+
"specialty_nph": "Neurophysiology",
|
|
842
|
+
"specialty_nrl": "Neurology",
|
|
843
|
+
"specialty_nrs": "Neurosurgery",
|
|
844
|
+
"specialty_nur": "Nurse",
|
|
845
|
+
"specialty_ocm": "Occupational medicine",
|
|
846
|
+
"specialty_onc": "Oncology",
|
|
847
|
+
"specialty_oph": "Ophthalmology",
|
|
848
|
+
"specialty_orl": "Otorhinolaryngology",
|
|
849
|
+
"specialty_ors": "Orthopaedic Surgery and Traumatology",
|
|
850
|
+
"specialty_oth": "Other specialties",
|
|
851
|
+
"specialty_pal": "Palliative medicine",
|
|
852
|
+
"specialty_pat": "Pathology",
|
|
853
|
+
"specialty_pbc": "Breastfeeding counselling",
|
|
854
|
+
"specialty_pds": "Paediatric surgery",
|
|
855
|
+
"specialty_ped": "Paediatrics",
|
|
856
|
+
"specialty_pha": "Pharmacology",
|
|
857
|
+
"specialty_pls": "Plastic surgery",
|
|
858
|
+
"specialty_psc": "Pediatric sleep counselling",
|
|
859
|
+
"specialty_psl": "Psychology",
|
|
860
|
+
"specialty_psy": "Psychiatry",
|
|
861
|
+
"specialty_pth": "Physiotherapy",
|
|
862
|
+
"specialty_puh": "Public health and Preventive Medicine",
|
|
863
|
+
"specialty_rad": "Radiology",
|
|
864
|
+
"specialty_rdt": "Radiotherapy",
|
|
865
|
+
"specialty_res": "Respiratory medicine",
|
|
866
|
+
"specialty_rhb": "Physical medicine and rehabilitation",
|
|
867
|
+
"specialty_rhu": "Rheumatology",
|
|
868
|
+
"specialty_sex": "Sexual Health",
|
|
869
|
+
"specialty_ths": "Thoracic surgery",
|
|
870
|
+
"specialty_trm": "Tropical medicine",
|
|
871
|
+
"specialty_uro": "Urology",
|
|
872
|
+
"specialty_vas": "Vascular surgery",
|
|
873
|
+
"stepper.ask_a_question": "Ask a question",
|
|
874
|
+
"stepper.get_an_answer": "Get an answer",
|
|
875
|
+
"stepper.match_with_a_doctor": "Match with a doctor",
|
|
876
|
+
"stepper.match_with_a_doctor.enfa": "Match with a nurse",
|
|
877
|
+
"stepper.match_with_a_doctor.enfa_test": "Match with a nurse",
|
|
878
|
+
"summary.download.contact": "Please contact <a href='mailto:support@abi.ai'>support@abi.ai</a> to receive the summary.",
|
|
879
|
+
"summary.download.contact.ilh": "Please contact <a href='mailto:ilh@abi.ai'>ilh@abi.ai</a> to receive the summary.",
|
|
880
|
+
"summary.download.contact.ilh_test": "Please contact <a href='mailto:ilh@abi.ai'>ilh@abi.ai</a> to receive the summary.",
|
|
881
|
+
"summary.download.contact.ilh-protection": "Please contact <a href='mailto:ilh@abi.ai'>ilh@abi.ai</a> to receive the summary.",
|
|
882
|
+
"summary.download.error": "Oops, something went wrong while preparing the summary...",
|
|
883
|
+
"summary.prescription.error.description": "Please contact <a href=\"mailto:info@abi.ai\">info@abi.ai</a> to receive your medication.",
|
|
884
|
+
"summary.prescription.error.title": "There is a problem with the delivery of your prescription.",
|
|
885
|
+
"switch.continue_text": "Continue with text consultation",
|
|
886
|
+
"switch.error": "We encountered an issue while processing your request. Please try again later or contact <a href=\"mailto:info@abi.ai\">info@abi.ai</a> for assistance.",
|
|
887
|
+
"switch.no_prescription": "(no prescription available)",
|
|
888
|
+
"switch.prescription_video": "<strong>{{conditionSymptoms}}</strong> may require a prescription, which can only be provided after a video consultation.",
|
|
889
|
+
"switch.to_video.button": "Start a video consultation",
|
|
890
|
+
"switch.variable_video": "For <strong>{{conditionSymptoms}}</strong> , a video consultation may be necessary. Switching to video ensures you get the right care.",
|
|
891
|
+
"text_message.case": "Once our doctor has responded, you will receive a text message with a link to their response. Please enter your mobile number below.",
|
|
892
|
+
"text_message.case.enfa": "Once our nurse has responded, you will receive a text message with a link to their response. Please enter your mobile number below.",
|
|
893
|
+
"text_message.case.enfa_test": "Once our nurse has responded, you will receive a text message with a link to their response. Please enter your mobile number below.",
|
|
894
|
+
"thanks.first-name": "Thanks {{firstName}}!",
|
|
895
|
+
"title.contact": "Contact Us",
|
|
896
|
+
"title.welcome": "Welcome",
|
|
897
|
+
"try_again": "TRY AGAIN",
|
|
898
|
+
"upgrade.description": "<b>Your free account has limited use for this service.</b> To get full access, consider <b><a href=\"https://www.levelhealth.ie/web-portals/plans\" target=\"_blank\">upgrading your plan</a></b>.",
|
|
899
|
+
"user_form.title": "Please confirm your name, cell number and email address.",
|
|
900
|
+
"user_information_collection.title": "To evaluate your request, the doctor will need to know the following information.",
|
|
901
|
+
"user_information_collection.title.enfa": "To evaluate your request, the nurse will need to know the following information.",
|
|
902
|
+
"user_information_collection.title.enfa_test": "To evaluate your request, the nurse will need to know the following information.",
|
|
903
|
+
"user_information_collection.title.ilh": "To evaluate your request, the doctor will need to know the following information.",
|
|
904
|
+
"user_information_collection.title.ilh_test": "To evaluate your request, the doctor will need to know the following information.",
|
|
905
|
+
"video.calling.button": "Join the call",
|
|
906
|
+
"video.calling.midwife_female": "Ms. {{name}} is calling you",
|
|
907
|
+
"video.calling.midwife_male": "Mr. {{name}} is calling you",
|
|
908
|
+
"video.calling.not_refresh": "PLEASE do not refresh or close the window during the videocall.",
|
|
909
|
+
"video.calling.not_refresh.app": "PLEASE do not close the app during the videocall.",
|
|
910
|
+
"video.calling.not_refresh.web": "PLEASE do not refresh or close the window during the videocall.",
|
|
911
|
+
"video.calling.nurse_female": "Ms. {{name}} (nurse) is calling you",
|
|
912
|
+
"video.calling.nurse_male": "Mr. {{name}} (nurse) is calling you",
|
|
913
|
+
"video.calling.person_female": "Ms. {{name}} is calling you",
|
|
914
|
+
"video.calling.person_male": "Mr. {{name}} is calling you",
|
|
915
|
+
"video.calling.physician_female": "Dr. {{name}} is calling you",
|
|
916
|
+
"video.calling.physician_male": "Dr. {{name}} is calling you",
|
|
917
|
+
"video.calling.psychologist_female": "Ms. {{name}} (Psychologist) is calling you",
|
|
918
|
+
"video.calling.psychologist_male": "Mr. {{name}} (Psychologist) is calling you",
|
|
919
|
+
"video.camera_and_microphone_access": "Allow the app access to your camera and microphone to join the call.",
|
|
920
|
+
"video.camera_and_microphone_access.highlight": "Allow access",
|
|
921
|
+
"video.recalling.button": "Rejoin the call",
|
|
922
|
+
"view_profile": "VIEW PROFILE"
|
|
923
|
+
}
|