@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,349 @@
|
|
|
1
|
+
{
|
|
2
|
+
"answer.reset": "發問新問題",
|
|
3
|
+
"answer.thanks.rating": "感謝您的評分!",
|
|
4
|
+
"attachmentPreview.title": "附件",
|
|
5
|
+
"back": "返回",
|
|
6
|
+
"button.ask": "發問",
|
|
7
|
+
"button.cancel": "取消",
|
|
8
|
+
"button.cancel_case": "取消個案",
|
|
9
|
+
"button.confirm": "確認",
|
|
10
|
+
"button.continue": "繼續",
|
|
11
|
+
"button.create_new_password": "建立新密碼",
|
|
12
|
+
"button.dont_remind": "不要提醒我",
|
|
13
|
+
"button.end": "結束",
|
|
14
|
+
"button.forgot_password": "忘記密碼?",
|
|
15
|
+
"button.login": "登入",
|
|
16
|
+
"button.next": "下一步",
|
|
17
|
+
"button.no": "否",
|
|
18
|
+
"button.not_yet": "尚未",
|
|
19
|
+
"button.ok": "好",
|
|
20
|
+
"button.other_dont_know": "其他/不知道",
|
|
21
|
+
"button.pay_now": "立即付款",
|
|
22
|
+
"button.remove": "移除",
|
|
23
|
+
"button.reset_password": "重設密碼",
|
|
24
|
+
"button.save_selection": "儲存選擇",
|
|
25
|
+
"button.send": "傳送",
|
|
26
|
+
"button.sms_reminder": "在對方回覆時以短訊通知我",
|
|
27
|
+
"button.start_again": "重新開始",
|
|
28
|
+
"button.submit": "遞交",
|
|
29
|
+
"button.try_again": "再試一次",
|
|
30
|
+
"button.undo": "復原",
|
|
31
|
+
"button.yes": "是",
|
|
32
|
+
"case.attachment": "附件",
|
|
33
|
+
"case.back": "返回",
|
|
34
|
+
"case.cancel_question": "退出個案",
|
|
35
|
+
"contact.enter_message_below": "請在下方輸入您的訊息。",
|
|
36
|
+
"contact.hi": "您好!",
|
|
37
|
+
"delivery.address.address": "地址",
|
|
38
|
+
"delivery.address.address.placeholder.1": "街名及號碼",
|
|
39
|
+
"delivery.address.address.placeholder.2": "單位、大廈或樓層",
|
|
40
|
+
"delivery.address.building_name_number": "建築物名稱/號碼",
|
|
41
|
+
"delivery.address.building_name_number.placeholder": "幸運大廈",
|
|
42
|
+
"delivery.address.country": "國家/地區",
|
|
43
|
+
"delivery.address.country.placeholder": "請選擇…",
|
|
44
|
+
"delivery.address.description": "處方已獲批核。請提供完整地址以便寄送處方藥物。",
|
|
45
|
+
"delivery.address.district_city": "地區/城市",
|
|
46
|
+
"delivery.address.district_city.placeholder": "香港新界",
|
|
47
|
+
"delivery.address.mobile": "手機號碼",
|
|
48
|
+
"delivery.address.number_and_floor": "單位號碼及樓層",
|
|
49
|
+
"delivery.address.number_and_floor.placeholder": "15 樓 46 室",
|
|
50
|
+
"delivery.address.processing": "正在處理您的處方…",
|
|
51
|
+
"delivery.address.street": "街道",
|
|
52
|
+
"delivery.address.street.placeholder": "南運街",
|
|
53
|
+
"delivery.address.title": "送貨地址",
|
|
54
|
+
"delivery.address.zipcode": "郵遞區號",
|
|
55
|
+
"delivery.address.zipcode.placeholder": "0",
|
|
56
|
+
"download": "下載",
|
|
57
|
+
"download.five_minutes": "這通常需時少於 5 分鐘。",
|
|
58
|
+
"download.one_minute": "這通常需時少於 1 分鐘。",
|
|
59
|
+
"download.summary_being_prepared": "正在準備您的摘要。",
|
|
60
|
+
"download.summary_getting_ready": "正在處理您的摘要。",
|
|
61
|
+
"download.usually_takes": "這通常需時少於 1 分鐘。",
|
|
62
|
+
"error.validation.attachment.duplicated": "已新增附件",
|
|
63
|
+
"error.validation.attachment.max": "上載錯誤:您只可上載最多 {{maxAmount}} 個檔案。",
|
|
64
|
+
"error.validation.attachment.size": "每個檔案大小上限為 {{maxSize}}",
|
|
65
|
+
"error.validation.attachment.type": "上載錯誤:請嘗試另一種檔案類型。只支援圖像(PNG、JPG)和 PDF 檔案。",
|
|
66
|
+
"error.validation.attachment.upload": "上載檔案時發生錯誤",
|
|
67
|
+
"error.validation.default": "錯誤",
|
|
68
|
+
"error.validation.email": "請檢查您的電郵地址。",
|
|
69
|
+
"error.validation.fill_form": "您必須填寫此表格。",
|
|
70
|
+
"error.validation.max_value": "數值上限為 {{max}}。",
|
|
71
|
+
"error.validation.min_value": "數值下限為 {{min}}",
|
|
72
|
+
"error.validation.phone": "請檢查您的電話號碼。",
|
|
73
|
+
"error.validation.required": "必填欄位",
|
|
74
|
+
"exit_logic.denied.description": "似乎需要進一步的醫療評估,因此我們目前無法繼續處理要求。",
|
|
75
|
+
"exit_logic.denied.title": "抱歉,根據您的回覆內容,我們無法繼續處理要求。",
|
|
76
|
+
"follow_up": "或發問跟進問題",
|
|
77
|
+
"follow_up.placeholder.text": "發問跟進問題。",
|
|
78
|
+
"forgot_password_confirmation.check_email_to_continue": "請檢查您的電郵以繼續",
|
|
79
|
+
"forgot_password_confirmation.password_reset_email_sent": "已傳送密碼重設電郵",
|
|
80
|
+
"forgot_password.already_have_an_account": "已有帳戶?",
|
|
81
|
+
"forgot_password.forgot_your_password": "忘記密碼?",
|
|
82
|
+
"forgot_password.we_will_email_you": "我們會透過電郵傳送連結,以便建立新密碼",
|
|
83
|
+
"form.gender.other": "其他",
|
|
84
|
+
"form.gender.female": "女性",
|
|
85
|
+
"form.gender.male": "男性",
|
|
86
|
+
"form.gender.non-binary": "非二元",
|
|
87
|
+
"form.gender.prefer_not_to_answer": "選擇不回答",
|
|
88
|
+
"form.gender.transgender_female": "跨女",
|
|
89
|
+
"form.gender.transgender_male": "跨男",
|
|
90
|
+
"fulfillment.collect.description": "您的處方將會直接傳送至您所選的藥房。",
|
|
91
|
+
"fulfillment.collect.title": "在藥房取藥",
|
|
92
|
+
"fulfillment.delivery.description": "您的處方將會寄送至您的住宅或公司地址。",
|
|
93
|
+
"fulfillment.delivery.title": "家居送貨",
|
|
94
|
+
"fulfillment.download.description": "下載可列印的 PDF,以便您向任何藥房出示。",
|
|
95
|
+
"fulfillment.download.title": "下載為 PDF",
|
|
96
|
+
"fulfillment.please_select": "請選擇送貨選項。",
|
|
97
|
+
"fulfillment.title": "您的處方已獲批核。您想怎樣收到處方?",
|
|
98
|
+
"general.coming_soon": "即將推出",
|
|
99
|
+
"general.consultation.assessment.description": "完成匿名網上評估。評估將獲專業人士審核,您將會收到下一步建議。",
|
|
100
|
+
"general.consultation.assessment.title": "專業評估",
|
|
101
|
+
"general.consultation.medicalConsultation.description": "透過短訊發問醫療問題,只需數分鐘即可獲合資格醫生的保密答覆。",
|
|
102
|
+
"general.consultation.medicalConsultation.summary": "短訊諮詢摘要",
|
|
103
|
+
"general.consultation.medicalConsultation.title": "向醫生發送訊息",
|
|
104
|
+
"general.consultation.modal.are_you_sure": "您確定要取消此個案嗎?",
|
|
105
|
+
"general.consultation.modal.are_you_sure.prescriptionRequest": "您確定要取消此處方要求嗎?",
|
|
106
|
+
"general.consultation.modal.finish_video_call": "您確定要結束視像電話嗎?",
|
|
107
|
+
"general.consultation.prescription.description": "從清單中選擇或搜尋可以這種方式處方的常用藥物。",
|
|
108
|
+
"general.consultation.prescription.title": "處方要求",
|
|
109
|
+
"general.consultation.prescriptionRequest.description": "從清單中選擇或搜尋可以這種方式處方的常用藥物。",
|
|
110
|
+
"general.consultation.prescriptionRequest.summary": "網上處方摘要",
|
|
111
|
+
"general.consultation.prescriptionRequest.title": "網上處方",
|
|
112
|
+
"general.consultation.prescriptions.description": "從清單中選擇或搜尋可以這種方式處方的常用藥物。",
|
|
113
|
+
"general.consultation.prescriptions.title": "處方要求",
|
|
114
|
+
"general.consultation.summary.download": "下載摘要",
|
|
115
|
+
"general.consultation.text.description": "透過短訊發問醫療問題,只需數分鐘即可獲合資格醫生的保密答覆。",
|
|
116
|
+
"general.consultation.text.title": "短訊諮詢",
|
|
117
|
+
"general.consultation.videoConsultation.description": "要求與本地註冊醫生進行視像通話。如對方認為合適,可作出診斷並批核處方。",
|
|
118
|
+
"general.consultation.videoConsultation.ending": "正在結束視像諮詢。",
|
|
119
|
+
"general.consultation.videoConsultation.hcpCanRecall": "這通常需時少於 5 分鐘。\n如有需要,醫生可能會再次致電以取得更多資料。",
|
|
120
|
+
"general.consultation.videoConsultation.isPreparingSummary": "正在處理您的摘要。",
|
|
121
|
+
"general.consultation.videoConsultation.summary": "視像諮詢摘要",
|
|
122
|
+
"general.consultation.videoConsultation.title": "視像諮詢",
|
|
123
|
+
"general.consultation.voice.description": "與醫生、護士或其他專科醫療護理人員討論。對方可在數分鐘後回覆電話。",
|
|
124
|
+
"general.consultation.voice.title": "語音通話",
|
|
125
|
+
"general.consultations.answer.end_consultation": "結束諮詢",
|
|
126
|
+
"general.prescriptionRequest.question.hint": "這可幫助醫生進一步了解您對之前問題的答覆。",
|
|
127
|
+
"general.prescriptionRequest.question.placeholder": "點撃此處輸入內容。",
|
|
128
|
+
"general.prescriptionRequest.question.title": "請以您自己的語言,向醫生解釋您需要處方的原因。",
|
|
129
|
+
"header.reminder_set": "已設定提醒。",
|
|
130
|
+
"i_consent_to_participate_in_the_programme_as_outlined": "我同意接收可選的短訊提醒,並參與上述計劃。",
|
|
131
|
+
"i_have_read_and_agreed_to_the_terms_conditions": "我已閱讀並同意<a href='https://abi.ai/zh-hk/terms-of-use'>條款及細則</a>",
|
|
132
|
+
"i_have_read_and_understood_the_privacy_policy": "我已閱讀並同意<a href='https://abi.ai/zh-hk/privacy'>私隱政策</a>",
|
|
133
|
+
"input.confirm_password": "確認密碼",
|
|
134
|
+
"input.email": "電郵",
|
|
135
|
+
"input.message": "訊息",
|
|
136
|
+
"input.password": "密碼",
|
|
137
|
+
"input.subject": "主題",
|
|
138
|
+
"inputs.address.label": "地址",
|
|
139
|
+
"inputs.address.placeholder": "請在此新增…",
|
|
140
|
+
"inputs.age.label": "年齡",
|
|
141
|
+
"inputs.city.label": "城市",
|
|
142
|
+
"inputs.city.placeholder": "城市",
|
|
143
|
+
"inputs.dateOfBirth.label": "出生日期",
|
|
144
|
+
"inputs.email.label": "電郵",
|
|
145
|
+
"inputs.firstName.label": "名字",
|
|
146
|
+
"inputs.gender.label": "性別",
|
|
147
|
+
"inputs.gender.placeholder": "您的性別",
|
|
148
|
+
"inputs.height.label": "身高",
|
|
149
|
+
"inputs.hongKongIdPassport.label": "香港身份證號碼(或護照號碼)",
|
|
150
|
+
"inputs.lastName.label": "姓氏",
|
|
151
|
+
"inputs.mobile_number": "手機號碼",
|
|
152
|
+
"inputs.mobile.label": "手機號碼",
|
|
153
|
+
"inputs.national_identification_number.label": "國民識別號",
|
|
154
|
+
"inputs.nationalId.label": "國民識別號",
|
|
155
|
+
"inputs.phone.label": "手機號碼",
|
|
156
|
+
"inputs.physicianCountry.label": "國家/地區",
|
|
157
|
+
"inputs.physicianCountry.placeholder": "國家/地區",
|
|
158
|
+
"inputs.physicianState.label": "州份",
|
|
159
|
+
"inputs.physicianState.placeholder": "州份",
|
|
160
|
+
"inputs.sex.label": "性別",
|
|
161
|
+
"inputs.surname.label": "姓氏",
|
|
162
|
+
"inputs.textarea.min_length": "最少 {{minLength}} 個字元",
|
|
163
|
+
"inputs.textarea.question_empty": "請發問健康問題",
|
|
164
|
+
"inputs.weight.label": "體重",
|
|
165
|
+
"inputs.zipCode.label": "郵遞區號",
|
|
166
|
+
"inputs.zipCode.placeholder": "郵遞區號",
|
|
167
|
+
"language_selection.title": "請選擇您想用的語言。",
|
|
168
|
+
"languages.en": "英文",
|
|
169
|
+
"languages.es": "西班牙文",
|
|
170
|
+
"link_content.skip": "不用了,謝謝。",
|
|
171
|
+
"match.one_minute": "這通常需時少於 1 分鐘,但在特定時間可能需時更長。",
|
|
172
|
+
"matching": "正在為您配對合適的醫療專業人員",
|
|
173
|
+
"matching.video.text_message": "在醫生邀請您加入視像通話時,您會收到短訊。",
|
|
174
|
+
"medical_advice.call_visana": "致電醫療熱線",
|
|
175
|
+
"medical_advice.emergency": "緊急",
|
|
176
|
+
"medical_advice.emergency_visana": "緊急",
|
|
177
|
+
"medical_advice.no_visit_necessary": "目前無需醫生診症",
|
|
178
|
+
"medical_advice.no_visit_necessary_visana": "現時無需醫生診症",
|
|
179
|
+
"medical_advice.not_question": "並非健康問題",
|
|
180
|
+
"medical_advice.speciality.alr": "過敏學",
|
|
181
|
+
"medical_advice.speciality.car": "心臟科",
|
|
182
|
+
"medical_advice.speciality.der": "皮膚科",
|
|
183
|
+
"medical_advice.speciality.end": "內分泌科",
|
|
184
|
+
"medical_advice.speciality.gas": "腸胃病學",
|
|
185
|
+
"medical_advice.speciality.gpr": "普通科",
|
|
186
|
+
"medical_advice.speciality.gsu": "普通外科",
|
|
187
|
+
"medical_advice.speciality.gyn": "婦產科",
|
|
188
|
+
"medical_advice.speciality.hem": "血液學",
|
|
189
|
+
"medical_advice.speciality.inf": "傳染病學",
|
|
190
|
+
"medical_advice.speciality.int": "內科",
|
|
191
|
+
"medical_advice.speciality.mfs": "口腔顎面外科",
|
|
192
|
+
"medical_advice.speciality.nep": "腎病科",
|
|
193
|
+
"medical_advice.speciality.neu": "神經病學",
|
|
194
|
+
"medical_advice.speciality.nrs": "神經外科",
|
|
195
|
+
"medical_advice.speciality.onc": "腫瘤科",
|
|
196
|
+
"medical_advice.speciality.oph": "眼科",
|
|
197
|
+
"medical_advice.speciality.orl": "耳鼻喉科",
|
|
198
|
+
"medical_advice.speciality.ors": "骨科外科及創傷科",
|
|
199
|
+
"medical_advice.speciality.ped": "兒科",
|
|
200
|
+
"medical_advice.speciality.psy": "精神科",
|
|
201
|
+
"medical_advice.speciality.rad": "放射科",
|
|
202
|
+
"medical_advice.speciality.res": "呼吸系統科",
|
|
203
|
+
"medical_advice.speciality.rhb": "身體醫學與復康科",
|
|
204
|
+
"medical_advice.speciality.rhu": "風濕病科",
|
|
205
|
+
"medical_advice.speciality.title": "上個問題與哪個醫療專科相關?",
|
|
206
|
+
"medical_advice.speciality.title_visana": "如要醫生診症,您會建議哪個醫療專科?",
|
|
207
|
+
"medical_advice.speciality.trm": "熱帶醫學",
|
|
208
|
+
"medical_advice.speciality.uro": "泌尿外科",
|
|
209
|
+
"medical_advice.speciality.vas": "血管科",
|
|
210
|
+
"medical_advice.title": "您對上個問題的評估是什麼?",
|
|
211
|
+
"medical_advice.title_visana": "根據所獲的資料,您對此個案有什麼建議?",
|
|
212
|
+
"medical_advice.visit_doctor": "醫生診症(非緊急)",
|
|
213
|
+
"medical_advice.visit_doctor_next_seven_days_visana": "在 7 天內找醫生診症",
|
|
214
|
+
"medical_advice.visit_doctor_next_six_hours_visana": "在 6 天內找醫生診症",
|
|
215
|
+
"medical_advice.visit_doctor_next_twentyfour_hours_visana": "在 24 小時內找醫生診症",
|
|
216
|
+
"modal.cancel": "您確定想取消此諮詢嗎?",
|
|
217
|
+
"modal.claimed_by_another_doctor": "此個案已由另一位醫生接手處理。",
|
|
218
|
+
"modal.question_no_available": "抱歉,問題已不在存在。",
|
|
219
|
+
"modal.sending": "正在傳送…",
|
|
220
|
+
"modal.sent": "已傳送",
|
|
221
|
+
"modal.something_went_wrong": "抱歉,出現問題。如您需要協助,請聯絡我們。",
|
|
222
|
+
"modal.time_to_answer_expired": "已超過回覆此個案的時間。",
|
|
223
|
+
"modal.we_will_reply_shortly": "感謝您的訊息。我們會很快透過電郵回覆您。",
|
|
224
|
+
"notification.title": "您好!",
|
|
225
|
+
"nurse_title_female": "{{name}} 護士",
|
|
226
|
+
"nurse_title_male": "{{name}} 護士",
|
|
227
|
+
"option.friday": "星期五",
|
|
228
|
+
"option.monday": "星期一",
|
|
229
|
+
"option.no_reminder": "沒有提醒",
|
|
230
|
+
"option.saturday": "星期六",
|
|
231
|
+
"option.sunday": "星期日",
|
|
232
|
+
"option.thursday": "星期四",
|
|
233
|
+
"option.tuesday": "星期二",
|
|
234
|
+
"option.wednesday": "星期三",
|
|
235
|
+
"payment.before": "在取得藥物前,請先完成付款。",
|
|
236
|
+
"payment.title": "付款",
|
|
237
|
+
"person_title_female": "{{name}} 女士",
|
|
238
|
+
"person_title_male": "{{name}} 先生",
|
|
239
|
+
"pharmacy_selector.description": "請選擇您想取藥的藥房。您的處方會直接傳送至該藥房。",
|
|
240
|
+
"pharmacy_selector.searchbar": "請選擇您想用的藥房",
|
|
241
|
+
"pharmacy_selector.validation": "您必須選擇藥房。",
|
|
242
|
+
"physician_title_female": "{{name}} 醫生",
|
|
243
|
+
"physician_title_male": "{{name}} 醫生",
|
|
244
|
+
"placeholder.text": "發問健康問題。",
|
|
245
|
+
"prescription.categories.searchbar": "搜尋病症或藥物",
|
|
246
|
+
"prescription.request.approved": "處方已批核。",
|
|
247
|
+
"prescription.request.approved.delivery": "您的處方會寄送至所選的地址。",
|
|
248
|
+
"prescription.request.approved.pharmacy": "請在以下所示的藥房取藥。",
|
|
249
|
+
"prescription.request.declined": "處方被拒",
|
|
250
|
+
"prescription.request.details": "處方詳情。",
|
|
251
|
+
"prescription.request.duration": "時間:{{duration}}",
|
|
252
|
+
"prescription.request.frequency": "頻密程度: {{frequency}}",
|
|
253
|
+
"psychologist_title_female": "{{name}} 醫生",
|
|
254
|
+
"psychologist_title_male": "{{name}} 醫生",
|
|
255
|
+
"rating.description": "請在下載摘要前為您的諮詢評分",
|
|
256
|
+
"rating.description.download": "請在下載摘要前為您的諮詢評分。",
|
|
257
|
+
"recommended_link.no_thanks": "不用了,謝戲",
|
|
258
|
+
"reminder_set": "已設定提醒。",
|
|
259
|
+
"responding": "正在回覆您的個案。",
|
|
260
|
+
"reviewing": "正在審核您的要求。",
|
|
261
|
+
"reviewing.video": "正在審核您的要求。\n您很快會看到加入視像通話的按鈕。",
|
|
262
|
+
"serviceForm.title": "為了在治療最初幾星期提供支援,同時提供個人化體驗,我們會問您一些一般性問題。",
|
|
263
|
+
"settings.clinical_guidelines": "臨床指引",
|
|
264
|
+
"settings.contact_us": "聯絡我們",
|
|
265
|
+
"settings.faqs": "常見問題",
|
|
266
|
+
"settings.logout": "登出",
|
|
267
|
+
"settings.notifications": "通知",
|
|
268
|
+
"settings.signature": "簽署",
|
|
269
|
+
"settings.terms_of_use": "使用條款",
|
|
270
|
+
"settings.training": "培訓",
|
|
271
|
+
"sms_reminder.confirmation": "完成!在準備好回覆時,您將會收到短訊。",
|
|
272
|
+
"sms_reminder.error": "抱歉,目前無法處理您的要求。",
|
|
273
|
+
"something_went_wrong": "出現問題",
|
|
274
|
+
"specialty_alr": "過敏學",
|
|
275
|
+
"specialty_ane": "麻醉科",
|
|
276
|
+
"specialty_car": "心臟科",
|
|
277
|
+
"specialty_den": "牙科",
|
|
278
|
+
"specialty_der": "皮膚科",
|
|
279
|
+
"specialty_emr": "意外及急診",
|
|
280
|
+
"specialty_end": "內分泌科",
|
|
281
|
+
"specialty_for": "法醫學",
|
|
282
|
+
"specialty_gas": "腸胃病學",
|
|
283
|
+
"specialty_ger": "老人科",
|
|
284
|
+
"specialty_gpr": "普通科",
|
|
285
|
+
"specialty_grl": "全科",
|
|
286
|
+
"specialty_gsu": "普通外科",
|
|
287
|
+
"specialty_gyn": "婦產科",
|
|
288
|
+
"specialty_hem": "血液學",
|
|
289
|
+
"specialty_icm": "深切治療科",
|
|
290
|
+
"specialty_imm": "免疫學",
|
|
291
|
+
"specialty_inf": "傳染病學",
|
|
292
|
+
"specialty_int": "內科",
|
|
293
|
+
"specialty_lab": "化驗科",
|
|
294
|
+
"specialty_mbo": "微生物學",
|
|
295
|
+
"specialty_mfs": "口腔顎面外科",
|
|
296
|
+
"specialty_nep": "腎病科",
|
|
297
|
+
"specialty_nph": "神經生理學",
|
|
298
|
+
"specialty_nrl": "神經病學",
|
|
299
|
+
"specialty_nrs": "神經外科",
|
|
300
|
+
"specialty_nur": "護理學",
|
|
301
|
+
"specialty_ocm": "職業醫學",
|
|
302
|
+
"specialty_onc": "腫瘤科",
|
|
303
|
+
"specialty_oph": "眼科",
|
|
304
|
+
"specialty_orl": "耳鼻喉科",
|
|
305
|
+
"specialty_ors": "骨科外科及創傷科",
|
|
306
|
+
"specialty_oth": "其他專科",
|
|
307
|
+
"specialty_pal": "紓緩醫學科",
|
|
308
|
+
"specialty_pat": "病理學",
|
|
309
|
+
"specialty_pbc": "母乳輔導",
|
|
310
|
+
"specialty_pds": "兒童外科",
|
|
311
|
+
"specialty_ped": "兒科",
|
|
312
|
+
"specialty_pha": "藥理學",
|
|
313
|
+
"specialty_pls": "整形外科",
|
|
314
|
+
"specialty_psc": "兒童睡眠輔導",
|
|
315
|
+
"specialty_psl": "心理學",
|
|
316
|
+
"specialty_psy": "精神科",
|
|
317
|
+
"specialty_pth": "物理治療",
|
|
318
|
+
"specialty_puh": "公眾健康及預防性醫學",
|
|
319
|
+
"specialty_rad": "放射科",
|
|
320
|
+
"specialty_rdt": "放射治療",
|
|
321
|
+
"specialty_res": "呼吸系統科",
|
|
322
|
+
"specialty_rhb": "身體醫學與復康科",
|
|
323
|
+
"specialty_rhu": "風濕病科",
|
|
324
|
+
"specialty_sex": "性健康",
|
|
325
|
+
"specialty_ths": "胸腔外科",
|
|
326
|
+
"specialty_trm": "熱帶醫學",
|
|
327
|
+
"specialty_uro": "泌尿外科",
|
|
328
|
+
"specialty_vas": "血管外科",
|
|
329
|
+
"stepper.ask_a_question": "向醫生諮詢",
|
|
330
|
+
"stepper.get_an_answer": "獲得解答",
|
|
331
|
+
"stepper.match_with_a_doctor": "與醫生配對",
|
|
332
|
+
"summary.download.error": "抱歉,在準備摘要時出現問題…",
|
|
333
|
+
"summary.prescription.error.description": "請聯絡 <a href=\"mailto:info@abi.ai\">info@abi.ai</a> 以解決問題。",
|
|
334
|
+
"summary.prescription.error.title": "寄送處方藥物時出現問題。",
|
|
335
|
+
"text_message.case": "在醫生回覆後,您將會收到附有回覆連結的短訊。請在下方輸入您的手機號碼。",
|
|
336
|
+
"thanks.first-name": "{{firstName}},謝謝您!",
|
|
337
|
+
"title.contact": "聯絡我們",
|
|
338
|
+
"title.welcome": "歡迎",
|
|
339
|
+
"try_again": "再試一次",
|
|
340
|
+
"user_form.title": "請確認您的姓名、手機號碼和電郵地址。",
|
|
341
|
+
"user_information_collection.title": "醫生將需要知道以下資料,方可評估您的要求。",
|
|
342
|
+
"video.calling.button": "加入通話",
|
|
343
|
+
"video.calling.not_refresh": "在視像通話期間,請勿重新整理頁面或關閉視窗。",
|
|
344
|
+
"video.calling.not_refresh.web": "在視像通話期間,請勿重新整理頁面或關閉視窗。",
|
|
345
|
+
"video.calling.physician_female": "{{name}} 醫生正在致電",
|
|
346
|
+
"video.calling.physician_male": "{{name}} 醫生正在致電",
|
|
347
|
+
"video.recalling.button": "重新加入通話",
|
|
348
|
+
"view_profile": "查看個人檔案"
|
|
349
|
+
}
|