@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,604 @@
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": "الفلبين",
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
+ "delivery.address.zipcode.placeholder": "0.0",
315
+ "download": "تنزيل",
316
+ "download.five_minutes": "يستغرق ذلك عادة أقل من 5 دقائق.",
317
+ "download.one_minute": "يستغرق ذلك عادة أقل من دقيقة واحدة.",
318
+ "download.summary_being_prepared": "يتم إعداد الملخص الخاص بك.",
319
+ "download.summary_getting_ready": "الملخص قيد التجهيز.",
320
+ "download.usually_takes": "يستغرق هذا عادةً أقل من 1 دقيقة.",
321
+ "error.case_already_open": "لديك بالفعل حالة مفتوحة في موقع آخر. يرجى إكمال الحالة هناك أولاً.",
322
+ "error.something_went_wrong": "حدث خطأ ما، يرجى المحاولة مرة أخرى لاحقًا",
323
+ "error.validation.attachment.duplicated": "المرفق مضاف بالفعل",
324
+ "error.validation.attachment.max": "خطأ في التحميل: يمكنك فقط تحميل {{maxAmount}} ملفات كحد أقصى.",
325
+ "error.validation.attachment.size": "الحد الأقصى للحجم لكل ملف هو {{maxSize}}",
326
+ "error.validation.attachment.type": "خطأ في التحميل: يرجى تجربة نوع ملف آخر. صور(png و jpg) وملفات pdf فقط هي المدعومة.",
327
+ "error.validation.attachment.upload": "حدث خطأ أثناء تحميل الملف",
328
+ "error.validation.default": "خطأ",
329
+ "error.validation.email": "يرجى التحقق من عنوان بريدك الإلكتروني.",
330
+ "error.validation.fill_form": "يجب عليك ملء النموذج.",
331
+ "error.validation.max_value": "القيمة القصوى هي {{max}}.",
332
+ "error.validation.min_value": "الحد الأدنى للقيمة هو {{min}}",
333
+ "error.validation.phone": "يرجى التحقق من رقم هاتفك.",
334
+ "error.validation.required": "الحقل مطلوب",
335
+ "error.wrong_language_combination": "لغة خاطئة + تركيبة البلد. يرجى الاتصال بنا إذا كنت بحاجة إلى مساعدة.",
336
+ "exit_logic.denied.description": "يبدو أنه يتطلب مراجعة طبية إضافية، لذلك لا يمكننا المضي قدمًا حاليًا.",
337
+ "exit_logic.denied.title": "عذرًا، بسبب ردك، لا يمكن متابعة طلبك.",
338
+ "follow_up": "أو اطرح سؤالاً بخصوص المتابعة",
339
+ "follow_up.placeholder.text": "اطرح سؤال متابعة.",
340
+ "forgot_password_confirmation.check_email_to_continue": "يرجى التحقق من بريدك الإلكتروني للمتابعة",
341
+ "forgot_password_confirmation.password_reset_email_sent": "تم إرسال رسالة بريد إلكتروني لإعادة تعيين كلمة المرور",
342
+ "forgot_password.already_have_an_account": "هل لديك حساب بالفعل؟",
343
+ "forgot_password.forgot_your_password": "هل نسيت كلمة المرور؟",
344
+ "forgot_password.we_will_email_you": "سنرسل لك رابطًا عبر البريد الإلكتروني لإنشاء كلمة جديدة",
345
+ "form.gender.other": "آخر",
346
+ "form.gender.female": "أنثى",
347
+ "form.gender.male": "ذكر",
348
+ "form.gender.non-binary": "لا ثنائي",
349
+ "form.gender.prefer_not_to_answer": "أفضل عدم الإجابة",
350
+ "form.gender.transgender_female": "أنثى متحولة جنسيًا",
351
+ "form.gender.transgender_male": "ذكر متحول جنسيًا",
352
+ "fulfillment.collect.description": "سيتم إرسال الوصفة الطبية الخاصة بك مباشرةً إلى الصيدلية التي اخترتها.",
353
+ "fulfillment.collect.title": "استلم من الصيدلية",
354
+ "fulfillment.delivery.description": "سيتم تسليم الوصفة الطبية الخاصة بك إلى عنوان منزلك أو عملك.",
355
+ "fulfillment.delivery.title": "خدمة التوصيل للمنزل",
356
+ "fulfillment.download.description": "نزل ملف PDF قابل للطباعة يمكن إحضاره إلى أي صيدلية.",
357
+ "fulfillment.download.title": "تنزيل بصيغة PDF",
358
+ "fulfillment.please_select": "يرجى تحديد خيار الاستيفاء.",
359
+ "fulfillment.title": "وصفتك الطبية قيد الإصدار. كيف تريد الحصول عليها؟",
360
+ "general.coming_soon": "قريبًا",
361
+ "general.consultation.assessment.title": "تقييم احترافي",
362
+ "general.consultation.medicalConsultation.description": "اطرح سؤالاً طبيًا عن طريق النص واحصل على إجابة سرية من طبيب مؤهل في بضع دقائق فقط.",
363
+ "general.consultation.medicalConsultation.summary": "ملخص الاستشارة النصية",
364
+ "general.consultation.medicalConsultation.title": "مراسلة الطبيب",
365
+ "general.consultation.modal.are_you_sure": "هل تريد بالتأكيد إلغاء هذه الحالة؟",
366
+ "general.consultation.modal.are_you_sure.prescriptionRequest": "هل أنت متأكد من رغبتك في إلغاء طلب الوصفة الطبية هذا؟",
367
+ "general.consultation.modal.finish_video_call": "هل أنت متأكد من أنك تريد إنهاء مكالمة الفيديو؟",
368
+ "general.consultation.prescription.description": "حدد أو ابحث من قائمة الأدوية شائعة الاستخدام التي يمكن وصفها هنا.",
369
+ "general.consultation.prescription.title": "طلب وصفة طبية",
370
+ "general.consultation.prescriptionRequest.description": "حدد أو ابحث من قائمة الأدوية شائعة الاستخدام التي يمكن وصفها هنا.",
371
+ "general.consultation.prescriptionRequest.summary": "ملخص الوصفة الطبية عبر الإنترنت",
372
+ "general.consultation.prescriptionRequest.title": "وصفة طبية عبر الإنترنت",
373
+ "general.consultation.prescriptions.description": "حدد أو ابحث من قائمة الأدوية شائعة الاستخدام التي يمكن وصفها هنا.",
374
+ "general.consultation.prescriptions.title": "طلب وصفة طبية",
375
+ "general.consultation.summary.download": "تنزيل الملخص",
376
+ "general.consultation.text.description": "اطرح سؤالاً طبيًا عن طريق النص واحصل على إجابة سرية من طبيب مؤهل في بضع دقائق فقط.",
377
+ "general.consultation.text.title": "استشارة نصية",
378
+ "general.consultation.videoConsultation.description": "اطلب مكالمة فيديو مع طبيب محلي مسجل. يمكنهم تشخيص وإصدار الوصفات الطبية إذا رأوا ذلك مناسبًا. ",
379
+ "general.consultation.videoConsultation.ending": "يُنهي استشارة الفيديو.",
380
+ "general.consultation.videoConsultation.hcpCanRecall": "يستغرق هذا عادةً أقل من 5 دقائق.\nإذا لزم الأمر، قد يتصل بك الطبيب مرة أخرى لطلب مزيد من المعلومات.",
381
+ "general.consultation.videoConsultation.isPreparingSummary": "الملخص قيد التجهيز.",
382
+ "general.consultation.videoConsultation.summary": "ملخص استشارة الفيديو",
383
+ "general.consultation.videoConsultation.title": "استشارة عبر الفيديو",
384
+ "general.consultations.answer.end_consultation": "إنهاء الاستشارة",
385
+ "general.prescriptionRequest.question.hint": "سيساعد ذلك الطبيب على فهم إجاباتك على الأسئلة السابقة بشكل أفضل.",
386
+ "general.prescriptionRequest.question.placeholder": "انقر هنا للكتابة.",
387
+ "general.prescriptionRequest.question.title": "اشرح من فضلك للطبيب سبب احتياجك لهذه الوصفة الطبية بأسلوبك.",
388
+ "i_have_read_and_agreed_to_the_terms_conditions": "لقد قرأت وأوافق على <a href='https://abi.ai/en/terms-of-use'>الشروط والأحكام</a>",
389
+ "i_have_read_and_understood_the_privacy_policy": "لقد قرأت وأوافق على <a href='https://abi.ai/en/privacy'>سياسة الخصوصية</a>",
390
+ "input.confirm_password": "تأكيد كلمة المرور",
391
+ "input.email": "البريد الإلكتروني",
392
+ "input.message": "رسالة",
393
+ "input.password": "كلمة المرور",
394
+ "input.subject": "الموضوع",
395
+ "inputs.address.label": "العنوان",
396
+ "inputs.address.placeholder": "الرجاء الإضافة هنا...",
397
+ "inputs.age.label": "العمر",
398
+ "inputs.city.label": "المدينة",
399
+ "inputs.city.placeholder": "المدينة",
400
+ "inputs.dateOfBirth.label": "تاريخ الميلاد",
401
+ "inputs.email.label": "البريد الإلكتروني",
402
+ "inputs.firstName.label": "الاسم الأول",
403
+ "inputs.gender.label": "الجنس",
404
+ "inputs.gender.placeholder": "جنسك",
405
+ "inputs.height.label": "الطول",
406
+ "inputs.lastName.label": "اللقب",
407
+ "inputs.mobile_number": "رقم الهاتف المحمول",
408
+ "inputs.mobile.label": "رقم الهاتف المحمول",
409
+ "inputs.national_identification_number.label": "رقم بطاقة الهوية الوطنية",
410
+ "inputs.nationalId.label": "رقم بطاقة الهوية الوطنية",
411
+ "inputs.phone.label": "رقم الهاتف المحمول",
412
+ "inputs.physicianCountry.label": "البلد",
413
+ "inputs.physicianCountry.placeholder": "البلد",
414
+ "inputs.physicianState.label": "الولاية",
415
+ "inputs.physicianState.placeholder": "الولاية",
416
+ "inputs.sex.label": "الجنس",
417
+ "inputs.surname.label": "اللقب",
418
+ "inputs.textarea.min_length": "الحد الأدنى {{minLength}} حرفًا",
419
+ "inputs.textarea.question_empty": "يرجى طرح سؤال عن الصحة",
420
+ "inputs.weight.label": "الوزن",
421
+ "inputs.zipCode.label": "الرمز البريدي",
422
+ "inputs.zipCode.placeholder": "الرمز البريدي",
423
+ "language_selection.title": "يرجى تحديد لغتك المفضلة.",
424
+ "languages.en": "الإنجليزية",
425
+ "languages.es": "الإسبانية",
426
+ "link_content.skip": "لا، شكرًا.",
427
+ "match.one_minute": "يستغرق هذا عادةً أقل من 1 دقيقة ولكن قد يستغرق وقتًا أطول في أوقات معينة من اليوم.",
428
+ "matching": "مطابقتك مع أخصائي الرعاية الصحية المناسب",
429
+ "matching.video.text_message": "ستتلقى رسالة نصية عندما يدعوك طبيب للانضمام إلى مكالمة فيديو.",
430
+ "medical_advice.emergency": "حالة طوارئ",
431
+ "medical_advice.no_visit_necessary": "لا حاجة لزيارة في الوقت الحالي",
432
+ "medical_advice.not_question": "ليس سؤالاً صحيًا",
433
+ "medical_advice.speciality.alr": "الحساسية",
434
+ "medical_advice.speciality.car": "طب القلب",
435
+ "medical_advice.speciality.der": "طب الأمراض الجلدية",
436
+ "medical_advice.speciality.end": "الغدد الصماء",
437
+ "medical_advice.speciality.gas": "طب الجهاز الهضمي",
438
+ "medical_advice.speciality.gpr": "الممارسة العامة",
439
+ "medical_advice.speciality.gsu": "الجراحة العامة",
440
+ "medical_advice.speciality.gyn": "أمراض النساء والتوليد",
441
+ "medical_advice.speciality.hem": "أمراض الدم",
442
+ "medical_advice.speciality.inf": "الأمراض المعدية",
443
+ "medical_advice.speciality.int": "الطب الباطني",
444
+ "medical_advice.speciality.mfs": "جراحة الفَم والوجه والفَكَّين",
445
+ "medical_advice.speciality.nep": "أمراض الكلى",
446
+ "medical_advice.speciality.neu": "طب الأمراض العصبية",
447
+ "medical_advice.speciality.nrs": "جراحة الأعصاب",
448
+ "medical_advice.speciality.onc": "طب الأورام",
449
+ "medical_advice.speciality.oph": "طب العيون",
450
+ "medical_advice.speciality.orl": "طب الأنف والأذن والحنجرة",
451
+ "medical_advice.speciality.ors": "جراحة العظام والكسور",
452
+ "medical_advice.speciality.ped": "طب الأطفال",
453
+ "medical_advice.speciality.psy": "الطب النفسي",
454
+ "medical_advice.speciality.rad": "الأشعة",
455
+ "medical_advice.speciality.res": "طب الجهاز التنفسي",
456
+ "medical_advice.speciality.rhb": "الطب الطبيعي وإعادة التأهيل",
457
+ "medical_advice.speciality.rhu": "طب الأمراض الروماتيزمية",
458
+ "medical_advice.speciality.title": "ما هو التخصص الطبي المتعلق بالسؤال السابق؟",
459
+ "medical_advice.speciality.trm": "الطب الاستوائي",
460
+ "medical_advice.speciality.uro": "طب المسالك البولية",
461
+ "medical_advice.speciality.vas": "طب الأوعية الدموية",
462
+ "medical_advice.title": "ما هو تقييمك للسؤال السابق؟",
463
+ "medical_advice.visit_doctor": "زيارة الطبيب (ليست عاجلة)",
464
+ "midwife_title_female": "السيدة {{name}}",
465
+ "midwife_title_male": "السيد {{name}}",
466
+ "modal.cancel": "هل أنت متأكد من رغبتك في إلغاء هذه الاستشارة؟",
467
+ "modal.claimed_by_another_doctor": "حصل طبيب آخر على هذه الحالة.",
468
+ "modal.question_no_available": "عذرًا، السؤال لم يعد متاحًا.",
469
+ "modal.sending": "جارٍ الإرسال...",
470
+ "modal.sent": "تم الإرسال",
471
+ "modal.something_went_wrong": "آسف، حدث خطأ ما. يرجى الاتصال بنا، إذا كنت بحاجة إلى مساعدة.",
472
+ "modal.time_to_answer_expired": "لقد انتهى وقت الإجابة على هذه الحالة.",
473
+ "modal.we_will_reply_shortly": "شكرًا لك على رسالتك. سوف نرد عليك عن طريق البريد الإلكتروني قريبًا.",
474
+ "notification.title": "مرحبًا",
475
+ "nurse_title_female": "الممرضة {{name}}",
476
+ "nurse_title_male": "الممرضة {{name}}",
477
+ "payment.before": "قبل الحصول على دوائك، يرجى إتمام الدفع.",
478
+ "payment.title": "الدفع",
479
+ "person_title_female": "السيدة {{name}}",
480
+ "person_title_male": "السيد {{name}}",
481
+ "pharmacy_selector.description": "يرجى تحديد الصيدلية التي تريد استلام وصفتك الطبية منها.",
482
+ "pharmacy_selector.searchbar": "اختر الصيدلية المفضلة",
483
+ "pharmacy_selector.validation": "يجب عليك اختيار صيدلية.",
484
+ "physician_title_female": "الطبيبة {{name}}",
485
+ "physician_title_male": "الطبيبة {{name}}",
486
+ "placeholder.text": "اطرح سؤالاً عن الصحة.",
487
+ "prescription.categories.searchbar": "البحث عن حالة مرضية أو دواء",
488
+ "prescription.patient.address": "يرجى ملء عنوانك، وهو مطلوب لإنشاء وصفتك الطبية.",
489
+ "prescription.request.approved": "تم إصدار الوصفة الطبية.",
490
+ "prescription.request.approved.delivery": "سيتم تسليم وصفتك الطبية إلى العنوان المحدد.",
491
+ "prescription.request.approved.email.description": "أظهر الرمز الذي أرسلناه إليك في الصيدلية المطلوبة للحصول على دواءك.",
492
+ "prescription.request.approved.email.title": "تحقق من بريدك الإلكتروني",
493
+ "prescription.request.approved.pharmacy": "يرجى استلامها من الصيدلية المرتبطة أدناه.",
494
+ "prescription.request.declined": "تم رفض الوصفة الطبية",
495
+ "prescription.request.details": "تفاصيل الوصفة الطبية.",
496
+ "prescription.request.duration": "المدة: {{duration}}",
497
+ "prescription.request.frequency": "التكرار: {{frequency}}",
498
+ "psychologist_title_female": "الطبيب {{name}}",
499
+ "psychologist_title_male": "الطبيب {{name}}",
500
+ "rating.description": "يرجى تقييم استشارتك قبل تنزيل الملخص",
501
+ "rating.description.download": "يرجى تقييم استشارتك قبل تنزيل الملخص.",
502
+ "recommended_link.no_thanks": "لا، شكرًا",
503
+ "responding": "يستجيب لحالتك.",
504
+ "reviewing": "يراجع طلبك.",
505
+ "reviewing.video": "يراجع طلبك. \nسترى قريبًا زرًا للانضمام إلى مكالمة الفيديو.",
506
+ "serviceForm.title": "لدعمك طوال الأسابيع الأولى من العلاج ولتخصيص تجربتك، سنطلب بعض المعلومات العامة.",
507
+ "settings.clinical_guidelines": "المبادئ التوجيهية السريرية",
508
+ "settings.contact_us": "اتصل بنا",
509
+ "settings.faqs": "الأسئلة الشائعة",
510
+ "settings.logout": "تسجيل الخروج",
511
+ "settings.notifications": "الإشعارات",
512
+ "settings.signature": "التوقيع",
513
+ "settings.terms_of_use": "شروط الاستخدام",
514
+ "settings.training": "التدريب",
515
+ "sms_reminder.confirmation": "تم! ستصلك رسالة نصية قصيرة عندما تكون إجابتك جاهزة.",
516
+ "sms_reminder.error": "عذرًا، لا يمكن معالجة طلبك في الوقت الحالي.",
517
+ "something_went_wrong": "حدث خطأ ما",
518
+ "specialty_alr": "الحساسية",
519
+ "specialty_ane": "أدوية التخدير",
520
+ "specialty_car": "طب القلب",
521
+ "specialty_den": "طب الأسنان",
522
+ "specialty_der": "طب الأمراض الجلدية",
523
+ "specialty_emr": "طب الحوادث والطوارئ",
524
+ "specialty_end": "الغدد الصماء",
525
+ "specialty_for": "الطب الشرعي",
526
+ "specialty_gas": "طب الجهاز الهضمي",
527
+ "specialty_ger": "طب المسنين",
528
+ "specialty_gpr": "الممارسة العامة",
529
+ "specialty_grl": "الطب العام",
530
+ "specialty_gsu": "الجراحة العامة",
531
+ "specialty_gyn": "أمراض النساء والتوليد",
532
+ "specialty_hem": "أمراض الدم",
533
+ "specialty_icm": "طب العناية المركزة",
534
+ "specialty_imm": "أمراض المناعة",
535
+ "specialty_inf": "الأمراض المعدية",
536
+ "specialty_int": "الطب الباطني",
537
+ "specialty_lab": "الطب المخبري",
538
+ "specialty_mbo": "علم الأحياء الدقيقة (الميكروبيولوجيا)",
539
+ "specialty_mfs": "جراحة الفَم والوجه والفَكَّين",
540
+ "specialty_nep": "أمراض الكلى",
541
+ "specialty_nph": "الفسيولوجيا العصبية",
542
+ "specialty_nrl": "طب الأمراض العصبية",
543
+ "specialty_nrs": "جراحة الأعصاب",
544
+ "specialty_nur": "ممرضة",
545
+ "specialty_ocm": "الطب المهني",
546
+ "specialty_onc": "طب الأورام",
547
+ "specialty_oph": "طب العيون",
548
+ "specialty_orl": "طب الأنف والأذن والحنجرة",
549
+ "specialty_ors": "جراحة العظام والكسور",
550
+ "specialty_oth": "تخصصات أخرى",
551
+ "specialty_pal": "طب تسكين الآلام",
552
+ "specialty_pat": "الباثولوجيا",
553
+ "specialty_pbc": "استشارة بخصوص الرضاعة الطبيعية",
554
+ "specialty_pds": "جراحة الأطفال",
555
+ "specialty_ped": "طب الأطفال",
556
+ "specialty_pha": "خصائص الدواء",
557
+ "specialty_pls": "عمليات التجميل",
558
+ "specialty_psc": "استشارات بشأن نوم الأطفال",
559
+ "specialty_psl": "علم النفس",
560
+ "specialty_psy": "الطب النفسي",
561
+ "specialty_pth": "العلاج الطبيعي",
562
+ "specialty_puh": "الصحة العامة والطب الوقائي",
563
+ "specialty_rad": "الأشعة",
564
+ "specialty_rdt": "العلاج الإشعاعي",
565
+ "specialty_res": "طب الجهاز التنفسي",
566
+ "specialty_rhb": "الطب الطبيعي وإعادة التأهيل",
567
+ "specialty_rhu": "طب الأمراض الروماتيزمية",
568
+ "specialty_sex": "الصحة الجنسية",
569
+ "specialty_ths": "جراحة الصدر",
570
+ "specialty_trm": "الطب الاستوائي",
571
+ "specialty_uro": "طب المسالك البولية",
572
+ "specialty_vas": "جراحة الأوعية الدموية",
573
+ "stepper.ask_a_question": "طرح سؤال",
574
+ "stepper.get_an_answer": "الحصول على إجابة",
575
+ "stepper.match_with_a_doctor": "التواصل مع طبيب",
576
+ "summary.download.contact": "يرجى التواصل على <a href='mailto:support@abi.ai'>support@abi.ai</a> للحصول على الملخص.",
577
+ "summary.download.error": "عفوًا، حدث خطأ ما أثناء إعداد الملخص...",
578
+ "summary.prescription.error.description": "يرجى التواصل على <a href=\"mailto:info@abi.ai\">info@abi.ai</a> لتلقي دوائك.",
579
+ "summary.prescription.error.title": "هناك مشكلة في تسليم وصفتك الطبية.",
580
+ "text_message.case": "بمجرد رد طبيبنا، ستتلقى رسالة نصية تحتوي على رابط لرده. يرجى إدخال رقم هاتفك المحمول أدناه.",
581
+ "thanks.first-name": "شكرًا يا {{firstName}}!",
582
+ "title.contact": "اتصل بنا",
583
+ "title.welcome": "أهلًا وسهلًا",
584
+ "try_again": "حاول مرة أخرى",
585
+ "user_form.title": "يرجى تأكيد اسمك ورقم هاتفك المحمول وعنوان بريدك الإلكتروني.",
586
+ "user_information_collection.title": "حتى يتسنى للطبيب تقييم طلبك، فهو يريد معرفة المعلومات التالية.",
587
+ "user_information_collection.title.ilh": "حتى يتسنى للطبيب تقييم طلبك، فهو يريد معرفة المعلومات التالية.",
588
+ "user_information_collection.title.ilh_test": "حتى يتسنى للطبيب تقييم طلبك، فهو يريد معرفة المعلومات التالية.",
589
+ "video.calling.button": "انضم إلى المكالمة",
590
+ "video.calling.midwife_female": "السيدة {{name}} تتصل بك",
591
+ "video.calling.midwife_male": "السيد {{name}} يتصل بك",
592
+ "video.calling.not_refresh": "يرجى عدم تحديث النافذة أو إغلاقها أثناء مكالمة الفيديو.",
593
+ "video.calling.not_refresh.web": "يرجى عدم تحديث النافذة أو إغلاقها أثناء مكالمة الفيديو.",
594
+ "video.calling.nurse_female": "الممرضة {{name}} تتصل بك",
595
+ "video.calling.nurse_male": "الممرضة {{name}} تتصل بك",
596
+ "video.calling.person_female": "السيدة {{name}} تتصل بك",
597
+ "video.calling.person_male": "السيد {{name}} يتصل بك",
598
+ "video.calling.physician_female": "الطبيبة {{name}} تتصل بك",
599
+ "video.calling.physician_male": "الطبيبة {{name}} تتصل بك",
600
+ "video.calling.psychologist_female": "الطبيبة {{name}} تتصل بك",
601
+ "video.calling.psychologist_male": "الطبيبة {{name}} تتصل بك",
602
+ "video.recalling.button": "إعادة الانضمام إلى المكالمة",
603
+ "view_profile": "عرض الملف الشخصي"
604
+ }