@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,873 @@
|
|
|
1
|
+
{
|
|
2
|
+
"answer.reset": "詢問新問題",
|
|
3
|
+
"answer.thanks.rating": "感謝您的評分!",
|
|
4
|
+
"attachmentPreview.title": "附件",
|
|
5
|
+
"back": "返回",
|
|
6
|
+
"button.1_week": "一週前",
|
|
7
|
+
"button.2_5_mg": "2.5毫克",
|
|
8
|
+
"button.2_week": "兩週前",
|
|
9
|
+
"button.5_mg": "5毫克",
|
|
10
|
+
"button.ask": "提問",
|
|
11
|
+
"button.cancel": "取消",
|
|
12
|
+
"button.cancel_case": "取消案件",
|
|
13
|
+
"button.confirm": "確認",
|
|
14
|
+
"button.continue": "繼續",
|
|
15
|
+
"button.create_new_password": "建立新密碼",
|
|
16
|
+
"button.dont_remind": "不要提醒我",
|
|
17
|
+
"button.end": "結束",
|
|
18
|
+
"button.forgot_password": "忘記密碼?",
|
|
19
|
+
"button.higher": "提升",
|
|
20
|
+
"button.less_1_week": "不到一週",
|
|
21
|
+
"button.login": "登入",
|
|
22
|
+
"button.more_2_week": "超過兩週",
|
|
23
|
+
"button.more_5": "對,劑量再加5毫克",
|
|
24
|
+
"button.next": "下一步",
|
|
25
|
+
"button.no": "否",
|
|
26
|
+
"button.not_yet": "尚未",
|
|
27
|
+
"button.ok": "好",
|
|
28
|
+
"button.other_dont_know": "其他/不知道",
|
|
29
|
+
"button.pay_now": "立即付款",
|
|
30
|
+
"button.remind.1_week": "一週後提醒我",
|
|
31
|
+
"button.remind.3_days": "三天後提醒我",
|
|
32
|
+
"button.remind.tomorrow": "明天提醒我",
|
|
33
|
+
"button.remove": "移除",
|
|
34
|
+
"button.reset_password": "重設密碼",
|
|
35
|
+
"button.save_selection": "儲存選擇",
|
|
36
|
+
"button.send": "傳送",
|
|
37
|
+
"button.sms_reminder": "在對方回覆時以簡訊通知我",
|
|
38
|
+
"button.start_again": "重新開始",
|
|
39
|
+
"button.submit": "提交",
|
|
40
|
+
"button.try_again": "再試一次",
|
|
41
|
+
"button.undo": "復原",
|
|
42
|
+
"button.yes": "是",
|
|
43
|
+
"button.yes_2_5": "是,給2.5毫克",
|
|
44
|
+
"button.yes_5": "是,給5毫克",
|
|
45
|
+
"button.yes_it_was_negative": "是,它是陰性",
|
|
46
|
+
"button.yes_it_was_positive": "是,它是陽性",
|
|
47
|
+
"case.attachment": "附件",
|
|
48
|
+
"case.back": "返回",
|
|
49
|
+
"case.cancel_question": "退出案件",
|
|
50
|
+
"choice.bloating": "脹氣",
|
|
51
|
+
"choice.chronic_fatigue": "慢性疲勞症候群",
|
|
52
|
+
"choice.decreased_energy_level": "體力降低",
|
|
53
|
+
"choice.difficulty_sleep": "睡眠/入睡困難",
|
|
54
|
+
"choice.discomfort_upper_right_abdomen": "左上腹部不適/疼痛",
|
|
55
|
+
"choice.hyperlipidemia": "高脂血症",
|
|
56
|
+
"choice.nausea": "嘔吐",
|
|
57
|
+
"choice.obesity": "肥胖/過重",
|
|
58
|
+
"choice.type_2_diabetes": "第二型糖尿病",
|
|
59
|
+
"condition_symptom.chest_bronchial": "胸部或支氣管疾病",
|
|
60
|
+
"contact.enter_message_below": "請在下方輸入您的訊息。",
|
|
61
|
+
"contact.hi": "您好!",
|
|
62
|
+
"country.ad": "安道爾",
|
|
63
|
+
"country.ae": "阿拉伯聯合大公國",
|
|
64
|
+
"country.af": "阿富汗",
|
|
65
|
+
"country.ag": "安地卡及巴布達",
|
|
66
|
+
"country.ai": "安吉拉",
|
|
67
|
+
"country.al": "阿爾巴尼亞",
|
|
68
|
+
"country.am": "亞美尼亞",
|
|
69
|
+
"country.ao": "安哥拉",
|
|
70
|
+
"country.aq": "南極洲",
|
|
71
|
+
"country.ar": "阿根廷",
|
|
72
|
+
"country.as": "美屬薩摩亞",
|
|
73
|
+
"country.at": "奧地利",
|
|
74
|
+
"country.au": "澳洲",
|
|
75
|
+
"country.aw": "阿魯巴",
|
|
76
|
+
"country.ax": "奧蘭群島",
|
|
77
|
+
"country.az": "亞塞拜然",
|
|
78
|
+
"country.ba": "波士尼亞與赫塞哥維納",
|
|
79
|
+
"country.bb": "巴貝多",
|
|
80
|
+
"country.bd": "孟加拉",
|
|
81
|
+
"country.be": "比利時",
|
|
82
|
+
"country.bf": "布吉納法索",
|
|
83
|
+
"country.bg": "保加利亞",
|
|
84
|
+
"country.bh": "巴林",
|
|
85
|
+
"country.bi": "蒲隆地",
|
|
86
|
+
"country.bj": "貝南共",
|
|
87
|
+
"country.bl": "聖巴瑟米",
|
|
88
|
+
"country.bm": "百慕達",
|
|
89
|
+
"country.bn": "汶萊",
|
|
90
|
+
"country.bo": "玻利維亞",
|
|
91
|
+
"country.br": "巴西",
|
|
92
|
+
"country.bs": "巴哈馬",
|
|
93
|
+
"country.bt": "不丹",
|
|
94
|
+
"country.bv": "布威島",
|
|
95
|
+
"country.bw": "波札那",
|
|
96
|
+
"country.by": "白俄羅斯",
|
|
97
|
+
"country.bz": "貝里斯",
|
|
98
|
+
"country.ca": "加拿大",
|
|
99
|
+
"country.cc": "科科斯(基林)群島",
|
|
100
|
+
"country.cd": "剛果民主共和國",
|
|
101
|
+
"country.cf": "中非共和國",
|
|
102
|
+
"country.cg": "剛果共和國",
|
|
103
|
+
"country.ch": "瑞士",
|
|
104
|
+
"country.ci": "象牙海岸",
|
|
105
|
+
"country.ck": "庫克群島",
|
|
106
|
+
"country.cl": "智利",
|
|
107
|
+
"country.cm": "喀麥隆",
|
|
108
|
+
"country.cn": "中華人民共和國",
|
|
109
|
+
"country.co": "哥倫比亞",
|
|
110
|
+
"country.cr": "哥斯大黎加",
|
|
111
|
+
"country.cu": "古巴",
|
|
112
|
+
"country.cv": "維德角",
|
|
113
|
+
"country.cw": "古拉索",
|
|
114
|
+
"country.cx": "聖誕島",
|
|
115
|
+
"country.cy": "賽普勒斯",
|
|
116
|
+
"country.cz": "捷克",
|
|
117
|
+
"country.de": "德國",
|
|
118
|
+
"country.dj": "吉布地",
|
|
119
|
+
"country.dk": "丹麥",
|
|
120
|
+
"country.dm": "多米尼克",
|
|
121
|
+
"country.do": "多明尼加",
|
|
122
|
+
"country.dz": "阿爾及利亞",
|
|
123
|
+
"country.ec": "厄瓜多",
|
|
124
|
+
"country.ee": "愛沙尼亞",
|
|
125
|
+
"country.eg": "埃及",
|
|
126
|
+
"country.eh": "西撒哈拉",
|
|
127
|
+
"country.er": "厄利垂亞",
|
|
128
|
+
"country.es": "西班牙",
|
|
129
|
+
"country.et": "衣索比亞",
|
|
130
|
+
"country.fi": "芬蘭",
|
|
131
|
+
"country.fj": "斐濟",
|
|
132
|
+
"country.fk": "福克蘭群島",
|
|
133
|
+
"country.fm": "密克羅尼西亞",
|
|
134
|
+
"country.fo": "法羅群島",
|
|
135
|
+
"country.fr": "法國",
|
|
136
|
+
"country.ga": "加彭",
|
|
137
|
+
"country.gb": "英國",
|
|
138
|
+
"country.gd": "格瑞那達",
|
|
139
|
+
"country.ge": "喬治亞",
|
|
140
|
+
"country.gf": "法屬圭亞那",
|
|
141
|
+
"country.gg": "根西島",
|
|
142
|
+
"country.gh": "迦納",
|
|
143
|
+
"country.gi": "直布羅陀",
|
|
144
|
+
"country.gl": "格陵蘭",
|
|
145
|
+
"country.gm": "甘比亞",
|
|
146
|
+
"country.gn": "幾內亞",
|
|
147
|
+
"country.gp": "法屬瓜地洛普島",
|
|
148
|
+
"country.gq": "赤道幾內亞",
|
|
149
|
+
"country.gr": "希臘",
|
|
150
|
+
"country.gs": "南喬治亞",
|
|
151
|
+
"country.gt": "瓜地馬拉",
|
|
152
|
+
"country.gu": "關島",
|
|
153
|
+
"country.gw": "幾內亞比索",
|
|
154
|
+
"country.gy": "蓋亞那",
|
|
155
|
+
"country.hk": "香港",
|
|
156
|
+
"country.hm": "赫德及麥克唐諾群島",
|
|
157
|
+
"country.hn": "宏都拉斯",
|
|
158
|
+
"country.hr": "克羅埃西亞",
|
|
159
|
+
"country.ht": "海地",
|
|
160
|
+
"country.hu": "匈牙利",
|
|
161
|
+
"country.id": "印尼",
|
|
162
|
+
"country.ie": "愛爾蘭",
|
|
163
|
+
"country.il": "以色列",
|
|
164
|
+
"country.im": "曼島",
|
|
165
|
+
"country.in": "印度",
|
|
166
|
+
"country.io": "英屬印度洋領地",
|
|
167
|
+
"country.iq": "伊拉克",
|
|
168
|
+
"country.ir": "伊朗",
|
|
169
|
+
"country.is": "冰島",
|
|
170
|
+
"country.it": "義大利",
|
|
171
|
+
"country.je": "澤西島",
|
|
172
|
+
"country.jm": "牙買加",
|
|
173
|
+
"country.jo": "約旦",
|
|
174
|
+
"country.jp": "日本",
|
|
175
|
+
"country.ke": "肯亞",
|
|
176
|
+
"country.kg": "吉爾吉斯",
|
|
177
|
+
"country.kh": "柬埔寨",
|
|
178
|
+
"country.ki": "吉里巴斯",
|
|
179
|
+
"country.km": "葛摩聯盟",
|
|
180
|
+
"country.kn": "聖克里斯多福及尼維斯聯邦",
|
|
181
|
+
"country.kp": "北韓",
|
|
182
|
+
"country.kr": "南韓",
|
|
183
|
+
"country.kw": "科威特",
|
|
184
|
+
"country.ky": "開曼群島",
|
|
185
|
+
"country.kz": "哈薩克",
|
|
186
|
+
"country.la": "寮國",
|
|
187
|
+
"country.lb": "黎巴嫩",
|
|
188
|
+
"country.lc": "聖露西亞",
|
|
189
|
+
"country.li": "列支敦斯登",
|
|
190
|
+
"country.lk": "斯里蘭卡",
|
|
191
|
+
"country.lr": "賴比瑞亞",
|
|
192
|
+
"country.ls": "賴索托",
|
|
193
|
+
"country.lt": "立陶宛",
|
|
194
|
+
"country.lu": "盧森堡",
|
|
195
|
+
"country.lv": "拉脫維亞",
|
|
196
|
+
"country.ly": "利比亞",
|
|
197
|
+
"country.ma": "摩洛哥",
|
|
198
|
+
"country.mc": "摩納哥",
|
|
199
|
+
"country.md": "摩爾多瓦",
|
|
200
|
+
"country.me": "蒙特內哥羅",
|
|
201
|
+
"country.mf": "聖馬丁",
|
|
202
|
+
"country.mg": "馬達加斯加",
|
|
203
|
+
"country.mh": "馬紹爾群島",
|
|
204
|
+
"country.mk": "北馬其頓",
|
|
205
|
+
"country.ml": "馬利",
|
|
206
|
+
"country.mm": "緬甸",
|
|
207
|
+
"country.mn": "蒙古",
|
|
208
|
+
"country.mo": "澳門特別行政區",
|
|
209
|
+
"country.mp": "北馬里亞納群島",
|
|
210
|
+
"country.mq": "法屬馬丁尼克",
|
|
211
|
+
"country.mr": "茅利塔尼亞",
|
|
212
|
+
"country.ms": "英屬蒙哲臘",
|
|
213
|
+
"country.mt": "馬爾他",
|
|
214
|
+
"country.mu": "模里西斯",
|
|
215
|
+
"country.mv": "馬爾地夫",
|
|
216
|
+
"country.mw": "馬拉威",
|
|
217
|
+
"country.mx": "墨西哥",
|
|
218
|
+
"country.my": "馬來西亞",
|
|
219
|
+
"country.mz": "莫三比克",
|
|
220
|
+
"country.na": "納米比亞",
|
|
221
|
+
"country.nc": "新喀里多尼亞",
|
|
222
|
+
"country.ne": "尼日",
|
|
223
|
+
"country.nf": "諾福克島",
|
|
224
|
+
"country.ng": "奈及利亞",
|
|
225
|
+
"country.ni": "尼加拉瓜",
|
|
226
|
+
"country.nl": "荷蘭",
|
|
227
|
+
"country.no": "挪威",
|
|
228
|
+
"country.np": "尼泊爾",
|
|
229
|
+
"country.nr": "諾魯",
|
|
230
|
+
"country.nu": "紐埃",
|
|
231
|
+
"country.nz": "紐西蘭",
|
|
232
|
+
"country.om": "阿曼",
|
|
233
|
+
"country.pa": "巴拿馬",
|
|
234
|
+
"country.pe": "秘魯",
|
|
235
|
+
"country.pf": "法屬玻里尼西亞(大溪地)",
|
|
236
|
+
"country.pg": "巴布亞紐幾內亞",
|
|
237
|
+
"country.ph": "菲律賓",
|
|
238
|
+
"country.pk": "巴基斯坦",
|
|
239
|
+
"country.pl": "波蘭",
|
|
240
|
+
"country.pm": "聖皮耶與密克隆",
|
|
241
|
+
"country.pn": "皮特肯群島",
|
|
242
|
+
"country.pr": "美屬波多黎各",
|
|
243
|
+
"country.ps": "巴勒斯坦",
|
|
244
|
+
"country.pt": "葡萄牙",
|
|
245
|
+
"country.pw": "帛琉",
|
|
246
|
+
"country.py": "巴拉圭",
|
|
247
|
+
"country.qa": "卡達",
|
|
248
|
+
"country.re": "法屬留尼旺島",
|
|
249
|
+
"country.ro": "羅馬尼亞",
|
|
250
|
+
"country.rs": "塞爾維亞",
|
|
251
|
+
"country.ru": "俄羅斯",
|
|
252
|
+
"country.rw": "盧安達",
|
|
253
|
+
"country.sa": "沙烏地阿拉伯",
|
|
254
|
+
"country.sb": "索羅門群島",
|
|
255
|
+
"country.sc": "塞席爾",
|
|
256
|
+
"country.sd": "蘇丹",
|
|
257
|
+
"country.se": "瑞典",
|
|
258
|
+
"country.sg": "新加坡",
|
|
259
|
+
"country.si": "斯洛維尼亞",
|
|
260
|
+
"country.sj": "斯瓦巴和揚馬延",
|
|
261
|
+
"country.sk": "斯洛伐克",
|
|
262
|
+
"country.sl": "獅子山共和國",
|
|
263
|
+
"country.sm": "聖馬利諾",
|
|
264
|
+
"country.sn": "塞內加爾",
|
|
265
|
+
"country.so": "索馬利亞",
|
|
266
|
+
"country.sr": "蘇利南",
|
|
267
|
+
"country.ss": "南蘇丹",
|
|
268
|
+
"country.st": "聖多美普林西比",
|
|
269
|
+
"country.sv": "薩爾瓦多",
|
|
270
|
+
"country.sx": "聖馬丁",
|
|
271
|
+
"country.sy": "敘利亞",
|
|
272
|
+
"country.sz": "史瓦帝尼",
|
|
273
|
+
"country.tc": "英屬土克凱可群島",
|
|
274
|
+
"country.td": "查德",
|
|
275
|
+
"country.tf": "法屬南部和南極領地",
|
|
276
|
+
"country.tg": "多哥",
|
|
277
|
+
"country.th": "泰國",
|
|
278
|
+
"country.tj": "塔吉克",
|
|
279
|
+
"country.tk": "托克勞群島",
|
|
280
|
+
"country.tl": "東帝汶",
|
|
281
|
+
"country.tm": "土庫曼",
|
|
282
|
+
"country.tn": "突尼西亞",
|
|
283
|
+
"country.to": "東加",
|
|
284
|
+
"country.tr": "土耳其",
|
|
285
|
+
"country.tt": "千里達及托巴哥",
|
|
286
|
+
"country.tv": "吐瓦魯",
|
|
287
|
+
"country.tw": "中華民國 (臺灣)",
|
|
288
|
+
"country.tz": "坦尚尼亞",
|
|
289
|
+
"country.ua": "烏克蘭",
|
|
290
|
+
"country.ug": "烏干達",
|
|
291
|
+
"country.um": "美國本土外小島嶼",
|
|
292
|
+
"country.us": "美國",
|
|
293
|
+
"country.us.area.ak": "阿拉斯加州",
|
|
294
|
+
"country.us.area.al": "阿拉巴馬州",
|
|
295
|
+
"country.us.area.ar": "阿肯色州",
|
|
296
|
+
"country.us.area.as": "美屬薩摩亞",
|
|
297
|
+
"country.us.area.az": "亞利桑那州",
|
|
298
|
+
"country.us.area.ca": "加利福尼亞州",
|
|
299
|
+
"country.us.area.co": "科羅拉多州",
|
|
300
|
+
"country.us.area.ct": "康乃狄克州",
|
|
301
|
+
"country.us.area.dc": "華盛頓哥倫比亞特區",
|
|
302
|
+
"country.us.area.de": "德拉瓦州",
|
|
303
|
+
"country.us.area.fl": "佛羅里達州",
|
|
304
|
+
"country.us.area.ga": "喬治亞州",
|
|
305
|
+
"country.us.area.gu": "關島",
|
|
306
|
+
"country.us.area.hi": "夏威夷州",
|
|
307
|
+
"country.us.area.ia": "愛荷華州",
|
|
308
|
+
"country.us.area.id": "愛達荷州",
|
|
309
|
+
"country.us.area.il": "伊利諾州",
|
|
310
|
+
"country.us.area.in": "印第安納州",
|
|
311
|
+
"country.us.area.ks": "堪薩斯州",
|
|
312
|
+
"country.us.area.ky": "肯塔基州",
|
|
313
|
+
"country.us.area.la": "路易斯安那州",
|
|
314
|
+
"country.us.area.ma": "麻薩諸塞州",
|
|
315
|
+
"country.us.area.md": "馬里蘭州",
|
|
316
|
+
"country.us.area.me": "緬因州",
|
|
317
|
+
"country.us.area.mi": "密西根州",
|
|
318
|
+
"country.us.area.mn": "明尼蘇達州",
|
|
319
|
+
"country.us.area.mo": "密蘇里州",
|
|
320
|
+
"country.us.area.mp": "北馬里亞納群島",
|
|
321
|
+
"country.us.area.ms": "密西西比州",
|
|
322
|
+
"country.us.area.mt": "蒙大拿州",
|
|
323
|
+
"country.us.area.nc": "北卡羅來納州",
|
|
324
|
+
"country.us.area.nd": "北達科他州",
|
|
325
|
+
"country.us.area.ne": "內布拉斯加州",
|
|
326
|
+
"country.us.area.nh": "新罕布夏州",
|
|
327
|
+
"country.us.area.nj": "紐澤西州",
|
|
328
|
+
"country.us.area.nm": "新墨西哥州",
|
|
329
|
+
"country.us.area.nv": "內華達州",
|
|
330
|
+
"country.us.area.ny": "紐約州",
|
|
331
|
+
"country.us.area.oh": "俄亥俄州",
|
|
332
|
+
"country.us.area.ok": "奧克拉荷馬州",
|
|
333
|
+
"country.us.area.or": "奧勒岡州",
|
|
334
|
+
"country.us.area.pa": "賓夕法尼亞州",
|
|
335
|
+
"country.us.area.pr": "波多黎各",
|
|
336
|
+
"country.us.area.ri": "羅德島州",
|
|
337
|
+
"country.us.area.sc": "南卡羅來納州",
|
|
338
|
+
"country.us.area.sd": "南達科他州",
|
|
339
|
+
"country.us.area.tn": "田納西州",
|
|
340
|
+
"country.us.area.tx": "德克薩斯州",
|
|
341
|
+
"country.us.area.um": "美國本土外小島嶼",
|
|
342
|
+
"country.us.area.ut": "猶他州",
|
|
343
|
+
"country.us.area.va": "維吉尼亞州",
|
|
344
|
+
"country.us.area.vi": "美屬維京群島",
|
|
345
|
+
"country.us.area.vt": "佛蒙特州",
|
|
346
|
+
"country.us.area.wa": "華盛頓州",
|
|
347
|
+
"country.us.area.wi": "威斯康辛州",
|
|
348
|
+
"country.us.area.wv": "西維吉尼亞州",
|
|
349
|
+
"country.us.area.wy": "懷俄明州",
|
|
350
|
+
"country.uy": "烏拉圭",
|
|
351
|
+
"country.uz": "烏茲別克",
|
|
352
|
+
"country.va": "梵蒂岡",
|
|
353
|
+
"country.vc": "聖文森及格瑞那丁",
|
|
354
|
+
"country.ve": "委內瑞拉",
|
|
355
|
+
"country.vg": "維京群島(英國海外領地)",
|
|
356
|
+
"country.vi": "美屬維京群島",
|
|
357
|
+
"country.vn": "越南",
|
|
358
|
+
"country.vu": "萬那杜",
|
|
359
|
+
"country.wf": "瓦利斯和富圖那",
|
|
360
|
+
"country.ws": "薩摩亞",
|
|
361
|
+
"country.xk": "科索沃",
|
|
362
|
+
"country.ye": "葉門",
|
|
363
|
+
"country.yt": "馬約特島",
|
|
364
|
+
"country.za": "南非",
|
|
365
|
+
"country.zm": "尚比亞",
|
|
366
|
+
"country.zw": "辛巴威",
|
|
367
|
+
"delivery.address.address": "地址",
|
|
368
|
+
"delivery.address.address.placeholder.1": "街道名及號碼",
|
|
369
|
+
"delivery.address.address.placeholder.2": "社區或樓層",
|
|
370
|
+
"delivery.address.building_name_number": "建築物名稱/號碼",
|
|
371
|
+
"delivery.address.building_name_number.placeholder": "幸運大廈",
|
|
372
|
+
"delivery.address.country": "國家/地區",
|
|
373
|
+
"delivery.address.country.placeholder": "請選擇…",
|
|
374
|
+
"delivery.address.description": "處方簽已確認。請提供完整地址以便寄送處方藥物。",
|
|
375
|
+
"delivery.address.district_city": "地區/縣市",
|
|
376
|
+
"delivery.address.district_city.placeholder": "香港新界",
|
|
377
|
+
"delivery.address.mobile": "手機號碼",
|
|
378
|
+
"delivery.address.number_and_floor": "住宅號碼及樓層",
|
|
379
|
+
"delivery.address.number_and_floor.placeholder": "15 樓 46 室",
|
|
380
|
+
"delivery.address.processing": "正在處理您的處方簽…",
|
|
381
|
+
"delivery.address.street": "街道",
|
|
382
|
+
"delivery.address.street.placeholder": "南運街",
|
|
383
|
+
"delivery.address.title": "送貨地址",
|
|
384
|
+
"delivery.address.zipcode": "郵遞區號",
|
|
385
|
+
"delivery.address.zipcode.placeholder": "0.0",
|
|
386
|
+
"download": "下載",
|
|
387
|
+
"download.five_minutes": "這通常需要等待 5 分鐘。",
|
|
388
|
+
"download.one_minute": "這通常需要等待1 分鐘。",
|
|
389
|
+
"download.summary_being_prepared": "正在準備您的摘要。",
|
|
390
|
+
"download.summary_getting_ready": "您的摘要即將完成。",
|
|
391
|
+
"download.usually_takes": "這通常需要等待1 分鐘。",
|
|
392
|
+
"error.case_already_open": "您有一個尚未完成的個案,請先結案。",
|
|
393
|
+
"error.something_went_wrong": "發生異常,請再試一次",
|
|
394
|
+
"error.validation.attachment.duplicated": "已新增附件",
|
|
395
|
+
"error.validation.attachment.max": "上傳錯誤:您只可上傳最多 {{maxAmount}} 個檔案。",
|
|
396
|
+
"error.validation.attachment.size": "每個檔案大小上限為 {{maxSize}}",
|
|
397
|
+
"error.validation.attachment.type": "上傳錯誤:請嘗試另一種檔案類型。只支援圖像(PNG、JPG)和 PDF 檔案。",
|
|
398
|
+
"error.validation.attachment.upload": "上傳檔案時發生錯誤",
|
|
399
|
+
"error.validation.default": "錯誤",
|
|
400
|
+
"error.validation.email": "請檢查您的電子郵件地址。",
|
|
401
|
+
"error.validation.fill_form": "您必須填寫此表格。",
|
|
402
|
+
"error.validation.max_value": "數值上限為 {{max}}。",
|
|
403
|
+
"error.validation.max_value.age.ilh": "無效的年齡",
|
|
404
|
+
"error.validation.max_value.age.ilh_test": "無效的年齡",
|
|
405
|
+
"error.validation.max_value.age.ilh-protection": "無效的年齡",
|
|
406
|
+
"error.validation.min_value": "數值下限為 {{min}}",
|
|
407
|
+
"error.validation.min_value.age.mj1": "無效的年齡",
|
|
408
|
+
"error.validation.min_value.age.mj1test": "無效的年齡",
|
|
409
|
+
"error.validation.phone": "請檢查您的電話號碼。",
|
|
410
|
+
"error.validation.required": "必填欄位",
|
|
411
|
+
"error.wrong_language_combination": "錯誤的語言+國家組合。請聯繫我們以尋求幫助。",
|
|
412
|
+
"exit_logic.denied.description": "似乎需要進一步的醫療評估,因此我們目前無法繼續處理要求。",
|
|
413
|
+
"exit_logic.denied.title": "抱歉,根據您的回覆內容,我們無法繼續處理要求。",
|
|
414
|
+
"experiencing_symptoms.description": "檢查所有適用的內容。如果沒有,請按繼續。",
|
|
415
|
+
"follow_up": "或提問追蹤問題",
|
|
416
|
+
"follow_up.placeholder.text": "提問追蹤問題",
|
|
417
|
+
"forgot_password_confirmation.check_email_to_continue": "請檢查您的電子郵件以繼續",
|
|
418
|
+
"forgot_password_confirmation.password_reset_email_sent": "已傳送密碼重設電子郵件",
|
|
419
|
+
"forgot_password.already_have_an_account": "已有帳戶?",
|
|
420
|
+
"forgot_password.forgot_your_password": "忘記密碼?",
|
|
421
|
+
"forgot_password.we_will_email_you": "我們會透過電子郵件傳送連結,以便建立新密碼",
|
|
422
|
+
"form.gender.other": "其他",
|
|
423
|
+
"form.gender.female": "女性",
|
|
424
|
+
"form.gender.male": "男性",
|
|
425
|
+
"form.gender.non-binary": "非二元性別",
|
|
426
|
+
"form.gender.prefer_not_to_answer": "不方便提供",
|
|
427
|
+
"form.gender.transgender_female": "跨女",
|
|
428
|
+
"form.gender.transgender_male": "跨男",
|
|
429
|
+
"fulfillment.collect.description": "您的處方簽將會直接提供給您所選擇的藥局。",
|
|
430
|
+
"fulfillment.collect.title": "在藥局領藥",
|
|
431
|
+
"fulfillment.delivery.description": "您的處方簽將會寄送至您的住址或公司地址。",
|
|
432
|
+
"fulfillment.delivery.title": "宅配到府",
|
|
433
|
+
"fulfillment.download.description": "下載可列印的 PDF,以便您提供給任何藥局。",
|
|
434
|
+
"fulfillment.download.title": "下載為 PDF",
|
|
435
|
+
"fulfillment.please_select": "請選擇送貨選項。",
|
|
436
|
+
"fulfillment.title": "您的處方簽已確認。您想用什麼方式領取?",
|
|
437
|
+
"general.coming_soon": "即將推出",
|
|
438
|
+
"general.consultation.assessment.description": "請在匿名網站上完成評估。經專業人士審核結果後,您將會收到下一步建議。",
|
|
439
|
+
"general.consultation.assessment.title": "專業評估",
|
|
440
|
+
"general.consultation.health_navigator.title": "健康導覽",
|
|
441
|
+
"general.consultation.medicalConsultation.description": "寄送訊息提問醫療問題,只需數分鐘即可獲得合格醫師的保密回覆。",
|
|
442
|
+
"general.consultation.medicalConsultation.description.enfa": "寄送訊息提問醫療問題,只需數分鐘即可獲得合格護理師的保密回覆。",
|
|
443
|
+
"general.consultation.medicalConsultation.description.enfa_test": "寄送訊息提問醫療問題,只需數分鐘即可獲得合格護理師的保密回覆。",
|
|
444
|
+
"general.consultation.medicalConsultation.description.ilh": "寄送訊息提問醫療問題,只需數分鐘即可獲得合格醫師的保密回覆。",
|
|
445
|
+
"general.consultation.medicalConsultation.description.ilh_test": "寄送訊息提問醫療問題,只需數分鐘即可獲得合格醫師的保密回覆。",
|
|
446
|
+
"general.consultation.medicalConsultation.summary": "訊息諮詢摘要",
|
|
447
|
+
"general.consultation.medicalConsultation.title": "向醫師發送訊息",
|
|
448
|
+
"general.consultation.medicalConsultation.title.enfa": "向護理師提問",
|
|
449
|
+
"general.consultation.medicalConsultation.title.enfa_test": "向護理師提問",
|
|
450
|
+
"general.consultation.medicalConsultation.title.ilh": "向醫師發送訊息",
|
|
451
|
+
"general.consultation.medicalConsultation.title.ilh_test": "向醫師發送訊息",
|
|
452
|
+
"general.consultation.medicalConsultation.title.level-health": "訊息諮詢",
|
|
453
|
+
"general.consultation.medicalConsultation.title.level-health-test": "訊息諮詢",
|
|
454
|
+
"general.consultation.modal.are_you_sure": "您確定要取消此個案嗎?",
|
|
455
|
+
"general.consultation.modal.are_you_sure.prescriptionRequest": "您確定要取消此處方簽嗎?",
|
|
456
|
+
"general.consultation.modal.finish_video_call": "您確定要結束視訊嗎?",
|
|
457
|
+
"general.consultation.navigator.title": "健康導覽",
|
|
458
|
+
"general.consultation.prescription.description": "從清單中選擇或搜尋可用於此處方簽的常用藥物。",
|
|
459
|
+
"general.consultation.prescription.title": "處方要求",
|
|
460
|
+
"general.consultation.prescriptionRequest.description": "從清單中選擇或搜尋可用於此處方簽的常用藥物。",
|
|
461
|
+
"general.consultation.prescriptionRequest.description.ilh": "從清單中選擇或搜尋可用於此處方簽的常用藥物。",
|
|
462
|
+
"general.consultation.prescriptionRequest.description.ilh_test": "從清單中選擇或搜尋可用於此處方簽的常用藥物。",
|
|
463
|
+
"general.consultation.prescriptionRequest.summary": "線上處方摘要",
|
|
464
|
+
"general.consultation.prescriptionRequest.title": "線上處方簽",
|
|
465
|
+
"general.consultation.prescriptionRequest.title.ilh": "線上處方簽",
|
|
466
|
+
"general.consultation.prescriptionRequest.title.ilh_test": "線上處方簽",
|
|
467
|
+
"general.consultation.prescriptions.description": "從清單中選擇或搜尋可用於此處方簽的常用藥物。",
|
|
468
|
+
"general.consultation.prescriptions.title": "處方簽要求",
|
|
469
|
+
"general.consultation.summary.download": "下載摘要",
|
|
470
|
+
"general.consultation.text.description": "寄送訊息提問醫療問題,只需數分鐘即可獲得合格醫師的保密回覆。",
|
|
471
|
+
"general.consultation.text.description.enfa": "寄送訊息提問醫療問題,只需數分鐘即可獲得合格護理師的保密回覆。",
|
|
472
|
+
"general.consultation.text.description.enfa_test": "寄送訊息提問醫療問題,只需數分鐘即可獲得合格護理師的保密回覆。",
|
|
473
|
+
"general.consultation.text.title": "訊息諮詢",
|
|
474
|
+
"general.consultation.videoConsultation.description": "要求與本地註冊醫生進行視訊通話。在合適的情況下,對方可作出診斷並確認處方。",
|
|
475
|
+
"general.consultation.videoConsultation.ending": "正在結束視訊諮詢。",
|
|
476
|
+
"general.consultation.videoConsultation.hcpCanRecall": "這通常需等待 5 分鐘。\n如有需要,醫師可能會再次致電以取得更多資訊。",
|
|
477
|
+
"general.consultation.videoConsultation.isPreparingSummary": "正在處理您的摘要。",
|
|
478
|
+
"general.consultation.videoConsultation.summary": "視訊諮詢摘要",
|
|
479
|
+
"general.consultation.videoConsultation.title": "視訊諮詢",
|
|
480
|
+
"general.consultation.voice.description": "與醫師、護理師或其他專業醫療護理人員討論。對方會在數分鐘後回電。",
|
|
481
|
+
"general.consultation.voice.title": "語音通話",
|
|
482
|
+
"general.consultations.answer.end_consultation": "結束諮詢",
|
|
483
|
+
"general.prescriptionRequest.question.hint": "這能夠幫助醫師進一步了解您對之前問題的答覆。",
|
|
484
|
+
"general.prescriptionRequest.question.placeholder": "點撃此處輸入內容。",
|
|
485
|
+
"general.prescriptionRequest.question.title": "請以您自己的語言,向醫生解釋您需要處方簽的原因。",
|
|
486
|
+
"header.reminder_set": "已設定提醒。",
|
|
487
|
+
"health_navigator.close_conversation.description": "請注意您的對話紀錄不會儲存",
|
|
488
|
+
"health_navigator.close_conversation.title": "您確定要關閉嗎?",
|
|
489
|
+
"health_navigator.disclaimer": "這項服務為人工智能提供,故無法提供直接的醫療建議或診斷。如有任何健康相關的疑慮,請直接諮詢醫師。了解更多",
|
|
490
|
+
"health_navigator.health_resources": "在這裡您可以找到來自可信任來源的精選健康資訊:",
|
|
491
|
+
"health_navigator.new_chat.button": "開始新對話",
|
|
492
|
+
"health_navigator.new_chat.description": "注意您的當前對話紀錄不會被儲存",
|
|
493
|
+
"health_navigator.new_chat.title": "您想開始新對話嗎",
|
|
494
|
+
"health_navigator.recommended": "建議",
|
|
495
|
+
"i_consent_to_participate_in_the_programme_as_outlined": "我同意接受可選擇的簡訊通知,並參與上述計劃。",
|
|
496
|
+
"i_have_read_and_agreed_to_the_terms_conditions": "我已閱讀並同意<a href='https://abi.ai/zh-hk/terms-of-use'>條款及細則</a>",
|
|
497
|
+
"i_have_read_and_agreed_to_the_terms_conditions.mj1": "我已閱讀並同意<a href='https://mj1.abi.ai/en/terms-of-use'>條款及細則</a>",
|
|
498
|
+
"i_have_read_and_understood_the_privacy_policy": "我已閱讀並同意<a href='https://abi.ai/zh-hk/privacy'>隱私政策</a>",
|
|
499
|
+
"i_have_read_and_understood_the_privacy_policy.mj1": "我已閱讀並同意<a href='https://mj1.abi.ai/en/privacy'>隱私政策</a>",
|
|
500
|
+
"input.confirm_password": "確認密碼",
|
|
501
|
+
"input.email": "電子郵件",
|
|
502
|
+
"input.message": "訊息",
|
|
503
|
+
"input.password": "密碼",
|
|
504
|
+
"input.subject": "主題",
|
|
505
|
+
"inputs.address.label": "地址",
|
|
506
|
+
"inputs.address.placeholder": "請在此新增…",
|
|
507
|
+
"inputs.age.label": "年齡",
|
|
508
|
+
"inputs.city.label": "城市",
|
|
509
|
+
"inputs.city.placeholder": "城市",
|
|
510
|
+
"inputs.dateOfBirth.label": "出生日期",
|
|
511
|
+
"inputs.email.label": "電子郵件",
|
|
512
|
+
"inputs.firstName.label": "名字",
|
|
513
|
+
"inputs.gender.label": "性別",
|
|
514
|
+
"inputs.gender.placeholder": "您的性別",
|
|
515
|
+
"inputs.height.label": "身高",
|
|
516
|
+
"inputs.hongKongIdPassport.label": "護照號碼",
|
|
517
|
+
"inputs.lastName.label": "姓氏",
|
|
518
|
+
"inputs.mobile_number": "手機號碼",
|
|
519
|
+
"inputs.mobile.label": "手機號碼",
|
|
520
|
+
"inputs.national_identification_number.label": "身份證字號",
|
|
521
|
+
"inputs.nationalId.label": "身份證字號",
|
|
522
|
+
"inputs.phone.label": "手機號碼",
|
|
523
|
+
"inputs.physicianCountry.label": "國家/地區",
|
|
524
|
+
"inputs.physicianCountry.placeholder": "國家/地區",
|
|
525
|
+
"inputs.physicianState.label": "州",
|
|
526
|
+
"inputs.physicianState.placeholder": "州",
|
|
527
|
+
"inputs.sex.label": "性別",
|
|
528
|
+
"inputs.surname.label": "姓氏",
|
|
529
|
+
"inputs.textarea.min_length": "最少 {{minLength}} 個字元",
|
|
530
|
+
"inputs.textarea.question_empty": "詢問健康問題",
|
|
531
|
+
"inputs.weight.label": "體重",
|
|
532
|
+
"inputs.zipCode.label": "郵遞區號",
|
|
533
|
+
"inputs.zipCode.placeholder": "郵遞區號",
|
|
534
|
+
"language_selection.footer.mj1": "此促銷訊息由 Lilly USA, LLC 開發和贊助,針對 18 歲或以上的美國居民。",
|
|
535
|
+
"language_selection.footer.mj1test": "此促銷訊息由 Lilly USA, LLC 開發和贊助,針對 18 歲或以上的美國居民。",
|
|
536
|
+
"language_selection.title": "請選擇您想使用的語言。",
|
|
537
|
+
"languages.en": "英文",
|
|
538
|
+
"languages.es": "西班牙文",
|
|
539
|
+
"lilly.already_registered": "手機號碼已註冊。您很快就會收到一封帶有登入連結的簡訊。",
|
|
540
|
+
"lilly.compelling_material.managing_possible_side_effects": "管理可能的副作用",
|
|
541
|
+
"lilly.compelling_material.title": "額外支持",
|
|
542
|
+
"lilly.compelling_material.video": "瞭解如何自行注射。",
|
|
543
|
+
"lilly.compelling_material.week01.1.button": "節省的費用",
|
|
544
|
+
"lilly.compelling_material.week01.1.description": "瞭解您是否符合資格",
|
|
545
|
+
"lilly.compelling_material.week01.2.button": "劑量資訊",
|
|
546
|
+
"lilly.compelling_material.week01.2.description": "瞭解更多有關不同劑量選擇的資訊",
|
|
547
|
+
"lilly.compelling_material.week01.3.button": "可能的副作用",
|
|
548
|
+
"lilly.compelling_material.week01.3.description": "如果您出現副作用,請諮詢您的醫生。",
|
|
549
|
+
"lilly.compelling_material.week01.4.button": "操作影片",
|
|
550
|
+
"lilly.compelling_material.week01.4.description": "瞭解如何自行注射。",
|
|
551
|
+
"lilly.compelling_material.week02.1.button": "什麼是 A1C 測試?",
|
|
552
|
+
"lilly.compelling_material.week02.1.description": "管控第二型糖尿病",
|
|
553
|
+
"lilly.compelling_material.week02.2.button": "劑量資訊",
|
|
554
|
+
"lilly.compelling_material.week02.2.description": "瞭解更多有關不同劑量選擇的資訊",
|
|
555
|
+
"lilly.compelling_material.week02.3.button": "可能的副作用",
|
|
556
|
+
"lilly.compelling_material.week02.3.description": "如果您出現副作用,請諮詢您的醫生。",
|
|
557
|
+
"lilly.compelling_material.week03.1.button": "劑量資訊",
|
|
558
|
+
"lilly.compelling_material.week03.1.description": "瞭解更多有關不同劑量選擇的資訊",
|
|
559
|
+
"lilly.compelling_material.week03.2.button": "節省的費用",
|
|
560
|
+
"lilly.compelling_material.week03.2.description": "瞭解您是否符合資格",
|
|
561
|
+
"lilly.compelling_material.week04.1.button": "A1C測試",
|
|
562
|
+
"lilly.compelling_material.week04.1.description": "管控第二型糖尿病",
|
|
563
|
+
"lilly.compelling_material.week04.2.button": "健康小知識",
|
|
564
|
+
"lilly.compelling_material.week04.2.description": "生活方式",
|
|
565
|
+
"lilly.compelling_material.week04.3.button": "劑量資訊",
|
|
566
|
+
"lilly.compelling_material.week04.3.description": "瞭解更多有關不同劑量選擇的資訊",
|
|
567
|
+
"lilly.compelling_material.week05.1.button": "劑量資訊",
|
|
568
|
+
"lilly.compelling_material.week05.1.description": "瞭解更多有關不同劑量選擇的資訊",
|
|
569
|
+
"lilly.compelling_material.week05.2.button": "外出",
|
|
570
|
+
"lilly.compelling_material.week05.2.description": "外出時的飲食和健身建議",
|
|
571
|
+
"lilly.compelling_material.week05.3.button": "操作影片",
|
|
572
|
+
"lilly.compelling_material.week05.3.description": "瞭解如何自行注射。",
|
|
573
|
+
"lilly.compelling_material.week06.1.button": "未來目標",
|
|
574
|
+
"lilly.compelling_material.week06.1.description": "真正了解你的目標。",
|
|
575
|
+
"lilly.compelling_material.week06.2.button": "劑量資訊",
|
|
576
|
+
"lilly.compelling_material.week06.2.description": "瞭解更多有關不同劑量選擇的資訊",
|
|
577
|
+
"lilly.compelling_material.week06.3.button": "可能的副作用",
|
|
578
|
+
"lilly.compelling_material.week06.3.description": "如果您出現副作用,請諮詢您的醫生。",
|
|
579
|
+
"lilly.compelling_material.week07.1.button": "劑量資訊",
|
|
580
|
+
"lilly.compelling_material.week07.1.description": "了解有關不同劑量選擇的更多資訊。",
|
|
581
|
+
"lilly.compelling_material.week07.2.button": "節省的費用",
|
|
582
|
+
"lilly.compelling_material.week07.2.description": "瞭解您是否符合資格",
|
|
583
|
+
"lilly.compelling_material.week08.1.button": "健康小知識",
|
|
584
|
+
"lilly.compelling_material.week08.1.description": "生活方式",
|
|
585
|
+
"lilly.compelling_material.week08.2.button": "A1C測試",
|
|
586
|
+
"lilly.compelling_material.week08.2.description": "劑量資訊",
|
|
587
|
+
"lilly.compelling_material.week08.3.button": "瞭解更多有關不同劑量選擇的資訊",
|
|
588
|
+
"lilly.compelling_material.week08.3.description": "健康小知識",
|
|
589
|
+
"lilly.compelling_material.week09.1.button": "健康小知識",
|
|
590
|
+
"lilly.compelling_material.week09.1.description": "生活方式",
|
|
591
|
+
"lilly.compelling_material.week09.2.button": "劑量資訊",
|
|
592
|
+
"lilly.compelling_material.week09.2.description": "瞭解更多有關不同劑量選擇的資訊",
|
|
593
|
+
"lilly.compelling_material.week09.3.button": "操作影片",
|
|
594
|
+
"lilly.compelling_material.week09.3.description": "瞭解如何自行注射。",
|
|
595
|
+
"lilly.compelling_material.week10.1.button": "未來目標",
|
|
596
|
+
"lilly.compelling_material.week10.1.description": "真正了解你的目標。",
|
|
597
|
+
"lilly.compelling_material.week10.2.button": "劑量資訊",
|
|
598
|
+
"lilly.compelling_material.week10.2.description": "瞭解更多有關不同劑量選擇的資訊",
|
|
599
|
+
"lilly.compelling_material.week10.3.button": "可能的副作用",
|
|
600
|
+
"lilly.compelling_material.week10.3.description": "如果您出現副作用,請諮詢您的醫生。",
|
|
601
|
+
"lilly.compelling_material.week11.1.button": "節省的費用",
|
|
602
|
+
"lilly.compelling_material.week11.1.description": "了解您是否符合資格。",
|
|
603
|
+
"lilly.compelling_material.week11.2.button": "劑量資訊",
|
|
604
|
+
"lilly.compelling_material.week11.2.description": "瞭解更多有關不同劑量選擇的資訊",
|
|
605
|
+
"lilly.compelling_material.week12.1.button": "劑量資訊",
|
|
606
|
+
"lilly.compelling_material.week12.1.description": "瞭解更多有關不同劑量選擇的資訊",
|
|
607
|
+
"lilly.compelling_material.week12.1.footer": "感謝您參加 Abi 支持計畫!感謝您抽出寶貴的時間,希望這些資訊和資源對您有所幫助。",
|
|
608
|
+
"lilly.compelling_material.week12.2.button": "操作影片",
|
|
609
|
+
"lilly.compelling_material.week12.2.description": "瞭解如何自行注射。",
|
|
610
|
+
"lilly.confirmation": "謝謝{{firstName}},您的電話號碼已確認。",
|
|
611
|
+
"lilly.confirmation_message.description.1": "我們已向您發送了一條確認訊息。它應該會在接下來的幾分鐘內傳送至您提供的號碼。",
|
|
612
|
+
"lilly.confirmation_message.description.2": "請打開訊息並點擊連結繼續。",
|
|
613
|
+
"lilly.confirmation_message.title": "謝謝{{firstName}}!",
|
|
614
|
+
"lilly.control.landing.week01.description.1": "這個為期 12 週的計劃將提供關鍵的支援資源,例如操作影片和其他依照您的需求提供的提示:",
|
|
615
|
+
"lilly.control.landing.week01.description.2": "在接下來的螢幕上,我們將要求您提供一些一般資訊來幫助您進行設定。",
|
|
616
|
+
"lilly.current_dosage_2.title": "非常好。請問您目前使用的劑量是多少?",
|
|
617
|
+
"lilly.current_dosage.title": "為了使接下來的步驟順利進行,請告訴我們您目前的劑量。",
|
|
618
|
+
"lilly.current_dose_starting.title.2_5": "請問您從何時開始服用 2.5 毫克劑量?",
|
|
619
|
+
"lilly.current_dose_starting.title.5": "請問您從何時開始服用 5 毫克劑量?",
|
|
620
|
+
"lilly.current_dose_starting.title.higher": "請問您從何時開始服用更高劑量?",
|
|
621
|
+
"lilly.doctor_reminder.title": "您想設定看醫生的提醒嗎?",
|
|
622
|
+
"lilly.injection_status.title": "您在過去 7 天內曾經注射過嗎?",
|
|
623
|
+
"lilly.intake.landing.title": "歡迎參加 Abi 第二型糖尿病治療支持計畫。",
|
|
624
|
+
"lilly.landing.footer": "可自由選擇是否參與該計劃。若選擇退出,可隨時在今後的任何訊息中回復“中止”或聯繫 <a href='mailto:info@abi.ai'>info@abi.ai</a>。",
|
|
625
|
+
"lilly.landing.not_want_to_register": "如果您不想註冊,請造訪<a href='https://bit.ly/3lXnc64'>https://bit.ly/3lXnc64</a>取得資源。",
|
|
626
|
+
"lilly.mounjaro_day_selection.2": "追蹤<b>每週簡訊提醒</b>服務,領取有用的內容和資源。",
|
|
627
|
+
"lilly.mounjaro_day_selection.3": "請點擊<a href=\"https://www.mounjaro.com/how-to-use-mounjaro\" target=\"_blank\">此處</a>確保您了解如何進行治療。",
|
|
628
|
+
"lilly.mounjaro_day_selection.4": "選擇您方便的聯絡日期",
|
|
629
|
+
"lilly.mounjaro_day_selection.placeholder": "選擇您的聯絡日期",
|
|
630
|
+
"lilly.next_prescription.title": "您的醫生已經為您提供了下一個處方嗎?",
|
|
631
|
+
"lilly.pharmacy_reminder_2.title": "您想設定領取處方簽的提醒嗎?",
|
|
632
|
+
"lilly.pharmacy_reminder.title": "您想要提醒您去藥局領取處方簽嗎?",
|
|
633
|
+
"lilly.product_in_hand.title": "您拿起注射筆盒了嗎?",
|
|
634
|
+
"lilly.return.landing.title": "歡迎回到 Abi 第二型糖尿病治療支持計畫。",
|
|
635
|
+
"lilly.test.landing.week01.description.1": "這個為期 12 週的計劃將按照您的需求提供以下資源:",
|
|
636
|
+
"lilly.test.landing.week01.description.2": "<b>A.</b> 取得有用的治療入門技巧。",
|
|
637
|
+
"lilly.test.landing.week01.description.3": "<b>B.</b> 根據您生活型態改變提供的個人化文字提醒。",
|
|
638
|
+
"lilly.test.landing.week01.description.4": "下一步我們將要求您提供一些一般資訊以幫助您進行設定。",
|
|
639
|
+
"lilly.test.landing.week02.description.1": "您可以存取有關第二型糖尿病治療的資源,並設定個人化的文字提醒,以保持良好的健康狀況。",
|
|
640
|
+
"lilly.test.landing.week02.description.2": "我們將詢問有關您目前治療狀況的一些一般問題。預計 1 分鐘內完成。",
|
|
641
|
+
"lilly.test.landing.week03.description.1": "請確保您有足夠的注射筆供未來幾週使用,如果注射筆不足,請諮詢您的醫師或藥劑師。",
|
|
642
|
+
"lilly.test.landing.week03.description.2": "點擊以安排簡訊提醒以追蹤來自您醫師或藥劑師的資訊。",
|
|
643
|
+
"lilly.test.landing.week04.description.1": "查看我們的第二型糖尿病居家小知識。您也可以安排簡訊提醒以追蹤來自您醫師或藥劑師的資訊。",
|
|
644
|
+
"lilly.test.landing.week04.description.2": "在此之前,我們將詢問您一些有關第二型糖尿病治療經驗的一般問題。預計 1 分鐘內完成。",
|
|
645
|
+
"lilly.test.landing.week05.description.1": "您可以實現您的生活方式目標並安排個人化的簡訊提醒,以保持良好的健康狀況。",
|
|
646
|
+
"lilly.test.landing.week05.description.2": "我們將詢問有關您目前治療狀況的一些一般問題。預計 1 分鐘內完成。",
|
|
647
|
+
"lilly.test.landing.week06.description.1": "您正在努力使您的生活方式變得更健康。當您繼續第二型糖尿病之旅時,您將找到一些技巧和工具,幫助您專注於飲食和健身目標。",
|
|
648
|
+
"lilly.test.landing.week06.description.2": "讓我們追蹤您的進度!預計 1 分鐘內完成。",
|
|
649
|
+
"lilly.test.landing.week07.description.1": "<b>請確保您有足夠的注射筆供未來幾週使用</b>,如果注射筆不足,請諮詢您的醫生或藥劑師。",
|
|
650
|
+
"lilly.test.landing.week07.description.2": "在下面安排簡訊提醒以跟進您的醫生或藥劑師。",
|
|
651
|
+
"lilly.test.landing.week08.description.1": "查看我們的第二型糖尿病居家小知識。您也可以安排簡訊提醒以追蹤來自您醫師或藥劑師的資訊。",
|
|
652
|
+
"lilly.test.landing.week08.description.2": "在此之前,我們會詢問一些有關您先前經驗的一般問題。預計 1 分鐘內完成。",
|
|
653
|
+
"lilly.test.landing.week09.description.1": "查看我們的第二型糖尿病居家小知識。",
|
|
654
|
+
"lilly.test.landing.week09.description.2": "在此之前,我們會詢問一些有關您先前經驗的一般問題。預計 1 分鐘內完成。",
|
|
655
|
+
"lilly.test.landing.week10.description.1": "<b> 跟自己大聲說:我可以做得到!</b> 當您繼續第二型糖尿病之旅時,您將找到一些技巧和工具,幫助您專注於飲食和健身目標。",
|
|
656
|
+
"lilly.test.landing.week10.description.2": "追蹤您的進度。預計 1 分鐘內完成。",
|
|
657
|
+
"lilly.test.landing.week11.description.1": "<b>如果您的注射筆不足,請記得與您的醫生或藥劑師聯繫</b>,以確保您在未來幾週內有足夠的藥劑。下一步,您可以安排簡訊提醒以追蹤來自您醫師或藥劑師的資訊。",
|
|
658
|
+
"lilly.test.landing.week11.description.2": "我們將要求您提供一些一般資訊來幫助您進行設定。",
|
|
659
|
+
"lilly.test.landing.week12.description.1": "<b>感謝您</b>參與此 Abi 支持計劃。感謝您抽出寶貴的時間,並希望這些資訊和資源對您有所幫助。",
|
|
660
|
+
"lilly.test.landing.week12.description.2": "請再次填寫以下表格。預計 1 分鐘內完成。",
|
|
661
|
+
"link_content.skip": "不用了,謝謝。",
|
|
662
|
+
"match.one_minute": "這通常需要等待 1 分鐘,但在特定時間可能需要更長的時間。",
|
|
663
|
+
"matching": "正在為您配對合適的醫療專業人員",
|
|
664
|
+
"matching.video.text_message": "在醫師邀請您加入視訊通話時,您會收到訊息通知。",
|
|
665
|
+
"medical_advice.call_visana": "撥打醫療熱線",
|
|
666
|
+
"medical_advice.emergency": "緊急",
|
|
667
|
+
"medical_advice.emergency_visana": "緊急",
|
|
668
|
+
"medical_advice.no_visit_necessary": "目前無需醫生看診",
|
|
669
|
+
"medical_advice.no_visit_necessary_visana": "現在無需醫生看診",
|
|
670
|
+
"medical_advice.not_question": "並非健康問題",
|
|
671
|
+
"medical_advice.speciality.alr": "過敏學",
|
|
672
|
+
"medical_advice.speciality.car": "心臟科",
|
|
673
|
+
"medical_advice.speciality.der": "皮膚科",
|
|
674
|
+
"medical_advice.speciality.end": "內分泌科",
|
|
675
|
+
"medical_advice.speciality.gas": "腸胃病學",
|
|
676
|
+
"medical_advice.speciality.gpr": "普通科",
|
|
677
|
+
"medical_advice.speciality.gsu": "普通外科",
|
|
678
|
+
"medical_advice.speciality.gyn": "婦產科",
|
|
679
|
+
"medical_advice.speciality.hem": "血液學",
|
|
680
|
+
"medical_advice.speciality.inf": "傳染病學",
|
|
681
|
+
"medical_advice.speciality.int": "內科",
|
|
682
|
+
"medical_advice.speciality.mfs": "口腔顎面外科",
|
|
683
|
+
"medical_advice.speciality.nep": "腎病科",
|
|
684
|
+
"medical_advice.speciality.neu": "神經病學",
|
|
685
|
+
"medical_advice.speciality.nrs": "神經外科",
|
|
686
|
+
"medical_advice.speciality.onc": "腫瘤科",
|
|
687
|
+
"medical_advice.speciality.oph": "眼科",
|
|
688
|
+
"medical_advice.speciality.orl": "耳鼻喉科",
|
|
689
|
+
"medical_advice.speciality.ors": "骨科外科及創傷科",
|
|
690
|
+
"medical_advice.speciality.ped": "兒科",
|
|
691
|
+
"medical_advice.speciality.psy": "精神科",
|
|
692
|
+
"medical_advice.speciality.rad": "放射科",
|
|
693
|
+
"medical_advice.speciality.res": "呼吸系統科",
|
|
694
|
+
"medical_advice.speciality.rhb": "身體醫學與復康科",
|
|
695
|
+
"medical_advice.speciality.rhu": "風濕病科",
|
|
696
|
+
"medical_advice.speciality.title": "上一個問題與哪個醫療專科相關?",
|
|
697
|
+
"medical_advice.speciality.title_visana": "如需醫師看診,您會想看哪個醫療專科?",
|
|
698
|
+
"medical_advice.speciality.trm": "熱帶醫學",
|
|
699
|
+
"medical_advice.speciality.uro": "泌尿外科",
|
|
700
|
+
"medical_advice.speciality.vas": "血管科",
|
|
701
|
+
"medical_advice.title": "您對上個問題如何評估?",
|
|
702
|
+
"medical_advice.title_visana": "根據所提供的資料,您對此個案有什麼建議?",
|
|
703
|
+
"medical_advice.visit_doctor": "醫師診斷(非緊急)",
|
|
704
|
+
"medical_advice.visit_doctor_next_seven_days_visana": "在 7 天內找醫師診斷",
|
|
705
|
+
"medical_advice.visit_doctor_next_six_hours_visana": "在 6 天內找醫師診斷",
|
|
706
|
+
"medical_advice.visit_doctor_next_twentyfour_hours_visana": "在 24 小時內找醫師診斷",
|
|
707
|
+
"midwife_title_female": "{{name}}小姐",
|
|
708
|
+
"midwife_title_male": "{{name}}先生",
|
|
709
|
+
"modal.cancel": "您確定想取消此次諮詢嗎?",
|
|
710
|
+
"modal.claimed_by_another_doctor": "此個案已交由另一位醫師處理。",
|
|
711
|
+
"modal.claimed_by_another_doctor.enfa": "此個案已交由另一位護理師處理。",
|
|
712
|
+
"modal.claimed_by_another_doctor.enfa_test": "此個案已交由另一位護理師處理。",
|
|
713
|
+
"modal.question_no_available": "抱歉,問題已不存在。",
|
|
714
|
+
"modal.sending": "正在傳送…",
|
|
715
|
+
"modal.sent": "已傳送",
|
|
716
|
+
"modal.something_went_wrong": "抱歉,出現問題。如您需要協助,請聯絡我們。",
|
|
717
|
+
"modal.time_to_answer_expired": "已超過回覆此個案的時間。",
|
|
718
|
+
"modal.we_will_reply_shortly": "感謝您的訊息。我們會很快透過電子郵件回覆您。",
|
|
719
|
+
"navigator.disclaimer": "該服務由人工智慧提供,故無法提供直接的醫療建議或診斷。如有任何健康問題,請諮詢醫師。 <a href=\"#\">了解更多</a>",
|
|
720
|
+
"navigator.welcome_message": "「您好!我是 {{navName}},由 {{partnerName}} 提供。我可以幫助您:\n\n- 了解症狀、藥物和治療方法\n- 導覽值得信賴的健康資源\n- 尋找醫療院所和藥局\n- 為您聯絡醫師。\n\n今天我能為你做點什麼嗎?",
|
|
721
|
+
"notification.title": "您好!",
|
|
722
|
+
"nurse_title_female": "{{name}} 護士",
|
|
723
|
+
"nurse_title_male": "{{name}} 護士",
|
|
724
|
+
"option.friday": "星期五",
|
|
725
|
+
"option.monday": "星期一",
|
|
726
|
+
"option.no_reminder": "沒有提醒",
|
|
727
|
+
"option.saturday": "星期六",
|
|
728
|
+
"option.sunday": "星期日",
|
|
729
|
+
"option.thursday": "星期四",
|
|
730
|
+
"option.tuesday": "星期二",
|
|
731
|
+
"option.wednesday": "星期三",
|
|
732
|
+
"payment.before": "在領取藥物前,請先完成付款。",
|
|
733
|
+
"payment.title": "付款",
|
|
734
|
+
"person_title_female": "{{name}} 小姐",
|
|
735
|
+
"person_title_male": "{{name}} 先生",
|
|
736
|
+
"pharmacy_selector.description": "請選擇您想領藥的藥局。您的處方簽會直接傳送至該藥房。",
|
|
737
|
+
"pharmacy_selector.searchbar": "請選擇您喜歡的藥局。",
|
|
738
|
+
"pharmacy_selector.validation": "您必須選擇藥局。",
|
|
739
|
+
"physician_title_female": "{{name}} 醫師",
|
|
740
|
+
"physician_title_male": "{{name}} 醫師",
|
|
741
|
+
"placeholder.text": "提問健康問題。",
|
|
742
|
+
"prescription.categories.searchbar": "搜尋症狀或藥物",
|
|
743
|
+
"prescription.request.approved": "處方簽已確認。",
|
|
744
|
+
"prescription.request.approved.delivery": "您的處方簽會寄送至您所選的地址。",
|
|
745
|
+
"prescription.request.approved.email.description": "在所選藥局出示我們發送給您的驗證碼,即可領取藥物。",
|
|
746
|
+
"prescription.request.approved.email.title": "檢查您的電子郵件",
|
|
747
|
+
"prescription.request.approved.pharmacy": "請在下方所示的藥局取藥。",
|
|
748
|
+
"prescription.request.declined": "處方簽被取消",
|
|
749
|
+
"prescription.request.details": "處方簽詳情。",
|
|
750
|
+
"prescription.request.duration": "時長:{{duration}}",
|
|
751
|
+
"prescription.request.frequency": "頻率: {{frequency}}",
|
|
752
|
+
"psychologist_title_female": "{{name}} 醫師",
|
|
753
|
+
"psychologist_title_male": "{{name}} 醫師",
|
|
754
|
+
"rating.description": "請在下載摘要前為先為您的諮詢評分",
|
|
755
|
+
"rating.description.download": "請在下載摘要前為先為您的諮詢評分",
|
|
756
|
+
"rating.description.ilh": "請在下載摘要前為先為您的諮詢評分",
|
|
757
|
+
"rating.description.ilh_test": "請在下載摘要前為先為您的諮詢評分",
|
|
758
|
+
"recommended_link.no_thanks": "不用了,感謝。",
|
|
759
|
+
"reminder_set": "已設定提醒。",
|
|
760
|
+
"responding": "正在回覆您的個案。",
|
|
761
|
+
"reviewing": "正在審核您的要求。",
|
|
762
|
+
"reviewing.video": "正在審核您的要求。\n您很快會看到加入視訊通話的按鈕。",
|
|
763
|
+
"sanofi.professional_assessment": "專業評估",
|
|
764
|
+
"serviceForm.title": "為了在治療最初幾星期根據您的狀況提供個人化支援,我們會問您一些一般性問題。",
|
|
765
|
+
"settings.clinical_guidelines": "臨床指引",
|
|
766
|
+
"settings.contact_us": "聯絡我們",
|
|
767
|
+
"settings.faqs": "常見問題",
|
|
768
|
+
"settings.logout": "登出",
|
|
769
|
+
"settings.notifications": "通知",
|
|
770
|
+
"settings.signature": "簽名",
|
|
771
|
+
"settings.terms_of_use": "使用條款",
|
|
772
|
+
"settings.training": "培訓",
|
|
773
|
+
"sms_reminder.confirmation": "完成!在對方完成回覆時,您將會收到簡訊。",
|
|
774
|
+
"sms_reminder.error": "抱歉,目前無法處理您的要求。",
|
|
775
|
+
"something_went_wrong": "出現問題",
|
|
776
|
+
"specialty_alr": "過敏學",
|
|
777
|
+
"specialty_ane": "麻醉科",
|
|
778
|
+
"specialty_car": "心臟科",
|
|
779
|
+
"specialty_den": "牙科",
|
|
780
|
+
"specialty_der": "皮膚科",
|
|
781
|
+
"specialty_emr": "意外及急診",
|
|
782
|
+
"specialty_end": "內分泌科",
|
|
783
|
+
"specialty_for": "法醫學",
|
|
784
|
+
"specialty_gas": "腸胃病學",
|
|
785
|
+
"specialty_ger": "老人科",
|
|
786
|
+
"specialty_gpr": "普通科",
|
|
787
|
+
"specialty_grl": "全科",
|
|
788
|
+
"specialty_gsu": "普通外科",
|
|
789
|
+
"specialty_gyn": "婦產科",
|
|
790
|
+
"specialty_hem": "血液學",
|
|
791
|
+
"specialty_icm": "重症治療科",
|
|
792
|
+
"specialty_imm": "免疫學",
|
|
793
|
+
"specialty_inf": "傳染病學",
|
|
794
|
+
"specialty_int": "內科",
|
|
795
|
+
"specialty_lab": "化驗科",
|
|
796
|
+
"specialty_mbo": "微生物學",
|
|
797
|
+
"specialty_mfs": "口腔顎面外科",
|
|
798
|
+
"specialty_nep": "腎病科",
|
|
799
|
+
"specialty_nph": "神經生理學",
|
|
800
|
+
"specialty_nrl": "神經病學",
|
|
801
|
+
"specialty_nrs": "神經外科",
|
|
802
|
+
"specialty_nur": "護理學",
|
|
803
|
+
"specialty_ocm": "職業醫學",
|
|
804
|
+
"specialty_onc": "腫瘤科",
|
|
805
|
+
"specialty_oph": "眼科",
|
|
806
|
+
"specialty_orl": "耳鼻喉科",
|
|
807
|
+
"specialty_ors": "骨科外科及創傷科",
|
|
808
|
+
"specialty_oth": "其他專科",
|
|
809
|
+
"specialty_pal": "安寧緩和醫學",
|
|
810
|
+
"specialty_pat": "病理學",
|
|
811
|
+
"specialty_pbc": "母乳哺育諮詢",
|
|
812
|
+
"specialty_pds": "兒童外科",
|
|
813
|
+
"specialty_ped": "兒科",
|
|
814
|
+
"specialty_pha": "藥理學",
|
|
815
|
+
"specialty_pls": "整形外科",
|
|
816
|
+
"specialty_psc": "兒童睡眠諮詢",
|
|
817
|
+
"specialty_psl": "心理學",
|
|
818
|
+
"specialty_psy": "精神科",
|
|
819
|
+
"specialty_pth": "物理治療",
|
|
820
|
+
"specialty_puh": "公眾健康及預防性醫學",
|
|
821
|
+
"specialty_rad": "放射科",
|
|
822
|
+
"specialty_rdt": "放射治療",
|
|
823
|
+
"specialty_res": "呼吸系統科",
|
|
824
|
+
"specialty_rhb": "身體醫學與復康科",
|
|
825
|
+
"specialty_rhu": "風濕病科",
|
|
826
|
+
"specialty_sex": "生殖健康",
|
|
827
|
+
"specialty_ths": "胸腔外科",
|
|
828
|
+
"specialty_trm": "熱帶醫學",
|
|
829
|
+
"specialty_uro": "泌尿外科",
|
|
830
|
+
"specialty_vas": "血管外科",
|
|
831
|
+
"stepper.ask_a_question": "向醫師諮詢",
|
|
832
|
+
"stepper.get_an_answer": "獲得解答",
|
|
833
|
+
"stepper.match_with_a_doctor": "與醫師配對",
|
|
834
|
+
"stepper.match_with_a_doctor.enfa": "與護理師配對",
|
|
835
|
+
"stepper.match_with_a_doctor.enfa_test": "與護理師配對",
|
|
836
|
+
"summary.download.contact": "請聯絡 <a href='mailto:support@abi.ai'>support@abi.ai</a> 以寄送摘要。",
|
|
837
|
+
"summary.download.contact.ilh": "請聯絡 <a href='mailto:ilh@abi.ai'>ilh@abi.ai</a> 以寄送摘要。",
|
|
838
|
+
"summary.download.contact.ilh_test": "請聯絡 <a href='mailto:ilh@abi.ai'>ilh@abi.ai</a> 以寄送摘要。",
|
|
839
|
+
"summary.download.contact.ilh-protection": "請聯絡 <a href='mailto:ilh@abi.ai'>ilh@abi.ai</a>以寄送摘要。",
|
|
840
|
+
"summary.download.error": "抱歉,在準備摘要時出了點問題...",
|
|
841
|
+
"summary.prescription.error.description": "請聯絡 <a href=\"mailto:info@abi.ai\">info@abi.ai</a> 以領取您的藥物。",
|
|
842
|
+
"summary.prescription.error.title": "在寄送處方藥物時出現問題。",
|
|
843
|
+
"switch.continue_text": "繼續文字諮詢",
|
|
844
|
+
"switch.error": "我們在處理您的請求時遇到問題。請稍後重試或聯絡 <a href=\"mailto:info@abi.ai\">info@abi.ai</a> 尋求協助。",
|
|
845
|
+
"text_message.case": "在醫師回覆後,您將會收到附有回覆連結的簡訊。請在下方輸入您的手機號碼。",
|
|
846
|
+
"text_message.case.enfa": "在護理師回覆後,您將會收到附有回覆連結的簡訊。請在下方輸入您的手機號碼。",
|
|
847
|
+
"text_message.case.enfa_test": "在護理師回覆後,您將會收到附有回覆連結的簡訊。請在下方輸入您的手機號碼。",
|
|
848
|
+
"thanks.first-name": "{{firstName}},感謝您!",
|
|
849
|
+
"title.contact": "聯絡我們",
|
|
850
|
+
"title.welcome": "歡迎",
|
|
851
|
+
"try_again": "再試一次",
|
|
852
|
+
"user_form.title": "請確認您的姓名、手機號碼和電子郵件地址。",
|
|
853
|
+
"user_information_collection.title": "醫師需要知道以下資料,以評估您的要求。",
|
|
854
|
+
"user_information_collection.title.enfa": "護理師需要知道以下資料,以評估您的要求。",
|
|
855
|
+
"user_information_collection.title.enfa_test": "護理師需要知道以下資料,以評估您的要求。",
|
|
856
|
+
"user_information_collection.title.ilh": "醫師需要知道以下資料,以評估您的要求。",
|
|
857
|
+
"user_information_collection.title.ilh_test": "醫師需要知道以下資料,以評估您的要求。",
|
|
858
|
+
"video.calling.button": "加入通話",
|
|
859
|
+
"video.calling.midwife_female": "{{name}} 小姐正在撥打給您",
|
|
860
|
+
"video.calling.midwife_male": "{{name}} 先生正在撥打給您",
|
|
861
|
+
"video.calling.not_refresh": "在視訊通話期間,請勿重新整理頁面或關閉視窗。",
|
|
862
|
+
"video.calling.not_refresh.web": "在視訊通話期間,請勿重新整理頁面或關閉視窗。",
|
|
863
|
+
"video.calling.nurse_female": "{{name}} 護理師正在撥打給您",
|
|
864
|
+
"video.calling.nurse_male": "{{name}} 護理師正在撥打給您",
|
|
865
|
+
"video.calling.person_female": "{{name}} 小姐正在撥打給您",
|
|
866
|
+
"video.calling.person_male": "{{name}} 先生正在撥打給您",
|
|
867
|
+
"video.calling.physician_female": "{{name}} 醫師正在撥打給您",
|
|
868
|
+
"video.calling.physician_male": "{{name}} 醫師正在撥打給您",
|
|
869
|
+
"video.calling.psychologist_female": "{{name}} 醫師正在撥打給您",
|
|
870
|
+
"video.calling.psychologist_male": "{{name}} 醫師正在撥打給您",
|
|
871
|
+
"video.recalling.button": "重新加入通話",
|
|
872
|
+
"view_profile": "查看個人檔案"
|
|
873
|
+
}
|