@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.
Files changed (282) hide show
  1. package/CHANGELOG.md +157 -0
  2. package/README.md +3 -0
  3. package/dist/common/animations/Animation.d.ts +10 -0
  4. package/dist/common/animations/Animation.js +38 -0
  5. package/dist/common/animations/FindingAnimation/index.d.ts +2 -0
  6. package/dist/common/animations/FindingAnimation/index.js +20 -0
  7. package/dist/common/animations/FindingAnimation/xml.d.ts +2 -0
  8. package/dist/common/animations/FindingAnimation/xml.js +7 -0
  9. package/dist/common/animations/HorizontalLoadingAnimation/index.d.ts +5 -0
  10. package/dist/common/animations/HorizontalLoadingAnimation/index.js +14 -0
  11. package/dist/common/animations/HorizontalLoadingAnimation/xml.d.ts +1 -0
  12. package/dist/common/animations/HorizontalLoadingAnimation/xml.js +5 -0
  13. package/dist/common/animations/LoadingCircleAnimation/index.d.ts +2 -0
  14. package/dist/common/animations/LoadingCircleAnimation/index.js +24 -0
  15. package/dist/common/animations/LoadingCircleAnimation/xml.d.ts +2 -0
  16. package/dist/common/animations/LoadingCircleAnimation/xml.js +5 -0
  17. package/dist/common/animations/LoadingDotsAnimation/index.d.ts +6 -0
  18. package/dist/common/animations/LoadingDotsAnimation/index.js +17 -0
  19. package/dist/common/animations/LoadingDotsAnimation/xml.d.ts +1 -0
  20. package/dist/common/animations/LoadingDotsAnimation/xml.js +5 -0
  21. package/dist/common/animations/LoadingHeart.d.ts +2 -0
  22. package/dist/common/animations/LoadingHeart.js +92 -0
  23. package/dist/common/api/auth.d.ts +2 -0
  24. package/dist/common/api/auth.js +18 -0
  25. package/dist/common/api/config.d.ts +7 -0
  26. package/dist/common/api/config.js +15 -0
  27. package/dist/common/api/consultation.d.ts +6 -0
  28. package/dist/common/api/consultation.js +80 -0
  29. package/dist/common/api/models/auth.d.ts +8 -0
  30. package/dist/common/api/models/auth.js +2 -0
  31. package/dist/common/api/models/consultation.d.ts +70 -0
  32. package/dist/common/api/models/consultation.js +23 -0
  33. package/dist/common/api/models/region.d.ts +1 -0
  34. package/dist/common/api/models/region.js +2 -0
  35. package/dist/common/api/models/user.d.ts +5 -0
  36. package/dist/common/api/models/user.js +2 -0
  37. package/dist/common/api/models/websocket.d.ts +6 -0
  38. package/dist/common/api/models/websocket.js +2 -0
  39. package/dist/common/api/user.d.ts +2 -0
  40. package/dist/common/api/user.js +10 -0
  41. package/dist/common/api/websocket.d.ts +6 -0
  42. package/dist/common/api/websocket.js +66 -0
  43. package/dist/common/assets/background-pattern.png +0 -0
  44. package/dist/common/components/ActionSheet.d.ts +6 -0
  45. package/dist/common/components/ActionSheet.js +43 -0
  46. package/dist/common/components/AnswerScreen/Card.d.ts +8 -0
  47. package/dist/common/components/AnswerScreen/Card.js +76 -0
  48. package/dist/common/components/AnswerScreen/CloseConsultationActionSheet.d.ts +2 -0
  49. package/dist/common/components/AnswerScreen/CloseConsultationActionSheet.js +109 -0
  50. package/dist/common/components/AnswerScreen/DeliveryAddressCard.d.ts +5 -0
  51. package/dist/common/components/AnswerScreen/DeliveryAddressCard.js +39 -0
  52. package/dist/common/components/AnswerScreen/PrescriptionCard/PrescriptionCardHeader.d.ts +5 -0
  53. package/dist/common/components/AnswerScreen/PrescriptionCard/PrescriptionCardHeader.js +79 -0
  54. package/dist/common/components/AnswerScreen/PrescriptionCard/index.d.ts +5 -0
  55. package/dist/common/components/AnswerScreen/PrescriptionCard/index.js +46 -0
  56. package/dist/common/components/AnswerScreen/Summary.d.ts +5 -0
  57. package/dist/common/components/AnswerScreen/Summary.js +49 -0
  58. package/dist/common/components/BackgroundPattern.d.ts +2 -0
  59. package/dist/common/components/BackgroundPattern.js +19 -0
  60. package/dist/common/components/Button.d.ts +14 -0
  61. package/dist/common/components/Button.js +124 -0
  62. package/dist/common/components/CancelConsultationButton.d.ts +2 -0
  63. package/dist/common/components/CancelConsultationButton.js +107 -0
  64. package/dist/common/components/Card.d.ts +2 -0
  65. package/dist/common/components/Card.js +13 -0
  66. package/dist/common/components/Checkbox.d.ts +7 -0
  67. package/dist/common/components/Checkbox.js +75 -0
  68. package/dist/common/components/DateInput.d.ts +8 -0
  69. package/dist/common/components/DateInput.js +76 -0
  70. package/dist/common/components/DoctorProfileCard.d.ts +8 -0
  71. package/dist/common/components/DoctorProfileCard.js +128 -0
  72. package/dist/common/components/FadeIn.d.ts +8 -0
  73. package/dist/common/components/FadeIn.js +66 -0
  74. package/dist/common/components/FormControl.d.ts +8 -0
  75. package/dist/common/components/FormControl.js +40 -0
  76. package/dist/common/components/FormWrapper.d.ts +11 -0
  77. package/dist/common/components/FormWrapper.js +46 -0
  78. package/dist/common/components/Header.d.ts +10 -0
  79. package/dist/common/components/Header.js +109 -0
  80. package/dist/common/components/Input.d.ts +8 -0
  81. package/dist/common/components/Input.js +74 -0
  82. package/dist/common/components/Modal/AttachmentPreviewModal.d.ts +9 -0
  83. package/dist/common/components/Modal/AttachmentPreviewModal.js +68 -0
  84. package/dist/common/components/Modal/CancelModal.d.ts +9 -0
  85. package/dist/common/components/Modal/CancelModal.js +16 -0
  86. package/dist/common/components/Modal/CloseConsultationModal.d.ts +9 -0
  87. package/dist/common/components/Modal/CloseConsultationModal.js +16 -0
  88. package/dist/common/components/Modal/DoctorProfileModal.d.ts +8 -0
  89. package/dist/common/components/Modal/DoctorProfileModal.js +47 -0
  90. package/dist/common/components/Modal/ModalHeader.d.ts +7 -0
  91. package/dist/common/components/Modal/ModalHeader.js +40 -0
  92. package/dist/common/components/Modal/TwoOptionsModal.d.ts +14 -0
  93. package/dist/common/components/Modal/TwoOptionsModal.js +58 -0
  94. package/dist/common/components/Modal/index.d.ts +7 -0
  95. package/dist/common/components/Modal/index.js +57 -0
  96. package/dist/common/components/PhoneInput.d.ts +11 -0
  97. package/dist/common/components/PhoneInput.js +81 -0
  98. package/dist/common/components/Reminder.d.ts +7 -0
  99. package/dist/common/components/Reminder.js +214 -0
  100. package/dist/common/components/ScreenWrapper.d.ts +12 -0
  101. package/dist/common/components/ScreenWrapper.js +46 -0
  102. package/dist/common/components/Select.d.ts +17 -0
  103. package/dist/common/components/Select.js +132 -0
  104. package/dist/common/components/Slide.d.ts +13 -0
  105. package/dist/common/components/Slide.js +83 -0
  106. package/dist/common/components/SlideUp.d.ts +8 -0
  107. package/dist/common/components/SlideUp.js +69 -0
  108. package/dist/common/components/Text.d.ts +22 -0
  109. package/dist/common/components/Text.js +130 -0
  110. package/dist/common/contexts/ConsultationContext.d.ts +22 -0
  111. package/dist/common/contexts/ConsultationContext.js +215 -0
  112. package/dist/common/contexts/FormContext.d.ts +25 -0
  113. package/dist/common/contexts/FormContext.js +55 -0
  114. package/dist/common/contexts/ThemeContext.d.ts +13 -0
  115. package/dist/common/contexts/ThemeContext.js +18 -0
  116. package/dist/common/hooks/useConsultation.d.ts +13 -0
  117. package/dist/common/hooks/useConsultation.js +166 -0
  118. package/dist/common/hooks/useForm.d.ts +10 -0
  119. package/dist/common/hooks/useForm.js +107 -0
  120. package/dist/common/hooks/useHeader.d.ts +4 -0
  121. package/dist/common/hooks/useHeader.js +10 -0
  122. package/dist/common/hooks/useTheme.d.ts +2 -0
  123. package/dist/common/hooks/useTheme.js +26 -0
  124. package/dist/common/hooks/useUser.d.ts +4 -0
  125. package/dist/common/hooks/useUser.js +10 -0
  126. package/dist/common/icons/AbiLogoIcon.d.ts +2 -0
  127. package/dist/common/icons/AbiLogoIcon.js +53 -0
  128. package/dist/common/icons/BackArrowIcon.d.ts +2 -0
  129. package/dist/common/icons/BackArrowIcon.js +49 -0
  130. package/dist/common/icons/CalendarIcon.d.ts +3 -0
  131. package/dist/common/icons/CalendarIcon.js +43 -0
  132. package/dist/common/icons/CheckSuccessIcon.d.ts +3 -0
  133. package/dist/common/icons/CheckSuccessIcon.js +47 -0
  134. package/dist/common/icons/CloseIcon.d.ts +5 -0
  135. package/dist/common/icons/CloseIcon.js +51 -0
  136. package/dist/common/icons/DoctorIcon.d.ts +3 -0
  137. package/dist/common/icons/DoctorIcon.js +48 -0
  138. package/dist/common/icons/DoctorImagePlaceholderIcon.d.ts +5 -0
  139. package/dist/common/icons/DoctorImagePlaceholderIcon.js +64 -0
  140. package/dist/common/icons/DropdownIcon.d.ts +3 -0
  141. package/dist/common/icons/DropdownIcon.js +41 -0
  142. package/dist/common/icons/ExitIcon.d.ts +2 -0
  143. package/dist/common/icons/ExitIcon.js +58 -0
  144. package/dist/common/icons/InfoIcon.d.ts +2 -0
  145. package/dist/common/icons/InfoIcon.js +49 -0
  146. package/dist/common/icons/KoCircleIcon.d.ts +3 -0
  147. package/dist/common/icons/KoCircleIcon.js +42 -0
  148. package/dist/common/icons/MotorbikeIcon.d.ts +2 -0
  149. package/dist/common/icons/MotorbikeIcon.js +65 -0
  150. package/dist/common/icons/NoCaseFoundIcon.d.ts +3 -0
  151. package/dist/common/icons/NoCaseFoundIcon.js +55 -0
  152. package/dist/common/icons/PdfDownloadIcon.d.ts +2 -0
  153. package/dist/common/icons/PdfDownloadIcon.js +58 -0
  154. package/dist/common/icons/PdfIcon.d.ts +2 -0
  155. package/dist/common/icons/PdfIcon.js +50 -0
  156. package/dist/common/icons/PersonIcon.d.ts +3 -0
  157. package/dist/common/icons/PersonIcon.js +45 -0
  158. package/dist/common/icons/PillsIcon.d.ts +2 -0
  159. package/dist/common/icons/PillsIcon.js +52 -0
  160. package/dist/common/icons/PlaneIcon.d.ts +5 -0
  161. package/dist/common/icons/PlaneIcon.js +48 -0
  162. package/dist/common/icons/RatingIcon.d.ts +2 -0
  163. package/dist/common/icons/RatingIcon.js +53 -0
  164. package/dist/common/icons/StarIcon.d.ts +4 -0
  165. package/dist/common/icons/StarIcon.js +57 -0
  166. package/dist/common/icons/TextConsultationIcon.d.ts +4 -0
  167. package/dist/common/icons/TextConsultationIcon.js +53 -0
  168. package/dist/common/icons/TrashIcon.d.ts +2 -0
  169. package/dist/common/icons/TrashIcon.js +49 -0
  170. package/dist/common/icons/VideoConsultationIcon.d.ts +4 -0
  171. package/dist/common/icons/VideoConsultationIcon.js +50 -0
  172. package/dist/common/index.d.ts +57 -0
  173. package/dist/common/index.js +114 -0
  174. package/dist/common/locale/i18n.d.ts +5 -0
  175. package/dist/common/locale/i18n.js +79 -0
  176. package/dist/common/locale/translations/ar-AE.base.json +604 -0
  177. package/dist/common/locale/translations/ar-LB.base.json +604 -0
  178. package/dist/common/locale/translations/bg.base.json +488 -0
  179. package/dist/common/locale/translations/cs.base.json +499 -0
  180. package/dist/common/locale/translations/en.base.json +923 -0
  181. package/dist/common/locale/translations/es-MX.base.json +827 -0
  182. package/dist/common/locale/translations/es.base.json +827 -0
  183. package/dist/common/locale/translations/fr.base.json +605 -0
  184. package/dist/common/locale/translations/hu.base.json +488 -0
  185. package/dist/common/locale/translations/pl.base.json +487 -0
  186. package/dist/common/locale/translations/ro.base.json +501 -0
  187. package/dist/common/locale/translations/ru.base.json +603 -0
  188. package/dist/common/locale/translations/sk.base.json +535 -0
  189. package/dist/common/locale/translations/zh-HK.base.json +349 -0
  190. package/dist/common/locale/translations/zh-SG.base.json +603 -0
  191. package/dist/common/locale/translations/zh-TW.base.json +873 -0
  192. package/dist/common/screens/AnswerScreen.d.ts +11 -0
  193. package/dist/common/screens/AnswerScreen.js +101 -0
  194. package/dist/common/screens/MatchScreen.d.ts +5 -0
  195. package/dist/common/screens/MatchScreen.js +36 -0
  196. package/dist/common/screens/MatchingScreen.d.ts +2 -0
  197. package/dist/common/screens/MatchingScreen.js +41 -0
  198. package/dist/common/screens/NoConsultationFoundScreen.d.ts +2 -0
  199. package/dist/common/screens/NoConsultationFoundScreen.js +34 -0
  200. package/dist/common/screens/PreparingSummaryScreen.d.ts +5 -0
  201. package/dist/common/screens/PreparingSummaryScreen.js +35 -0
  202. package/dist/common/screens/RatingScreen.d.ts +2 -0
  203. package/dist/common/screens/RatingScreen.js +198 -0
  204. package/dist/common/screens/index.d.ts +3 -0
  205. package/dist/common/screens/index.js +29 -0
  206. package/dist/common/types/consultation.d.ts +93 -0
  207. package/dist/common/types/consultation.js +41 -0
  208. package/dist/common/types/deliveryAddress.d.ts +18 -0
  209. package/dist/common/types/deliveryAddress.js +11 -0
  210. package/dist/common/types/events.d.ts +13 -0
  211. package/dist/common/types/events.js +15 -0
  212. package/dist/common/types/prescription.d.ts +52 -0
  213. package/dist/common/types/prescription.js +31 -0
  214. package/dist/common/types/professional.d.ts +14 -0
  215. package/dist/common/types/professional.js +2 -0
  216. package/dist/common/types/theme.d.ts +82 -0
  217. package/dist/common/types/theme.js +58 -0
  218. package/dist/common/types/user.d.ts +10 -0
  219. package/dist/common/types/user.js +2 -0
  220. package/dist/common/utils/platform.d.ts +3 -0
  221. package/dist/common/utils/platform.js +7 -0
  222. package/dist/common/utils/professional.d.ts +2 -0
  223. package/dist/common/utils/professional.js +12 -0
  224. package/dist/common/utils/zod.d.ts +5 -0
  225. package/dist/common/utils/zod.js +19 -0
  226. package/dist/index.d.ts +65 -0
  227. package/dist/index.js +133 -0
  228. package/dist/video-consultations/animations/CallingAnimation/index.d.ts +2 -0
  229. package/dist/video-consultations/animations/CallingAnimation/index.js +17 -0
  230. package/dist/video-consultations/animations/CallingAnimation/xml.d.ts +2 -0
  231. package/dist/video-consultations/animations/CallingAnimation/xml.js +5 -0
  232. package/dist/video-consultations/api/models/video.d.ts +10 -0
  233. package/dist/video-consultations/api/models/video.js +2 -0
  234. package/dist/video-consultations/api/video.d.ts +3 -0
  235. package/dist/video-consultations/api/video.js +12 -0
  236. package/dist/video-consultations/components/AgoraWrapper/components/BaseRenderUsers.d.ts +12 -0
  237. package/dist/video-consultations/components/AgoraWrapper/components/BaseRenderUsers.js +174 -0
  238. package/dist/video-consultations/components/AgoraWrapper/components/BtnControls.d.ts +14 -0
  239. package/dist/video-consultations/components/AgoraWrapper/components/BtnControls.js +55 -0
  240. package/dist/video-consultations/components/AgoraWrapper/components/ui/index.d.ts +14 -0
  241. package/dist/video-consultations/components/AgoraWrapper/components/ui/index.js +100 -0
  242. package/dist/video-consultations/components/AgoraWrapper/index.d.ts +8 -0
  243. package/dist/video-consultations/components/AgoraWrapper/index.js +173 -0
  244. package/dist/video-consultations/components/Modal/EndVideoCallModal.d.ts +8 -0
  245. package/dist/video-consultations/components/Modal/EndVideoCallModal.js +15 -0
  246. package/dist/video-consultations/components/VideoConsultation.d.ts +7 -0
  247. package/dist/video-consultations/components/VideoConsultation.js +42 -0
  248. package/dist/video-consultations/helpers/eventHandler.d.ts +14 -0
  249. package/dist/video-consultations/helpers/eventHandler.js +61 -0
  250. package/dist/video-consultations/hooks/useInitRtcEngine.d.ts +15 -0
  251. package/dist/video-consultations/hooks/useInitRtcEngine.js +194 -0
  252. package/dist/video-consultations/icons/EndVideoCallIcon.d.ts +2 -0
  253. package/dist/video-consultations/icons/EndVideoCallIcon.js +51 -0
  254. package/dist/video-consultations/icons/HangUpIcon.d.ts +3 -0
  255. package/dist/video-consultations/icons/HangUpIcon.js +41 -0
  256. package/dist/video-consultations/icons/MicroOffIcon.d.ts +7 -0
  257. package/dist/video-consultations/icons/MicroOffIcon.js +47 -0
  258. package/dist/video-consultations/icons/MicroOnIcon.d.ts +3 -0
  259. package/dist/video-consultations/icons/MicroOnIcon.js +42 -0
  260. package/dist/video-consultations/icons/PersonIcon.d.ts +3 -0
  261. package/dist/video-consultations/icons/PersonIcon.js +45 -0
  262. package/dist/video-consultations/icons/SwitchCameraIcon.d.ts +3 -0
  263. package/dist/video-consultations/icons/SwitchCameraIcon.js +41 -0
  264. package/dist/video-consultations/icons/VideoOffIcon.d.ts +5 -0
  265. package/dist/video-consultations/icons/VideoOffIcon.js +44 -0
  266. package/dist/video-consultations/icons/VideoOnIcon.d.ts +3 -0
  267. package/dist/video-consultations/icons/VideoOnIcon.js +41 -0
  268. package/dist/video-consultations/index.d.ts +10 -0
  269. package/dist/video-consultations/index.js +24 -0
  270. package/dist/video-consultations/screens/DeliveryAddressScreen.d.ts +2 -0
  271. package/dist/video-consultations/screens/DeliveryAddressScreen.js +84 -0
  272. package/dist/video-consultations/screens/EndingVideoScreen.d.ts +5 -0
  273. package/dist/video-consultations/screens/EndingVideoScreen.js +27 -0
  274. package/dist/video-consultations/screens/JoinVideoCallScreen.d.ts +5 -0
  275. package/dist/video-consultations/screens/JoinVideoCallScreen.js +108 -0
  276. package/dist/video-consultations/screens/ProcessingPrescriptionScreen.d.ts +2 -0
  277. package/dist/video-consultations/screens/ProcessingPrescriptionScreen.js +32 -0
  278. package/dist/video-consultations/screens/VideoCallScreen.d.ts +3 -0
  279. package/dist/video-consultations/screens/VideoCallScreen.js +77 -0
  280. package/dist/video-consultations/utils/permission.d.ts +14 -0
  281. package/dist/video-consultations/utils/permission.js +97 -0
  282. package/package.json +58 -0
@@ -0,0 +1,603 @@
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.end": "结束",
13
+ "button.forgot_password": "忘记密码?",
14
+ "button.higher": "较高",
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
+ "button.yes_it_was_negative": "是,结果为阴性",
33
+ "button.yes_it_was_positive": "是,结果为阳性",
34
+ "case.attachment": "附件",
35
+ "case.back": "返回",
36
+ "case.cancel_question": "退出问诊",
37
+ "choice.bloating": "腹胀",
38
+ "choice.chronic_fatigue": "慢性疲劳",
39
+ "choice.decreased_energy_level": "低能量水平",
40
+ "choice.difficulty_sleep": "睡眠障碍/难以入睡",
41
+ "choice.discomfort_upper_right_abdomen": "右上腹不适/疼痛",
42
+ "choice.hyperlipidemia": "高血脂症",
43
+ "choice.nausea": "恶心",
44
+ "choice.obesity": "肥胖/超重",
45
+ "choice.type_2_diabetes": "2型糖尿病",
46
+ "contact.enter_message_below": "请在下方输入您的消息。",
47
+ "contact.hi": "您好",
48
+ "country.ad": "安道尔",
49
+ "country.ae": "阿拉伯联合酋长国",
50
+ "country.af": "阿富汗",
51
+ "country.ag": "安提瓜和巴布达 ",
52
+ "country.ai": "安圭拉岛",
53
+ "country.al": "阿尔巴尼亚 ",
54
+ "country.am": "亚美尼亚",
55
+ "country.ao": "安哥拉 ",
56
+ "country.aq": "南极洲",
57
+ "country.ar": "阿根廷 ",
58
+ "country.as": "美属萨摩亚",
59
+ "country.at": "奥地利",
60
+ "country.au": "澳大利亚",
61
+ "country.aw": "阿鲁巴岛",
62
+ "country.ax": "奥兰群岛",
63
+ "country.az": "阿塞拜疆",
64
+ "country.ba": "波斯尼亚 – 黑塞哥维那",
65
+ "country.bb": "孟加拉国",
66
+ "country.bd": "孟加拉国",
67
+ "country.be": "白俄罗斯",
68
+ "country.bf": "布基纳法索",
69
+ "country.bg": "保加利亚",
70
+ "country.bh": "巴林",
71
+ "country.bi": "蒲隆地",
72
+ "country.bj": "贝宁",
73
+ "country.bl": "圣巴托洛缪岛",
74
+ "country.bm": "百慕大群岛",
75
+ "country.bn": "文莱达鲁萨兰国",
76
+ "country.bo": "玻利维亚",
77
+ "country.br": "巴西",
78
+ "country.bs": "巴哈马",
79
+ "country.bt": "不丹",
80
+ "country.bv": "布维岛",
81
+ "country.bw": "博茨瓦纳",
82
+ "country.by": "白俄罗斯",
83
+ "country.bz": "伯利兹",
84
+ "country.ca": "加拿大",
85
+ "country.cc": "科科斯(基林)群岛",
86
+ "country.cd": "刚果民主共和国",
87
+ "country.cf": "中非共和国",
88
+ "country.cg": "刚果共和国",
89
+ "country.ch": "瑞士",
90
+ "country.ci": "科特迪瓦",
91
+ "country.ck": "库克群岛",
92
+ "country.cl": "智利",
93
+ "country.cm": "喀麦隆",
94
+ "country.cn": "中国",
95
+ "country.co": "哥伦比亚",
96
+ "country.cr": "哥斯达黎加",
97
+ "country.cu": "古巴",
98
+ "country.cv": "佛得角",
99
+ "country.cw": "库拉索岛",
100
+ "country.cx": "圣延岛",
101
+ "country.cy": "塞浦路斯",
102
+ "country.cz": "捷克共和国",
103
+ "country.de": "德国",
104
+ "country.dj": "吉布提",
105
+ "country.dk": "丹麦",
106
+ "country.dm": "多米尼克",
107
+ "country.do": "多米尼加共和国",
108
+ "country.dz": "阿尔及利亚 ",
109
+ "country.ec": "厄瓜多尔",
110
+ "country.ee": "爱沙尼亚",
111
+ "country.eg": "埃及",
112
+ "country.eh": "西撒哈拉",
113
+ "country.er": "厄立特里亚",
114
+ "country.es": "西班牙",
115
+ "country.et": "埃塞俄比亚",
116
+ "country.fi": "芬兰",
117
+ "country.fj": "斐济",
118
+ "country.fk": "福克兰群岛",
119
+ "country.fm": "密克罗尼西亚",
120
+ "country.fo": "法罗群岛",
121
+ "country.fr": "法国",
122
+ "country.ga": "加蓬",
123
+ "country.gb": "英国",
124
+ "country.gd": "格林纳达",
125
+ "country.ge": "格鲁吉亚",
126
+ "country.gf": "法属圭亚那",
127
+ "country.gg": "根西岛",
128
+ "country.gh": "加纳",
129
+ "country.gi": "直布罗陀",
130
+ "country.gl": "格陵兰",
131
+ "country.gm": "冈比亚",
132
+ "country.gn": "几内亚",
133
+ "country.gp": "瓜德罗普岛",
134
+ "country.gq": "赤道几内亚",
135
+ "country.gr": "希腊",
136
+ "country.gs": "南乔治亚岛",
137
+ "country.gt": "危地马拉",
138
+ "country.gu": "关岛",
139
+ "country.gw": "几内亚比绍",
140
+ "country.gy": "圭亚那",
141
+ "country.hk": "香港",
142
+ "country.hm": "赫德岛和麦克唐纳群岛",
143
+ "country.hn": "洪都拉斯",
144
+ "country.hr": "克罗地亚",
145
+ "country.ht": "海地",
146
+ "country.hu": "匈牙利",
147
+ "country.id": "印度尼西亚",
148
+ "country.ie": "爱尔兰",
149
+ "country.il": "以色列",
150
+ "country.im": "英国属地曼岛",
151
+ "country.in": "印度",
152
+ "country.io": "英属印度洋领地",
153
+ "country.iq": "伊拉克",
154
+ "country.ir": "伊朗",
155
+ "country.is": "冰岛",
156
+ "country.it": "意大利",
157
+ "country.je": "泽西岛",
158
+ "country.jm": "牙买加",
159
+ "country.jo": "约旦",
160
+ "country.jp": "日本",
161
+ "country.ke": "肯尼亚",
162
+ "country.kg": "吉尔吉斯斯坦",
163
+ "country.kh": "柬埔寨",
164
+ "country.ki": "基里巴斯",
165
+ "country.km": "科摩罗",
166
+ "country.kn": "圣基茨和尼维斯",
167
+ "country.kp": "北朝鲜",
168
+ "country.kr": "韩国",
169
+ "country.kw": "科威特",
170
+ "country.ky": "开曼群岛",
171
+ "country.kz": "哈萨克斯坦",
172
+ "country.la": "老挝",
173
+ "country.lb": "黎巴嫩",
174
+ "country.lc": "圣卢西亚",
175
+ "country.li": "列支敦士登",
176
+ "country.lk": "斯里兰卡",
177
+ "country.lr": "利比里亚",
178
+ "country.ls": "莱索托",
179
+ "country.lt": "立陶宛",
180
+ "country.lu": "卢森堡",
181
+ "country.lv": "拉脱维亚",
182
+ "country.ly": "利比亚",
183
+ "country.ma": "摩洛哥",
184
+ "country.mc": "摩纳哥",
185
+ "country.md": "摩尔多瓦",
186
+ "country.me": "黑山",
187
+ "country.mf": "法属圣马丁",
188
+ "country.mg": "马达加斯加",
189
+ "country.mh": "马绍尔群岛 ",
190
+ "country.mk": "马其顿",
191
+ "country.ml": "马里 ",
192
+ "country.mm": "缅甸",
193
+ "country.mn": "蒙古",
194
+ "country.mo": "澳门",
195
+ "country.mp": "北马里亚纳群岛",
196
+ "country.mq": "马提尼克",
197
+ "country.mr": "毛里塔尼亚",
198
+ "country.ms": "蒙特色拉特岛",
199
+ "country.mt": "马耳他 ",
200
+ "country.mu": "毛里求斯",
201
+ "country.mv": "马尔代夫 ",
202
+ "country.mw": "马拉维",
203
+ "country.mx": "毛里求斯",
204
+ "country.my": "马来西亚",
205
+ "country.mz": "莫桑比克",
206
+ "country.na": "纳米比亚",
207
+ "country.nc": "新喀里多尼亚",
208
+ "country.ne": "尼日尔",
209
+ "country.nf": "诺福克岛",
210
+ "country.ng": "尼日利亚",
211
+ "country.ni": "尼加拉瓜",
212
+ "country.nl": "荷兰",
213
+ "country.no": "挪威",
214
+ "country.np": "尼泊尔",
215
+ "country.nr": "瑙鲁",
216
+ "country.nu": "纽埃岛",
217
+ "country.nz": "新西兰",
218
+ "country.om": "阿曼",
219
+ "country.pa": "巴拿马",
220
+ "country.pe": "秘鲁",
221
+ "country.pf": "法属玻里尼西亚",
222
+ "country.pg": "巴布亚新几内亚",
223
+ "country.ph": "x菲律宾",
224
+ "country.pk": "巴基斯坦",
225
+ "country.pl": "波兰",
226
+ "country.pm": "圣皮埃尔和密克隆群岛",
227
+ "country.pn": "皮特凯恩群岛",
228
+ "country.pr": "波多黎各",
229
+ "country.ps": "巴勒斯坦",
230
+ "country.pt": "葡萄牙",
231
+ "country.pw": "帕劳",
232
+ "country.py": "巴拉圭",
233
+ "country.qa": "卡塔尔",
234
+ "country.re": "留尼汪岛",
235
+ "country.ro": "罗马尼亚",
236
+ "country.rs": "塞尔维亚",
237
+ "country.ru": "俄罗斯",
238
+ "country.rw": "卢旺达",
239
+ "country.sa": "沙特阿拉伯",
240
+ "country.sb": "所罗门群岛",
241
+ "country.sc": "塞舌尔",
242
+ "country.sd": "苏丹",
243
+ "country.se": "瑞典",
244
+ "country.sg": "新加坡",
245
+ "country.si": "斯洛文尼亚",
246
+ "country.sj": "斯瓦尔巴和扬马延",
247
+ "country.sk": "斯洛伐克",
248
+ "country.sl": "塞拉利昂",
249
+ "country.sm": "圣马力诺",
250
+ "country.sn": "塞内加尔",
251
+ "country.so": "索马里 ",
252
+ "country.sr": "苏里南",
253
+ "country.ss": "南蘇丹",
254
+ "country.st": "圣多美普林西比",
255
+ "country.sv": "萨尔瓦多",
256
+ "country.sx": "圣马丁岛",
257
+ "country.sy": "叙利亚",
258
+ "country.sz": "史瓦济兰",
259
+ "country.tc": "特克斯和凯科斯群岛",
260
+ "country.td": "乍得 ",
261
+ "country.tf": "法属南部领地",
262
+ "country.tg": "多哥",
263
+ "country.th": "泰国",
264
+ "country.tj": "塔吉克斯坦",
265
+ "country.tk": "托克劳",
266
+ "country.tl": "东帝汶",
267
+ "country.tm": "土库曼 ",
268
+ "country.tn": "突尼斯",
269
+ "country.to": "東加",
270
+ "country.tr": "土耳其",
271
+ "country.tt": "特立尼达和多巴哥",
272
+ "country.tv": "吐瓦鲁",
273
+ "country.tw": "台湾",
274
+ "country.tz": "坦桑尼亚",
275
+ "country.ua": "乌克兰",
276
+ "country.ug": "乌干达",
277
+ "country.um": "美国本土外小岛屿",
278
+ "country.us": "美国",
279
+ "country.uy": "乌拉圭",
280
+ "country.uz": "乌兹别克斯坦",
281
+ "country.va": "梵帝冈",
282
+ "country.vc": "圣文森特和格林纳丁斯",
283
+ "country.ve": "委内瑞拉",
284
+ "country.vg": "英属维尔京群岛",
285
+ "country.vi": "美属维尔京群岛",
286
+ "country.vn": "越南",
287
+ "country.vu": "瓦努阿图",
288
+ "country.wf": "瓦利斯群岛和富图纳群岛",
289
+ "country.ws": "萨摩亚",
290
+ "country.xk": "科索沃",
291
+ "country.ye": "也门",
292
+ "country.yt": "马约特岛",
293
+ "country.za": "南非",
294
+ "country.zm": "赞比亚",
295
+ "country.zw": "津巴布韦",
296
+ "delivery.address.address": "地址",
297
+ "delivery.address.address.placeholder.1": "街道名和号码",
298
+ "delivery.address.address.placeholder.2": "公寓、套房、单元、大楼或楼层",
299
+ "delivery.address.building_name_number": "楼宇名称/编号",
300
+ "delivery.address.building_name_number.placeholder": "幸运大厦",
301
+ "delivery.address.country": "国家",
302
+ "delivery.address.country.placeholder": "请选择...",
303
+ "delivery.address.description": "处方已开具,请您提供完整地址以便配送药物。",
304
+ "delivery.address.district_city": "街区/城市",
305
+ "delivery.address.district_city.placeholder": "香港,新界",
306
+ "delivery.address.mobile": "手机号码",
307
+ "delivery.address.number_and_floor": "房号或公寓号和楼层",
308
+ "delivery.address.number_and_floor.placeholder": "46号,15楼",
309
+ "delivery.address.processing": "您的处方正在处理...",
310
+ "delivery.address.street": "街道",
311
+ "delivery.address.street.placeholder": "稔湾路",
312
+ "delivery.address.title": "配送地址",
313
+ "delivery.address.zipcode": "邮政编码",
314
+ "download": "下载",
315
+ "download.five_minutes": "通常需要不到 5 分钟。",
316
+ "download.one_minute": "通常需要不到 1 分钟。",
317
+ "download.summary_being_prepared": "您的摘要正在准备中。",
318
+ "download.summary_getting_ready": "问诊总结正在准备中。",
319
+ "download.usually_takes": "这通常不到1分钟。",
320
+ "error.case_already_open": "您在其他地点已开启一个病例。请先完成那里的病例。",
321
+ "error.something_went_wrong": "出错了,请稍后再试",
322
+ "error.validation.attachment.duplicated": "附件已添加",
323
+ "error.validation.attachment.max": "上传错误:您最多只能上传{{maxAmount}}个文件。",
324
+ "error.validation.attachment.size": "每个文件的最大大小为{{maxSize}}",
325
+ "error.validation.attachment.type": "上传错误:请尝试其他文件类型。仅支持图片(png、jpg)和pdf文件。",
326
+ "error.validation.attachment.upload": "上传文件时出错",
327
+ "error.validation.default": "错误",
328
+ "error.validation.email": "请检查您的电子邮件地址。",
329
+ "error.validation.fill_form": "您必须填写表单。",
330
+ "error.validation.max_value": "最大值为{{max}}。",
331
+ "error.validation.min_value": "最小值为{{min}}",
332
+ "error.validation.phone": "请检查您的手机号码。",
333
+ "error.validation.required": "必填字段",
334
+ "error.wrong_language_combination": "语言与国家组合错误。如需帮助,请联系我们。",
335
+ "exit_logic.denied.description": "此情况需要进一步的医疗审核,因此我们目前无法继续。",
336
+ "exit_logic.denied.title": "抱歉,由于您的回复,无法继续处理您的请求。",
337
+ "follow_up": "或者提出后续问题",
338
+ "follow_up.placeholder.text": "提出一个后续问题",
339
+ "forgot_password_confirmation.check_email_to_continue": "请检查您的电子邮件以继续",
340
+ "forgot_password_confirmation.password_reset_email_sent": "密码重置邮件已发送",
341
+ "forgot_password.already_have_an_account": "已经拥有账户?",
342
+ "forgot_password.forgot_your_password": "忘记您的密码?",
343
+ "forgot_password.we_will_email_you": "我们会通过电子邮件发送一个链接,供您创建新密码",
344
+ "form.gender.other": "其他",
345
+ "form.gender.female": "女",
346
+ "form.gender.male": "男",
347
+ "form.gender.non-binary": "非二元性别",
348
+ "form.gender.prefer_not_to_answer": "不愿回答",
349
+ "form.gender.transgender_female": "跨性别女性",
350
+ "form.gender.transgender_male": "跨性别男性",
351
+ "fulfillment.collect.description": "您的处方将直接发送到您选择的药房。",
352
+ "fulfillment.collect.title": "从药房取药",
353
+ "fulfillment.delivery.description": "您的处方将配送至您的家庭或工作地址。",
354
+ "fulfillment.delivery.title": "送药上门",
355
+ "fulfillment.download.description": "下载可打印的PDF文件,带到任意药房。",
356
+ "fulfillment.download.title": "下载PDF",
357
+ "fulfillment.please_select": "请选择履行选项。",
358
+ "fulfillment.title": "您的处方正在开具中。您希望如何收到处方?",
359
+ "general.coming_soon": "即将推出",
360
+ "general.consultation.assessment.title": "专业评估",
361
+ "general.consultation.medicalConsultation.description": "通过文字提问医疗相关的问题,几分钟内即可从合格的医生处获得保密答复。",
362
+ "general.consultation.medicalConsultation.summary": "文字问诊摘要",
363
+ "general.consultation.medicalConsultation.title": "向医生发送消息",
364
+ "general.consultation.modal.are_you_sure": "您确定要取消此请求吗?",
365
+ "general.consultation.modal.are_you_sure.prescriptionRequest": "您确定要取消此次处方请求吗?",
366
+ "general.consultation.modal.finish_video_call": "您确定要结束此次视频通话吗?",
367
+ "general.consultation.prescription.description": "从这里常用药物列表中选择或搜索可以开具的药物。",
368
+ "general.consultation.prescription.title": "处方请求",
369
+ "general.consultation.prescriptionRequest.description": "从这里常用药物列表中选择或搜索可以开具的药物。",
370
+ "general.consultation.prescriptionRequest.summary": "在线处方总结",
371
+ "general.consultation.prescriptionRequest.title": "在线处方",
372
+ "general.consultation.prescriptions.description": "从这里常用药物列表中选择或搜索可以开具的药物。",
373
+ "general.consultation.prescriptions.title": "处方请求",
374
+ "general.consultation.summary.download": "下载总结",
375
+ "general.consultation.text.description": "通过文字提问医疗相关的问题,几分钟内即可从合格的医生处获得保密答复。",
376
+ "general.consultation.text.title": "文本咨询",
377
+ "general.consultation.videoConsultation.description": "请求与注册的本地医生进行视频通话。 如果医生认为合适,他们可以做出诊断并开具处方。",
378
+ "general.consultation.videoConsultation.ending": "正在结束视频问诊。",
379
+ "general.consultation.videoConsultation.hcpCanRecall": "这通常不到5分钟。如果有必要,医生可能会再次致电询问更多信息。",
380
+ "general.consultation.videoConsultation.isPreparingSummary": "问诊总结正在准备中。",
381
+ "general.consultation.videoConsultation.summary": "视频问诊总结",
382
+ "general.consultation.videoConsultation.title": "视频咨询",
383
+ "general.consultations.answer.end_consultation": "结束问诊",
384
+ "general.prescriptionRequest.question.hint": "这将帮助医生更好地理解您之前问题的答案",
385
+ "general.prescriptionRequest.question.placeholder": "点击此次填写",
386
+ "general.prescriptionRequest.question.title": "请用您自己的话向医生解释为什么您需要这个处方。",
387
+ "i_have_read_and_agreed_to_the_terms_conditions": "我已阅读并同意<a href='https://abi.ai/en/terms-of-use'>条款与条件</a>",
388
+ "i_have_read_and_understood_the_privacy_policy": "我已阅读并同意<a href='https://abi.ai/en/privacy'>隐私政策</a>",
389
+ "input.confirm_password": "确认密码",
390
+ "input.email": "电子邮件",
391
+ "input.message": "消息",
392
+ "input.password": "密码",
393
+ "input.subject": "主题",
394
+ "inputs.address.label": "地址",
395
+ "inputs.address.placeholder": "请在此处添加...",
396
+ "inputs.age.label": "年龄",
397
+ "inputs.city.label": "城市",
398
+ "inputs.city.placeholder": "城市",
399
+ "inputs.dateOfBirth.label": "生日",
400
+ "inputs.email.label": "电子邮件",
401
+ "inputs.firstName.label": "姓氏",
402
+ "inputs.gender.label": "性别",
403
+ "inputs.gender.placeholder": "您的性别",
404
+ "inputs.height.label": "身高",
405
+ "inputs.lastName.label": "姓氏",
406
+ "inputs.mobile_number": "手机号码",
407
+ "inputs.mobile.label": "手机号码",
408
+ "inputs.national_identification_number.label": "国家识别号",
409
+ "inputs.nationalId.label": "国家识别号",
410
+ "inputs.phone.label": "手机号码",
411
+ "inputs.physicianCountry.label": "国家",
412
+ "inputs.physicianCountry.placeholder": "国家",
413
+ "inputs.physicianState.label": "州",
414
+ "inputs.physicianState.placeholder": "州",
415
+ "inputs.sex.label": "性别",
416
+ "inputs.surname.label": "姓氏",
417
+ "inputs.textarea.min_length": "最少{{minLength}}个字符",
418
+ "inputs.textarea.question_empty": "请提出一个健康相关问题",
419
+ "inputs.weight.label": "体重",
420
+ "inputs.zipCode.label": "邮政编码",
421
+ "inputs.zipCode.placeholder": "邮政编码",
422
+ "language_selection.title": "请选择您的首选语言。",
423
+ "languages.en": "英语",
424
+ "languages.es": "西班牙语",
425
+ "link_content.skip": "不,谢谢",
426
+ "match.one_minute": "这通常不到1分钟,但在一天中的某些时间可能需要更长时间。",
427
+ "matching": "正在为您匹配合适的医疗专业人员",
428
+ "matching.video.text_message": "当医生邀请您加入视频通话时,您将收到一条短信通知。",
429
+ "medical_advice.emergency": "紧急情况",
430
+ "medical_advice.no_visit_necessary": "目前不需要就诊",
431
+ "medical_advice.not_question": "不是健康相关问题",
432
+ "medical_advice.speciality.alr": "变态反应",
433
+ "medical_advice.speciality.car": "心脏科",
434
+ "medical_advice.speciality.der": "皮肤科",
435
+ "medical_advice.speciality.end": "内分泌科",
436
+ "medical_advice.speciality.gas": "肠胃病学",
437
+ "medical_advice.speciality.gpr": "全科医生",
438
+ "medical_advice.speciality.gsu": "普通外科",
439
+ "medical_advice.speciality.gyn": "妇产科",
440
+ "medical_advice.speciality.hem": "血液科",
441
+ "medical_advice.speciality.inf": "感染性疾病",
442
+ "medical_advice.speciality.int": "内科",
443
+ "medical_advice.speciality.mfs": "颌面外科",
444
+ "medical_advice.speciality.nep": "肾病科",
445
+ "medical_advice.speciality.neu": "神经内科 ",
446
+ "medical_advice.speciality.nrs": "神经外科",
447
+ "medical_advice.speciality.onc": "肿瘤科",
448
+ "medical_advice.speciality.oph": "眼科",
449
+ "medical_advice.speciality.orl": "耳鼻喉科",
450
+ "medical_advice.speciality.ors": "矫形外科与创伤科",
451
+ "medical_advice.speciality.ped": "小儿科",
452
+ "medical_advice.speciality.psy": "精神病科",
453
+ "medical_advice.speciality.rad": "放射科",
454
+ "medical_advice.speciality.res": "呼吸内科",
455
+ "medical_advice.speciality.rhb": "理疗与康复",
456
+ "medical_advice.speciality.rhu": "风湿病学",
457
+ "medical_advice.speciality.title": "上一个问题与哪种医学专业相关?",
458
+ "medical_advice.speciality.trm": "热带医学",
459
+ "medical_advice.speciality.uro": "泌尿外科",
460
+ "medical_advice.speciality.vas": "血管学",
461
+ "medical_advice.title": "您对上一个问题的评价是什么?",
462
+ "medical_advice.visit_doctor": "看医生(非紧急)",
463
+ "midwife_title_female": "{{name}}女士",
464
+ "midwife_title_male": "{{name}}先生",
465
+ "modal.cancel": "您确定要取消此次问诊吗?",
466
+ "modal.claimed_by_another_doctor": "此病例已被另一位医生领取。",
467
+ "modal.question_no_available": "抱歉,问题不再可用。",
468
+ "modal.sending": "正在发送...",
469
+ "modal.sent": "已发送",
470
+ "modal.something_went_wrong": "抱歉,出了点问题。如果需要帮助,请联系我们。",
471
+ "modal.time_to_answer_expired": "回答此病例的时间已过。",
472
+ "modal.we_will_reply_shortly": "感谢您的消息。 我们将很快通过电子邮件回复您。",
473
+ "notification.title": "您好",
474
+ "nurse_title_female": "{{name}}护士",
475
+ "nurse_title_male": "{{name}}护士",
476
+ "payment.before": "在领取药物之前,请先付款。",
477
+ "payment.title": "付款",
478
+ "person_title_female": "{{name}}女士",
479
+ "person_title_male": "{{name}}先生",
480
+ "pharmacy_selector.description": "请选择您希望取药的药房。",
481
+ "pharmacy_selector.searchbar": "选择您的药房",
482
+ "pharmacy_selector.validation": "您必须选择一个药房。",
483
+ "physician_title_female": " {{name}} 医生",
484
+ "physician_title_male": " {{name}} 医生",
485
+ "placeholder.text": "提出一个健康相关的问题",
486
+ "prescription.categories.searchbar": "搜索病情或药物",
487
+ "prescription.patient.address": "请填写您的地址,生成处方时需要此信息。",
488
+ "prescription.request.approved": "处方已开具",
489
+ "prescription.request.approved.delivery": "您的处方将配送至选定的地址。",
490
+ "prescription.request.approved.email.description": "在指定药房出示我们发送给您的代码即可领取药物。",
491
+ "prescription.request.approved.email.title": "检查您的邮件",
492
+ "prescription.request.approved.pharmacy": "请从下方链接的药房领取。",
493
+ "prescription.request.declined": "处方被拒绝",
494
+ "prescription.request.details": "处方详情",
495
+ "prescription.request.duration": "时长:{{duration}}",
496
+ "prescription.request.frequency": "频率:{{frequency}}",
497
+ "psychologist_title_female": " {{name}} 医生",
498
+ "psychologist_title_male": " {{name}} 医生",
499
+ "rating.description": "请在下载问诊总结前评价您的问诊",
500
+ "rating.description.download": "请在下载问诊总结前评价您的问诊",
501
+ "recommended_link.no_thanks": "不,谢谢",
502
+ "responding": "正在回复您的病例。",
503
+ "reviewing": "正在审核您的请求。",
504
+ "reviewing.video": "正在审核您的请求。 您很快将看到一个按钮以加入视频通话。",
505
+ "serviceForm.title": "为了在治疗的最初几周内为您提供支持并个性化您的体验,我们将询问一些基本信息。",
506
+ "settings.clinical_guidelines": "临床指南",
507
+ "settings.contact_us": "联系我们",
508
+ "settings.faqs": "常见问题",
509
+ "settings.logout": "登出",
510
+ "settings.notifications": "通知",
511
+ "settings.signature": "签名",
512
+ "settings.terms_of_use": "使用条款",
513
+ "settings.training": "培训",
514
+ "sms_reminder.confirmation": "完成!当您的答案准备好时,您将收到一条短信通知。",
515
+ "sms_reminder.error": "抱歉,目前无法处理您的请求。",
516
+ "something_went_wrong": "出错了",
517
+ "specialty_alr": "变态反应",
518
+ "specialty_ane": "麻醉科",
519
+ "specialty_car": "心脏科",
520
+ "specialty_den": "口腔科",
521
+ "specialty_der": "皮肤科",
522
+ "specialty_emr": "事故和急诊科",
523
+ "specialty_end": "内分泌科",
524
+ "specialty_for": "法医学",
525
+ "specialty_gas": "肠胃病学",
526
+ "specialty_ger": "老年病科",
527
+ "specialty_gpr": "全科医生",
528
+ "specialty_grl": "综合内科",
529
+ "specialty_gsu": "普通外科",
530
+ "specialty_gyn": "妇产科",
531
+ "specialty_hem": "血液科",
532
+ "specialty_icm": "重症护理",
533
+ "specialty_imm": "免疫科",
534
+ "specialty_inf": "感染性疾病",
535
+ "specialty_int": "内科",
536
+ "specialty_lab": "检验科",
537
+ "specialty_mbo": "微生物学",
538
+ "specialty_mfs": "颌面外科",
539
+ "specialty_nep": "肾病科",
540
+ "specialty_nph": "神经生理学",
541
+ "specialty_nrl": "神经内科 ",
542
+ "specialty_nrs": "神经外科",
543
+ "specialty_nur": "护理",
544
+ "specialty_ocm": "职业病科",
545
+ "specialty_onc": "肿瘤科",
546
+ "specialty_oph": "眼科",
547
+ "specialty_orl": "耳鼻喉科",
548
+ "specialty_ors": "矫形外科与创伤科",
549
+ "specialty_oth": "其他专科医生",
550
+ "specialty_pal": "姑息医学",
551
+ "specialty_pat": "病理",
552
+ "specialty_pbc": "母乳喂养咨询",
553
+ "specialty_pds": "小儿外科",
554
+ "specialty_ped": "小儿科",
555
+ "specialty_pha": "药剂科",
556
+ "specialty_pls": "整形外科",
557
+ "specialty_psc": "小儿睡眠咨询",
558
+ "specialty_psl": "心理学",
559
+ "specialty_psy": "精神病科",
560
+ "specialty_pth": "理疗",
561
+ "specialty_puh": "公共卫生及预防医学",
562
+ "specialty_rad": "放射科",
563
+ "specialty_rdt": "放疗科",
564
+ "specialty_res": "呼吸内科",
565
+ "specialty_rhb": "理疗与康复",
566
+ "specialty_rhu": "风湿病学",
567
+ "specialty_sex": "性健康",
568
+ "specialty_ths": " 矫形外科",
569
+ "specialty_trm": "热带医学",
570
+ "specialty_uro": "泌尿外科",
571
+ "specialty_vas": "血管外科",
572
+ "stepper.ask_a_question": "提问",
573
+ "stepper.get_an_answer": "获取答案",
574
+ "stepper.match_with_a_doctor": "匹配医生",
575
+ "summary.download.contact": "请联系<a href='mailto:support@abi.ai'>support@abi.ai</a>以获取问诊总结。",
576
+ "summary.download.error": "抱歉,在准备问诊总结时出了点问题...",
577
+ "summary.prescription.error.description": "请联系<a href=\"mailto:info@abi.ai\">info@abi.ai</a>以获取您的药物。",
578
+ "summary.prescription.error.title": "您的处方配送出现问题。",
579
+ "text_message.case": "医生回复后,您将收到包含其回复链接的短信。请在下方输入您的手机号码。",
580
+ "thanks.first-name": "谢谢{{firstName}}!",
581
+ "title.contact": "联系我们",
582
+ "title.welcome": "欢迎",
583
+ "try_again": "重试",
584
+ "user_form.title": "请确认您的姓名、手机号码和电子邮件地址。",
585
+ "user_information_collection.title": "为了评估您的请求,医生需要了解以下信息。",
586
+ "user_information_collection.title.ilh": "为了评估您的请求,医生需要了解以下信息。",
587
+ "user_information_collection.title.ilh_test": "为了评估您的请求,医生需要了解以下信息。",
588
+ "video.calling.button": "加入通话",
589
+ "video.calling.midwife_female": "{{name}}女士正在呼叫您",
590
+ "video.calling.midwife_male": "{{name}}先生正在呼叫您",
591
+ "video.calling.not_refresh": "请勿在视频通话期间刷新或关闭窗口。",
592
+ "video.calling.not_refresh.web": "请勿在视频通话期间刷新或关闭窗口。",
593
+ "video.calling.nurse_female": "{{name}}护士正在呼叫您",
594
+ "video.calling.nurse_male": "{{name}}护士正在呼叫您",
595
+ "video.calling.person_female": "{{name}}女士正在呼叫您",
596
+ "video.calling.person_male": "{{name}}先生正在呼叫您",
597
+ "video.calling.physician_female": " {{name}} 医生正在致电给您",
598
+ "video.calling.physician_male": " {{name}} 医生正在致电给您",
599
+ "video.calling.psychologist_female": " {{name}} 医生正在致电给您",
600
+ "video.calling.psychologist_male": " {{name}} 医生正在致电给您",
601
+ "video.recalling.button": "重新加入通话",
602
+ "view_profile": "查看资料"
603
+ }