@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,488 @@
|
|
|
1
|
+
{
|
|
2
|
+
"answer.reset": "Új kérdés",
|
|
3
|
+
"answer.thanks.rating": "Köszönjük az értékelést!",
|
|
4
|
+
"attachmentPreview.title": "Csatolmány",
|
|
5
|
+
"back": "Vissza",
|
|
6
|
+
"button.ask": "Kérdésem van",
|
|
7
|
+
"button.cancel": "MÉGSEM",
|
|
8
|
+
"button.cancel_case": "Eset törlése",
|
|
9
|
+
"button.confirm": "JÓVÁHAGYÁS",
|
|
10
|
+
"button.continue": "TOVÁBB",
|
|
11
|
+
"button.create_new_password": "Új jelszó létrehozása",
|
|
12
|
+
"button.end": "VÉGE",
|
|
13
|
+
"button.forgot_password": "Elfelejtett jelszó?",
|
|
14
|
+
"button.higher": "Magasabb",
|
|
15
|
+
"button.login": "Bejelentkezés",
|
|
16
|
+
"button.next": "KÖVETKEZŐ",
|
|
17
|
+
"button.no": "Nem",
|
|
18
|
+
"button.not_yet": "Még nem",
|
|
19
|
+
"button.ok": "OK",
|
|
20
|
+
"button.other_dont_know": "Egyéb / Nem tudom",
|
|
21
|
+
"button.pay_now": "Most fizetek",
|
|
22
|
+
"button.remove": "ELTÁVOLÍTÁS",
|
|
23
|
+
"button.reset_password": "Jelszó visszaállítása",
|
|
24
|
+
"button.save_selection": "KIVÁLASZTÁS MENTÉSE",
|
|
25
|
+
"button.send": "Küld",
|
|
26
|
+
"button.sms_reminder": "VÁLASZ ESETÉN SMS ÉRTESÍTÉST KÉREK",
|
|
27
|
+
"button.start_again": "ÚJRAKEZDÉS",
|
|
28
|
+
"button.submit": "Küldés",
|
|
29
|
+
"button.try_again": "Újrapróbálkozás",
|
|
30
|
+
"button.undo": "VISSZA",
|
|
31
|
+
"button.yes": "Igen",
|
|
32
|
+
"button.yes_it_was_negative": "Igen, negatív volt",
|
|
33
|
+
"button.yes_it_was_positive": "Igen, pozitív volt",
|
|
34
|
+
"case.attachment": "Csatolmány",
|
|
35
|
+
"case.back": "Vissza",
|
|
36
|
+
"case.cancel_question": "Kilépés az esetből",
|
|
37
|
+
"choice.bloating": "Puffadás",
|
|
38
|
+
"choice.chronic_fatigue": "Krónikus fáradtság",
|
|
39
|
+
"choice.decreased_energy_level": "Csökkent energiaszint",
|
|
40
|
+
"choice.difficulty_sleep": "Elalvási/átalvási nehézség",
|
|
41
|
+
"choice.discomfort_upper_right_abdomen": "Jobb felhasi diszkomfort/fájdalom",
|
|
42
|
+
"choice.hyperlipidemia": "Hiperlimidémia",
|
|
43
|
+
"choice.nausea": "Hányinger",
|
|
44
|
+
"choice.obesity": "Elhízás/túlsúly",
|
|
45
|
+
"choice.type_2_diabetes": "2-es típusú cukorbetegség",
|
|
46
|
+
"contact.enter_message_below": "Írja ide az üzenetét.",
|
|
47
|
+
"contact.hi": "Üdv",
|
|
48
|
+
"country.ad": "Andorra",
|
|
49
|
+
"country.ae": "Egyesült Arab Emírségek",
|
|
50
|
+
"country.af": "Afganisztán",
|
|
51
|
+
"country.ag": "Antigua és Barbuda",
|
|
52
|
+
"country.ai": "Anguilla",
|
|
53
|
+
"country.al": "Albánia",
|
|
54
|
+
"country.am": "Örményország",
|
|
55
|
+
"country.ao": "Angola",
|
|
56
|
+
"country.aq": "Antarktisz",
|
|
57
|
+
"country.ar": "Argentína",
|
|
58
|
+
"country.as": "Amerikai Szamoa",
|
|
59
|
+
"country.at": "Ausztria",
|
|
60
|
+
"country.au": "Ausztrália",
|
|
61
|
+
"country.aw": "Aruba",
|
|
62
|
+
"country.ax": "Åland-szigetek",
|
|
63
|
+
"country.az": "Azerbajdzsán",
|
|
64
|
+
"country.ba": "Bosznia-Hercegovina",
|
|
65
|
+
"country.bb": "Barbadosz",
|
|
66
|
+
"country.bd": "Banglades",
|
|
67
|
+
"country.be": "Belgium",
|
|
68
|
+
"country.bf": "Burkina Faso",
|
|
69
|
+
"country.bg": "Bulgária",
|
|
70
|
+
"country.bh": "Bahrein",
|
|
71
|
+
"country.bi": "Burundi",
|
|
72
|
+
"country.bj": "Benin",
|
|
73
|
+
"country.bl": "Saint Barthélemy",
|
|
74
|
+
"country.bm": "Bermuda",
|
|
75
|
+
"country.bn": "Brunei",
|
|
76
|
+
"country.bo": "Bolívia",
|
|
77
|
+
"country.br": "Brazília",
|
|
78
|
+
"country.bs": "Bahamák",
|
|
79
|
+
"country.bt": "Bután",
|
|
80
|
+
"country.bv": "Bouvet-sziget",
|
|
81
|
+
"country.bw": "Botszvána",
|
|
82
|
+
"country.by": "Fehéroroszország",
|
|
83
|
+
"country.bz": "Belize",
|
|
84
|
+
"country.ca": "Kanada",
|
|
85
|
+
"country.cc": "Cocos (Keeling) -szigetek",
|
|
86
|
+
"country.cd": "Kongói Demokratikus Köztársaság",
|
|
87
|
+
"country.cf": "Középafrikai Köztársaság",
|
|
88
|
+
"country.cg": "Kongói Köztársaság",
|
|
89
|
+
"country.ch": "Svájc",
|
|
90
|
+
"country.ci": "Elefántcsontpart",
|
|
91
|
+
"country.ck": "Cook-szigetek",
|
|
92
|
+
"country.cl": "Chile",
|
|
93
|
+
"country.cm": "Kamerun",
|
|
94
|
+
"country.cn": "Kína",
|
|
95
|
+
"country.co": "Kolumbia",
|
|
96
|
+
"country.cr": "Costa Rica",
|
|
97
|
+
"country.cu": "Kuba",
|
|
98
|
+
"country.cv": "Zöld-fok",
|
|
99
|
+
"country.cw": "Curaçao",
|
|
100
|
+
"country.cx": "Karácsony-szigetek",
|
|
101
|
+
"country.cy": "Ciprus",
|
|
102
|
+
"country.cz": "Csehország",
|
|
103
|
+
"country.de": "Németország",
|
|
104
|
+
"country.dj": "Dzsibuti",
|
|
105
|
+
"country.dk": "Dánia",
|
|
106
|
+
"country.dm": "Dominika",
|
|
107
|
+
"country.do": "Dominikai Köztársaság",
|
|
108
|
+
"country.dz": "Algéria",
|
|
109
|
+
"country.ec": "Ecuador",
|
|
110
|
+
"country.ee": "Észtország",
|
|
111
|
+
"country.eg": "Egyiptom",
|
|
112
|
+
"country.eh": "Nyugat-Szahara",
|
|
113
|
+
"country.er": "Eritrea",
|
|
114
|
+
"country.es": "Spanyolország",
|
|
115
|
+
"country.et": "Etiópia",
|
|
116
|
+
"country.fi": "Finnország",
|
|
117
|
+
"country.fj": "Fidzsi-szigetek",
|
|
118
|
+
"country.fk": "Falkland-szigetek",
|
|
119
|
+
"country.fm": "Mikronézia",
|
|
120
|
+
"country.fo": "Feröer-szigetek",
|
|
121
|
+
"country.fr": "Franciaország",
|
|
122
|
+
"country.ga": "Gabon",
|
|
123
|
+
"country.gb": "Egyesült Királyság",
|
|
124
|
+
"country.gd": "Granada",
|
|
125
|
+
"country.ge": "Grúzia",
|
|
126
|
+
"country.gf": "Francia Guyana",
|
|
127
|
+
"country.gg": "Guernsey",
|
|
128
|
+
"country.gh": "Ghána",
|
|
129
|
+
"country.gi": "Gibraltár",
|
|
130
|
+
"country.gl": "Grönland",
|
|
131
|
+
"country.gm": "Gambia",
|
|
132
|
+
"country.gn": "Guinea",
|
|
133
|
+
"country.gp": "Guadeloupe",
|
|
134
|
+
"country.gq": "Egyenlítői-Guinea",
|
|
135
|
+
"country.gr": "Görögország",
|
|
136
|
+
"country.gs": "Dél-Georgia",
|
|
137
|
+
"country.gt": "Guatemala",
|
|
138
|
+
"country.gu": "Guam",
|
|
139
|
+
"country.gw": "Bissau-Guinea",
|
|
140
|
+
"country.gy": "Guyana",
|
|
141
|
+
"country.hk": "Hongkong",
|
|
142
|
+
"country.hm": "Heard-sziget és McDonald-szigetek",
|
|
143
|
+
"country.hn": "Honduras",
|
|
144
|
+
"country.hr": "Horvátország",
|
|
145
|
+
"country.ht": "Haiti",
|
|
146
|
+
"country.hu": "Magyarország",
|
|
147
|
+
"country.id": "Indonézia",
|
|
148
|
+
"country.ie": "Írország",
|
|
149
|
+
"country.il": "Izrael",
|
|
150
|
+
"country.im": "Man-sziget",
|
|
151
|
+
"country.in": "India",
|
|
152
|
+
"country.io": "Brit indiai-óceáni terület",
|
|
153
|
+
"country.iq": "Irak",
|
|
154
|
+
"country.ir": "Irán",
|
|
155
|
+
"country.is": "Izland",
|
|
156
|
+
"country.it": "Olaszország",
|
|
157
|
+
"country.je": "Jersey",
|
|
158
|
+
"country.jm": "Jamaica",
|
|
159
|
+
"country.jo": "Jordánia",
|
|
160
|
+
"country.jp": "Japán",
|
|
161
|
+
"country.ke": "Kenya",
|
|
162
|
+
"country.kg": "Kirgizisztán",
|
|
163
|
+
"country.kh": "Kambodzsa",
|
|
164
|
+
"country.ki": "Kiribati",
|
|
165
|
+
"country.km": "Comore-szigetek",
|
|
166
|
+
"country.kn": "Saint Kitts és Nevis",
|
|
167
|
+
"country.kp": "Észak-Korea",
|
|
168
|
+
"country.kr": "Dél-Korea",
|
|
169
|
+
"country.kw": "Kuvait",
|
|
170
|
+
"country.ky": "Kajmán-szigetek",
|
|
171
|
+
"country.kz": "Kazahsztán",
|
|
172
|
+
"country.la": "Laosz",
|
|
173
|
+
"country.lb": "Libanon",
|
|
174
|
+
"country.lc": "Saint Lucia",
|
|
175
|
+
"country.li": "Liechtenstein",
|
|
176
|
+
"country.lk": "Srí Lanka",
|
|
177
|
+
"country.lr": "Libéria",
|
|
178
|
+
"country.ls": "Lesotho",
|
|
179
|
+
"country.lt": "Litvánia",
|
|
180
|
+
"country.lu": "Luxemburg",
|
|
181
|
+
"country.lv": "Lettország",
|
|
182
|
+
"country.ly": "Líbia",
|
|
183
|
+
"country.ma": "Marokkó",
|
|
184
|
+
"country.mc": "Monaco",
|
|
185
|
+
"country.md": "Moldova",
|
|
186
|
+
"country.me": "Montenegró",
|
|
187
|
+
"country.mf": "Szent Márton",
|
|
188
|
+
"country.mg": "Madagaszkár",
|
|
189
|
+
"country.mh": "Marshall-szigetek",
|
|
190
|
+
"country.mk": "Macedónia",
|
|
191
|
+
"country.ml": "Mali",
|
|
192
|
+
"country.mm": "Mianmar",
|
|
193
|
+
"country.mn": "Mongólia",
|
|
194
|
+
"country.mo": "Makaó",
|
|
195
|
+
"country.mp": "Északi-Mariana-szigetek",
|
|
196
|
+
"country.mq": "Martinique",
|
|
197
|
+
"country.mr": "Mauritánia",
|
|
198
|
+
"country.ms": "Montserrat",
|
|
199
|
+
"country.mt": "Málta",
|
|
200
|
+
"country.mu": "Mauritius",
|
|
201
|
+
"country.mv": "Maldív-szigetek",
|
|
202
|
+
"country.mw": "Malawi",
|
|
203
|
+
"country.mx": "Mexikó",
|
|
204
|
+
"country.my": "Malajzia",
|
|
205
|
+
"country.mz": "Mozambik",
|
|
206
|
+
"country.na": "Namíbia",
|
|
207
|
+
"country.nc": "Új-Kaledónia",
|
|
208
|
+
"country.ne": "Niger",
|
|
209
|
+
"country.nf": "Norfolk-sziget",
|
|
210
|
+
"country.ng": "Nigéria",
|
|
211
|
+
"country.ni": "Nicaragua",
|
|
212
|
+
"country.nl": "Hollandia",
|
|
213
|
+
"country.no": "Norvégia",
|
|
214
|
+
"country.np": "Nepál",
|
|
215
|
+
"country.nr": "Nauru",
|
|
216
|
+
"country.nu": "Niue",
|
|
217
|
+
"country.nz": "Új-Zéland",
|
|
218
|
+
"country.om": "Omán",
|
|
219
|
+
"country.pa": "Panama",
|
|
220
|
+
"country.pe": "Peru",
|
|
221
|
+
"country.pf": "Francia Polinézia",
|
|
222
|
+
"country.pg": "Pápua Új-Guinea",
|
|
223
|
+
"country.ph": "Fülöp-szigetek",
|
|
224
|
+
"country.pk": "Pakisztán",
|
|
225
|
+
"country.pl": "Lengyelország",
|
|
226
|
+
"country.pm": "Saint Pierre és Miquelon",
|
|
227
|
+
"country.pn": "Pitcairn-szigetek",
|
|
228
|
+
"country.pr": "Puerto Rico",
|
|
229
|
+
"country.ps": "Palesztina",
|
|
230
|
+
"country.pt": "Portugália",
|
|
231
|
+
"country.pw": "Palau",
|
|
232
|
+
"country.py": "Paraguay",
|
|
233
|
+
"country.qa": "Katar",
|
|
234
|
+
"country.re": "Réunion",
|
|
235
|
+
"country.ro": "Románia",
|
|
236
|
+
"country.rs": "Szerbia",
|
|
237
|
+
"country.ru": "Oroszország",
|
|
238
|
+
"country.rw": "Ruanda",
|
|
239
|
+
"country.sa": "Szaúd-Arábia",
|
|
240
|
+
"country.sb": "Salamon-szigetek",
|
|
241
|
+
"country.sc": "Seychelle-szigetek",
|
|
242
|
+
"country.sd": "Szudán",
|
|
243
|
+
"country.se": "Svédország",
|
|
244
|
+
"country.sg": "Szingapúr",
|
|
245
|
+
"country.si": "Szlovénia",
|
|
246
|
+
"country.sj": "Svalbard és Jan Mayen",
|
|
247
|
+
"country.sk": "Szlovákia",
|
|
248
|
+
"country.sl": "Sierra Leone",
|
|
249
|
+
"country.sm": "San Marino",
|
|
250
|
+
"country.sn": "Szenegál",
|
|
251
|
+
"country.so": "Szomália",
|
|
252
|
+
"country.sr": "Suriname",
|
|
253
|
+
"country.ss": "Dél-Szudán",
|
|
254
|
+
"country.st": "São Tomé és Príncipe",
|
|
255
|
+
"country.sv": "El Salvador",
|
|
256
|
+
"country.sx": "Sint Maarten",
|
|
257
|
+
"country.sy": "Szíria",
|
|
258
|
+
"country.sz": "Szváziföld",
|
|
259
|
+
"country.tc": "Turks- és Caicos-szigetek",
|
|
260
|
+
"country.td": "Csád",
|
|
261
|
+
"country.tf": "Francia déli és antarktiszi területek",
|
|
262
|
+
"country.tg": "Togo",
|
|
263
|
+
"country.th": "Thaiföld",
|
|
264
|
+
"country.tj": "Tádzsikisztán",
|
|
265
|
+
"country.tk": "Tokelau",
|
|
266
|
+
"country.tl": "Kelet-Timor",
|
|
267
|
+
"country.tm": "Türkmenisztán",
|
|
268
|
+
"country.tn": "Tunézia",
|
|
269
|
+
"country.to": "Tonga",
|
|
270
|
+
"country.tr": "Törökország",
|
|
271
|
+
"country.tt": "Trinidad és Tobago",
|
|
272
|
+
"country.tv": "Tuvalu",
|
|
273
|
+
"country.tw": "Tajvan",
|
|
274
|
+
"country.tz": "Tanzánia",
|
|
275
|
+
"country.ua": "Ukrajna",
|
|
276
|
+
"country.ug": "Uganda",
|
|
277
|
+
"country.um": "USA Kisebb peremszigetek",
|
|
278
|
+
"country.us": "Egyesült Államok",
|
|
279
|
+
"country.uy": "Uruguay",
|
|
280
|
+
"country.uz": "Üzbegisztán",
|
|
281
|
+
"country.va": "Vatikánváros",
|
|
282
|
+
"country.vc": "Saint Vincent és a Grenadine-szigetek",
|
|
283
|
+
"country.ve": "Venezuela",
|
|
284
|
+
"country.vg": "Brit Virgin-szigetek",
|
|
285
|
+
"country.vi": "Amerikai Virgin-szigetek",
|
|
286
|
+
"country.vn": "Vietnam",
|
|
287
|
+
"country.vu": "Vanuatu",
|
|
288
|
+
"country.wf": "Wallis és Futuna",
|
|
289
|
+
"country.ws": "Szamoa",
|
|
290
|
+
"country.xk": "Koszovó",
|
|
291
|
+
"country.ye": "Jemen",
|
|
292
|
+
"country.yt": "Mayotte",
|
|
293
|
+
"country.za": "Dél-Afrika",
|
|
294
|
+
"country.zm": "Zambia",
|
|
295
|
+
"country.zw": "Zimbabve",
|
|
296
|
+
"download": "LETÖLTÉS",
|
|
297
|
+
"download.five_minutes": "Általában kevesebb, mint 5 perc.",
|
|
298
|
+
"download.one_minute": "Általában kevesebb, mint 1 perc.",
|
|
299
|
+
"download.summary_being_prepared": "Készül az összefoglalása.",
|
|
300
|
+
"download.summary_getting_ready": "Az összefoglalás készül.",
|
|
301
|
+
"download.usually_takes": "Általában kevesebb, mint 1 perc.",
|
|
302
|
+
"error.case_already_open": "Máshol már meg van nyitva egy esete. Először fejezze be az esetet ott.",
|
|
303
|
+
"error.something_went_wrong": "Hiba történt. Kérjük, próbálja újra később",
|
|
304
|
+
"error.validation.attachment.duplicated": "A csatolmány már hozzá van adva",
|
|
305
|
+
"error.validation.attachment.max": "Hiba a feltöltéskor: legfeljebb {{maxAmount}} db fájl tölthető fel",
|
|
306
|
+
"error.validation.attachment.size": "Max méret fájlonként: {{maxSize}}",
|
|
307
|
+
"error.validation.attachment.type": "Hiba a feltöltéskor: próbáljon meg más formátumú fájlt feltölteni. Csak képek (png, jpg) és pdf fájl támogatott.",
|
|
308
|
+
"error.validation.attachment.upload": "Hiba történt a fájl feltöltésekor.",
|
|
309
|
+
"error.validation.default": "Hiba",
|
|
310
|
+
"error.validation.email": "Ellenőrizze az email címét.",
|
|
311
|
+
"error.validation.fill_form": "Az úrlapot ki kell tölteni.",
|
|
312
|
+
"error.validation.max_value": "A legnagyobb érték {{max}}.",
|
|
313
|
+
"error.validation.min_value": "A legkisebb érték {{min}}.",
|
|
314
|
+
"error.validation.phone": "Ellenőrizze a telefonszámát.",
|
|
315
|
+
"error.validation.required": "Kötelező mező",
|
|
316
|
+
"error.wrong_language_combination": "Rossz ország + nyelv kombináció. Segítségért vegye fel a kapcsolatot velünk.",
|
|
317
|
+
"exit_logic.denied.description": "Úgy tűnik, hogy további orvosi felülvizsgálatra van szükség, ezért most nem tudunk továbblépni.",
|
|
318
|
+
"exit_logic.denied.title": "Elnézést kérünk, a válasza alapján most nem tudjuk folytatni a kérés teljesítését.",
|
|
319
|
+
"follow_up": "VAGY UTÁNKÖVETŐ KÉRDÉS",
|
|
320
|
+
"follow_up.placeholder.text": "Utánkövető kérdés feltevése.",
|
|
321
|
+
"forgot_password_confirmation.check_email_to_continue": "A folytatáshoz ellenőrizze az email címét",
|
|
322
|
+
"forgot_password_confirmation.password_reset_email_sent": "A jelszóvisszaállító emailt elküldtük",
|
|
323
|
+
"forgot_password.already_have_an_account": "Már van fiókja?",
|
|
324
|
+
"forgot_password.forgot_your_password": "Elfelejtette a jelszavát?",
|
|
325
|
+
"forgot_password.we_will_email_you": "Emailben küldünk egy linket az új jelszó létrehozásához",
|
|
326
|
+
"form.gender.other": "Egyéb",
|
|
327
|
+
"form.gender.female": "Nő",
|
|
328
|
+
"form.gender.male": "Férfi",
|
|
329
|
+
"form.gender.non-binary": "Nem bináris",
|
|
330
|
+
"form.gender.prefer_not_to_answer": "Nem szeretnék válaszolni",
|
|
331
|
+
"form.gender.transgender_female": "Transznemű nő",
|
|
332
|
+
"form.gender.transgender_male": "Transznemű férfi",
|
|
333
|
+
"general.coming_soon": "Nemsokára",
|
|
334
|
+
"general.consultation.assessment.title": "Szakorvosi értékelés",
|
|
335
|
+
"general.consultation.medicalConsultation.description": "Tegyen fel egy egészségügyi kérdést üzenetben, és néhány perc múlva kap rá egy diszkrét választ egy szakorvostól.",
|
|
336
|
+
"general.consultation.medicalConsultation.summary": "Az SMS konzultáció összefoglalása",
|
|
337
|
+
"general.consultation.medicalConsultation.title": "Üzenet küldése egy orvosnak",
|
|
338
|
+
"general.consultation.modal.are_you_sure": "Biztos, hogy törölni akarja ezt az esetet?",
|
|
339
|
+
"general.consultation.modal.are_you_sure.prescriptionRequest": "Biztos, hogy törölni akarja ezt a receptkérést?",
|
|
340
|
+
"general.consultation.modal.finish_video_call": "Biztos, hogy be akarja fejezni a videóhívást?",
|
|
341
|
+
"general.consultation.prescription.description": "Válasszon vagy keressen az itt felírható, gyakran használt gyógyszerek listájából.",
|
|
342
|
+
"general.consultation.prescription.title": "Receptkérés",
|
|
343
|
+
"general.consultation.prescriptionRequest.description": "Válasszon vagy keressen az itt felírható, gyakran használt gyógyszerek listájából.",
|
|
344
|
+
"general.consultation.prescriptionRequest.summary": "Online felírt receptek összefoglalása",
|
|
345
|
+
"general.consultation.prescriptionRequest.title": "Online recept",
|
|
346
|
+
"general.consultation.prescriptions.description": "Válasszon vagy keressen az itt felírható, gyakran használt gyógyszerek listájából.",
|
|
347
|
+
"general.consultation.prescriptions.title": "Receptkérés",
|
|
348
|
+
"general.consultation.summary.download": "Összefoglaló letöltése",
|
|
349
|
+
"general.consultation.text.description": "Tegyen fel egy egészségügyi kérdést üzenetben, és néhány perc múlva kap rá egy diszkrét választ egy szakorvostól.",
|
|
350
|
+
"general.consultation.text.title": "SMS konzultáció",
|
|
351
|
+
"general.consultation.videoConsultation.description": "Kérjen videóhívást egy regisztrált, helyi orvossal. Ő megállapítja a diagnózist, és szükség receptet is felír.",
|
|
352
|
+
"general.consultation.videoConsultation.ending": "befejezi a videókonzultációt.",
|
|
353
|
+
"general.consultation.videoConsultation.hcpCanRecall": "Ez általában kevesebb, mint 5 perc. Szükség esetén az orvos újrahívja önt, további információért.",
|
|
354
|
+
"general.consultation.videoConsultation.isPreparingSummary": "Az összefoglalás készül.",
|
|
355
|
+
"general.consultation.videoConsultation.summary": "Videókonzultáció összefoglaló",
|
|
356
|
+
"general.consultation.videoConsultation.title": "Videókonzultáció",
|
|
357
|
+
"general.consultations.answer.end_consultation": "Konzultáció befejezése",
|
|
358
|
+
"general.prescriptionRequest.question.hint": "Ezzel segít az orvosnak, hogy jobban megértse a korábbi kérdésekre adott válaszait.",
|
|
359
|
+
"general.prescriptionRequest.question.placeholder": "Kattintson ide az íráshoz.",
|
|
360
|
+
"general.prescriptionRequest.question.title": "Saját szavaival írja le az orvosnak, hogy miért van szüksége erre a receptre.",
|
|
361
|
+
"i_have_read_and_agreed_to_the_terms_conditions": "Elolvastam és beleegyezem a <a href='https://abi.ai/en/terms-of-use'>Terms & Conditions</a> dokumentumban foglaltakba.",
|
|
362
|
+
"i_have_read_and_understood_the_privacy_policy": "Elolvastam és beleegyezem az <a href='https://abi.ai/en/privacy'>Privacy Policy</a>",
|
|
363
|
+
"input.confirm_password": "Jelszó megerősítése",
|
|
364
|
+
"input.email": "Email",
|
|
365
|
+
"input.message": "Üzenet",
|
|
366
|
+
"input.password": "Jelszó",
|
|
367
|
+
"input.subject": "Tárgy",
|
|
368
|
+
"inputs.address.label": "Cím",
|
|
369
|
+
"inputs.address.placeholder": "Kérjük, adja meg itt...",
|
|
370
|
+
"inputs.age.label": "Életkor",
|
|
371
|
+
"inputs.city.label": "Város",
|
|
372
|
+
"inputs.city.placeholder": "Város",
|
|
373
|
+
"inputs.dateOfBirth.label": "Születési dátum",
|
|
374
|
+
"inputs.email.label": "Email",
|
|
375
|
+
"inputs.firstName.label": "Keresztnév",
|
|
376
|
+
"inputs.gender.label": "Nem",
|
|
377
|
+
"inputs.gender.placeholder": "Az ön neme",
|
|
378
|
+
"inputs.height.label": "Magasság",
|
|
379
|
+
"inputs.lastName.label": "Vezetéknév",
|
|
380
|
+
"inputs.mobile_number": "Mobiltelefonszám",
|
|
381
|
+
"inputs.mobile.label": "Mobiltelefonszám",
|
|
382
|
+
"inputs.national_identification_number.label": "TAJ szám",
|
|
383
|
+
"inputs.nationalId.label": "TAJ szám",
|
|
384
|
+
"inputs.phone.label": "Mobiltelefonszám",
|
|
385
|
+
"inputs.physicianCountry.label": "Ország",
|
|
386
|
+
"inputs.physicianCountry.placeholder": "Ország",
|
|
387
|
+
"inputs.physicianState.label": "Állam",
|
|
388
|
+
"inputs.physicianState.placeholder": "Állam",
|
|
389
|
+
"inputs.sex.label": "Nem",
|
|
390
|
+
"inputs.surname.label": "Vezetéknév",
|
|
391
|
+
"inputs.textarea.min_length": "Legalább {{minLength}} karakter",
|
|
392
|
+
"inputs.textarea.question_empty": "Kérjük, tegyen fel egy egészségügyi kérdést",
|
|
393
|
+
"inputs.weight.label": "Súly",
|
|
394
|
+
"inputs.zipCode.label": "Irányítószám",
|
|
395
|
+
"inputs.zipCode.placeholder": "Irányítószám",
|
|
396
|
+
"language_selection.title": "Kérjük, válassza ki a kívánt nyelvet.",
|
|
397
|
+
"languages.en": "Angol",
|
|
398
|
+
"languages.es": "Spanyol",
|
|
399
|
+
"link_content.skip": "Nem, köszönöm.",
|
|
400
|
+
"match.one_minute": "Ez általában kevesebb mint 1 percet vesz igénybe, de a nap bizonyos időszakaiban hosszabb ideig is eltarthat.",
|
|
401
|
+
"matching": "Kiválasztjuk az ön számára a legmegfelelőbb egészségügyi szakembert",
|
|
402
|
+
"matching.video.text_message": "Ha egy orvos meghívja önt egy videohívásra, akkor kap egy szöveges üzenetet.",
|
|
403
|
+
"medical_advice.emergency": "Sürgős eset",
|
|
404
|
+
"medical_advice.no_visit_necessary": "Egyelőre nincs szükség vizitre",
|
|
405
|
+
"medical_advice.not_question": "Ez nem egészségügyi kérdés",
|
|
406
|
+
"medical_advice.speciality.title": "Milyen orvosi szakterülere vonatkozik az előző kérdés?",
|
|
407
|
+
"medical_advice.speciality.vas": "Angiológia",
|
|
408
|
+
"medical_advice.title": "Mi az előző kérdéssel kapcsolatos értékelése?",
|
|
409
|
+
"medical_advice.visit_doctor": "Orvoshoz kell menni (nem sürgős)",
|
|
410
|
+
"midwife_title_female": "{{name}} úrhölgy",
|
|
411
|
+
"midwife_title_male": "{{name}} úr",
|
|
412
|
+
"modal.cancel": "Biztos, hogy le akarja mondani ezt a konzultációt?",
|
|
413
|
+
"modal.claimed_by_another_doctor": "Ezt az esetet már egy másik orvos elvállalta.",
|
|
414
|
+
"modal.question_no_available": "Sajnálom, a kérdés már nem elérhető.",
|
|
415
|
+
"modal.sending": "Küldés...",
|
|
416
|
+
"modal.sent": "Elküldve",
|
|
417
|
+
"modal.something_went_wrong": "Hiba történt. Ha segítségre van szüksége, vegye fel velünk a kapcsolatot.",
|
|
418
|
+
"modal.time_to_answer_expired": "Az ügy megválaszolásának ideje lejárt.",
|
|
419
|
+
"modal.we_will_reply_shortly": "Köszönjük üzenetét. Hamarosan válaszolunk önnek emailben.",
|
|
420
|
+
"notification.title": "Üdv",
|
|
421
|
+
"nurse_title_female": "{{name}} (ápoló)",
|
|
422
|
+
"nurse_title_male": "{{name}} (ápoló)",
|
|
423
|
+
"payment.before": "Mielőtt megkapja a gyógyszerét, kérem fizessen.",
|
|
424
|
+
"payment.title": "Fizetés",
|
|
425
|
+
"person_title_female": "{{name}} úrhölgy",
|
|
426
|
+
"person_title_male": "{{name}} úr",
|
|
427
|
+
"physician_title_female": "Dr. {{name}}",
|
|
428
|
+
"physician_title_male": "Dr. {{name}}",
|
|
429
|
+
"placeholder.text": "Tegyen fel egy egészségügyi kérdést.",
|
|
430
|
+
"prescription.categories.searchbar": "Keressen egy állapotot vagy gyógyszert",
|
|
431
|
+
"prescription.patient.address": "Kérjük, adja meg a lakcímét, mert az kötelező a receptfelíráshoz.",
|
|
432
|
+
"prescription.request.approved": "A recept kiállítva.",
|
|
433
|
+
"prescription.request.approved.email.description": "A kapott kódot mutassa be a gyógyszertárban, ahol át kívánja venni a gyógyszert.",
|
|
434
|
+
"prescription.request.approved.email.title": "Ellenőrizze az email címét",
|
|
435
|
+
"prescription.request.declined": "Recept elutasítva",
|
|
436
|
+
"prescription.request.details": "A recept adatai",
|
|
437
|
+
"prescription.request.duration": "Időtartam: {{duration}}",
|
|
438
|
+
"prescription.request.frequency": "Gyakoriság: {{frequency}}",
|
|
439
|
+
"psychologist_title_female": "Dr. {{name}}",
|
|
440
|
+
"psychologist_title_male": "Dr. {{name}}",
|
|
441
|
+
"rating.description": "Az összefoglaló letöltése előtt értékelje a konzultációt",
|
|
442
|
+
"rating.description.download": "Az összefoglaló letöltése előtt értékelje a konzultációt.",
|
|
443
|
+
"recommended_link.no_thanks": "Nem, köszönöm.",
|
|
444
|
+
"responding": "válaszol az esetére.",
|
|
445
|
+
"reviewing": "áttekinti a kérését.",
|
|
446
|
+
"reviewing.video": "áttekinti a kérését. Nemsokára megjelenik egy gomb, amellyel kapcsolódhat a videóhíváshoz.",
|
|
447
|
+
"sanofi.professional_assessment": "Szakorvosi értékelés",
|
|
448
|
+
"serviceForm.title": "A kezelés első heteiben történő támogásához és tapasztalatainak személyre szabásához kérni fogunk néhány általános információt.",
|
|
449
|
+
"settings.clinical_guidelines": "Klinikai irányelvek",
|
|
450
|
+
"settings.contact_us": "Kapcsolatfelvétel",
|
|
451
|
+
"settings.faqs": "GYIK",
|
|
452
|
+
"settings.logout": "Kijelentkezés",
|
|
453
|
+
"settings.notifications": "Értesítések",
|
|
454
|
+
"settings.signature": "Aláírás",
|
|
455
|
+
"settings.terms_of_use": "Használati feltételek",
|
|
456
|
+
"settings.training": "Képzés",
|
|
457
|
+
"sms_reminder.confirmation": "Kész! SMS-t fog kapni, ha a válasza elkészült.",
|
|
458
|
+
"sms_reminder.error": "Sajnáljuk, jelenleg nem áll módunkban feldolgozni a kérését.",
|
|
459
|
+
"something_went_wrong": "Hiba történt",
|
|
460
|
+
"stepper.ask_a_question": "Feltesz egy kérdést",
|
|
461
|
+
"stepper.get_an_answer": "Választ kap",
|
|
462
|
+
"stepper.match_with_a_doctor": "Összekapcsoljuk egy orvossal",
|
|
463
|
+
"summary.download.contact": "Az összefoglaló elküldéséhez küldjön egy emailt ide: <a href='mailto:support@abi.ai'>support@abi.ai</a>",
|
|
464
|
+
"summary.download.error": "Hoppá, hiba történt az összefoglaló elkészítése során…",
|
|
465
|
+
"summary.prescription.error.description": "A gyógyszer elküldéséhez írjon egy emailt ide: <a href=\"mailto:info@abi.ai\">info@abi.ai</a>",
|
|
466
|
+
"summary.prescription.error.title": "Probléma lépett fel a recept elküldése során.",
|
|
467
|
+
"text_message.case": "Amint az orvos válaszol, ön kap egy szöveges üzenetet a válasz linkjével. Kérjük, adja meg a mobiltelefon számát.",
|
|
468
|
+
"thanks.first-name": "Köszönjük {{firstName}}!",
|
|
469
|
+
"title.contact": "Kapcsolatfelvétel",
|
|
470
|
+
"title.welcome": "Üdvözöljük",
|
|
471
|
+
"try_again": "PRÓBÁLJA ÚJRA",
|
|
472
|
+
"user_form.title": "Kérjük, erősítse meg nevét, mobiltelefon számát és email címét.",
|
|
473
|
+
"video.calling.button": "Csatlakozzon a híváshoz",
|
|
474
|
+
"video.calling.midwife_female": "{{name}} úrhölgy hívja önt.",
|
|
475
|
+
"video.calling.midwife_male": "{{name}} úr hívja Önt.",
|
|
476
|
+
"video.calling.not_refresh": "KÉRJÜK a videóhívás alatt ne frissítsen és ne zárja be az ablakot.",
|
|
477
|
+
"video.calling.not_refresh.web": "KÉRJÜK a videóhívás alatt ne frissítsen és ne zárja be az ablakot.",
|
|
478
|
+
"video.calling.nurse_female": "{{name}} nővér hívja önt.",
|
|
479
|
+
"video.calling.nurse_male": "{{name}} nővér hívja önt.",
|
|
480
|
+
"video.calling.person_female": "{{name}} úrhölgy hívja önt.",
|
|
481
|
+
"video.calling.person_male": "{{name}} úr hívja önt.",
|
|
482
|
+
"video.calling.physician_female": "Dr. {{name}} hívja önt.",
|
|
483
|
+
"video.calling.physician_male": "Dr. {{name}} hívja önt.",
|
|
484
|
+
"video.calling.psychologist_female": "Dr. {{name}} hívja önt.",
|
|
485
|
+
"video.calling.psychologist_male": "Dr. {{name}} hívja önt.",
|
|
486
|
+
"video.recalling.button": "Újracsatlakozom a híváshoz",
|
|
487
|
+
"view_profile": "PROFIL MEGTEKINTÉSE"
|
|
488
|
+
}
|