@abihealth/goapp-react-native 1.28.0 → 1.30.0

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 (32) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/common/components/FormWrapper.d.ts +2 -1
  3. package/dist/common/components/FormWrapper.js +2 -2
  4. package/dist/common/contexts/FormContext.d.ts +3 -1
  5. package/dist/common/contexts/FormContext.js +6 -3
  6. package/dist/common/helpers/eventHandler.d.ts +2 -1
  7. package/dist/common/helpers/eventHandler.js +2 -0
  8. package/dist/common/hooks/useForm.js +2 -2
  9. package/dist/common/locale/translations/ar-AE.base.json +8 -2
  10. package/dist/common/locale/translations/ar-LB.base.json +10 -4
  11. package/dist/common/locale/translations/bg.base.json +2 -2
  12. package/dist/common/locale/translations/cs.base.json +2 -2
  13. package/dist/common/locale/translations/de.base.json +12 -2
  14. package/dist/common/locale/translations/en.base.json +39 -12
  15. package/dist/common/locale/translations/en.prescriptionSurveys.json +27 -1
  16. package/dist/common/locale/translations/es-MX.base.json +0 -10
  17. package/dist/common/locale/translations/es.base.json +10 -10
  18. package/dist/common/locale/translations/fr.base.json +10 -2
  19. package/dist/common/locale/translations/hu.base.json +2 -2
  20. package/dist/common/locale/translations/it.base.json +12 -2
  21. package/dist/common/locale/translations/pl.base.json +2 -2
  22. package/dist/common/locale/translations/ro.base.json +2 -2
  23. package/dist/common/locale/translations/ru.base.json +4 -2
  24. package/dist/common/locale/translations/sk.base.json +1 -9
  25. package/dist/common/locale/translations/zh-HK.base.json +10 -10
  26. package/dist/common/locale/translations/zh-SG.base.json +12 -4
  27. package/dist/common/locale/translations/zh-TW.base.json +0 -10
  28. package/dist/common/screens/RatingScreen.js +5 -4
  29. package/dist/video-consultations/api/video.d.ts +1 -2
  30. package/dist/video-consultations/api/video.js +3 -1
  31. package/dist/video-consultations/screens/DeliveryAddressScreen.js +47 -14
  32. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.30.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.29.0...goapp-react-native-v1.30.0) (2025-05-14)
4
+
5
+
6
+ ### Features
7
+
8
+ * replace Input with Select component for district selection in DeliveryAddressScreen ([#194](https://github.com/abiglobalhealth/react-native-sdk/issues/194)) ([35286d6](https://github.com/abiglobalhealth/react-native-sdk/commit/35286d6da1e5b89aa623a318d77ce56a51423e70))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update consultation based on ws and use right DTO ([#196](https://github.com/abiglobalhealth/react-native-sdk/issues/196)) ([2c8d0b5](https://github.com/abiglobalhealth/react-native-sdk/commit/2c8d0b5f77dc3b1014ddb5e74fb0e9dcf244f9d7))
14
+
15
+ ## [1.29.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.28.0...goapp-react-native-v1.29.0) (2025-05-14)
16
+
17
+
18
+ ### Features
19
+
20
+ * add caret to axios dependency ([#192](https://github.com/abiglobalhealth/react-native-sdk/issues/192)) ([7088968](https://github.com/abiglobalhealth/react-native-sdk/commit/70889683a39d9e02447cb568bec2fb6009f7129b))
21
+
22
+
23
+ ### Bug Fixes
24
+
25
+ * handle consultation ended event with consultation object ([#195](https://github.com/abiglobalhealth/react-native-sdk/issues/195)) ([e582aaa](https://github.com/abiglobalhealth/react-native-sdk/commit/e582aaa5f257b5e2da36eeb5ba6f4910ff23b8b9))
26
+
3
27
  ## [1.28.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.27.0-beta...goapp-react-native-v1.28.0) (2025-05-09)
4
28
 
5
29
 
@@ -6,6 +6,7 @@ type FormWrapperProps<T extends z.AnyZodObject> = {
6
6
  initialValues?: Partial<z.infer<T>>;
7
7
  onSubmit?: HandleSubmitProps<T>;
8
8
  submitButton: React.ReactNode;
9
+ loadingForm?: boolean;
9
10
  };
10
- export declare const FormWrapper: <T extends z.AnyZodObject>({ children, schema, initialValues, onSubmit, submitButton }: PropsWithChildren<FormWrapperProps<T>>) => React.JSX.Element;
11
+ export declare const FormWrapper: <T extends z.AnyZodObject>({ children, schema, initialValues, onSubmit, submitButton, loadingForm }: PropsWithChildren<FormWrapperProps<T>>) => React.JSX.Element;
11
12
  export {};
@@ -17,10 +17,10 @@ var InputsWrapper = function (_a) {
17
17
  return <react_native_1.View style={[styles.inputsWrapper, loading && styles.loading]}>{children}</react_native_1.View>;
18
18
  };
19
19
  var FormWrapper = function (_a) {
20
- var children = _a.children, schema = _a.schema, initialValues = _a.initialValues, onSubmit = _a.onSubmit, submitButton = _a.submitButton;
20
+ var children = _a.children, schema = _a.schema, initialValues = _a.initialValues, onSubmit = _a.onSubmit, submitButton = _a.submitButton, loadingForm = _a.loadingForm;
21
21
  var theme = (0, useTheme_1.useTheme)();
22
22
  var styles = getStyles(theme);
23
- return (<FormContext_1.FormProvider schema={schema} initialValues={initialValues} onSubmit={onSubmit}>
23
+ return (<FormContext_1.FormProvider schema={schema} initialValues={initialValues} onSubmit={onSubmit} loadingForm={loadingForm}>
24
24
  <react_native_1.View style={styles.formWrapper}>
25
25
  <InputsWrapper>{children}</InputsWrapper>
26
26
  {submitButton}
@@ -14,12 +14,14 @@ export type FormContextProps<T extends z.AnyZodObject> = {
14
14
  onSubmit?: HandleSubmitProps<T>;
15
15
  loading: boolean;
16
16
  setLoading: React.Dispatch<React.SetStateAction<boolean>>;
17
+ loadingForm?: boolean;
17
18
  };
18
19
  export declare const FormContext: React.Context<FormContextProps<any>>;
19
20
  type FormProviderProps<T extends z.AnyZodObject> = {
20
21
  schema: T;
21
22
  initialValues?: Partial<z.infer<T>>;
22
23
  onSubmit?: HandleSubmitProps<T>;
24
+ loadingForm?: boolean;
23
25
  };
24
- export declare const FormProvider: <T extends z.AnyZodObject>({ children, schema, initialValues, onSubmit }: PropsWithChildren<FormProviderProps<T>>) => React.JSX.Element;
26
+ export declare const FormProvider: <T extends z.AnyZodObject>({ children, schema, initialValues, onSubmit, loadingForm }: PropsWithChildren<FormProviderProps<T>>) => React.JSX.Element;
25
27
  export {};
@@ -43,13 +43,16 @@ exports.FormContext = (0, react_1.createContext)({
43
43
  setErrors: function () { },
44
44
  schema: zod_1.z.object({}),
45
45
  loading: false,
46
- setLoading: function () { }
46
+ setLoading: function () { },
47
+ loadingForm: false
47
48
  });
48
49
  var FormProvider = function (_a) {
49
- var children = _a.children, schema = _a.schema, initialValues = _a.initialValues, onSubmit = _a.onSubmit;
50
+ var children = _a.children, schema = _a.schema, initialValues = _a.initialValues, onSubmit = _a.onSubmit, loadingForm = _a.loadingForm;
50
51
  var _b = (0, react_1.useState)(false), loading = _b[0], setLoading = _b[1];
51
52
  var _c = (0, react_1.useState)(initialValues || null), data = _c[0], setData = _c[1];
52
53
  var _d = (0, react_1.useState)(null), errors = _d[0], setErrors = _d[1];
53
- return <exports.FormContext.Provider value={{ data: data, setData: setData, errors: errors, setErrors: setErrors, schema: schema, onSubmit: onSubmit, loading: loading, setLoading: setLoading }}>{children}</exports.FormContext.Provider>;
54
+ return (<exports.FormContext.Provider value={{ data: data, setData: setData, errors: errors, setErrors: setErrors, schema: schema, onSubmit: onSubmit, loading: loading, setLoading: setLoading, loadingForm: loadingForm }}>
55
+ {children}
56
+ </exports.FormContext.Provider>);
54
57
  };
55
58
  exports.FormProvider = FormProvider;
@@ -1,3 +1,4 @@
1
+ import { ConsultationContextProps } from '../contexts/ConsultationContext';
1
2
  import { Consultation } from '../types/consultation';
2
3
  import { CONSULTATION_EVENT, EventCallback } from '../types/events';
3
4
  export interface EventHandlers {
@@ -13,4 +14,4 @@ export interface EventHandlers {
13
14
  onConsultationEnded?: EventCallback;
14
15
  }
15
16
  export declare const mapConsultationStatusToEvent: (consultation: Consultation) => CONSULTATION_EVENT;
16
- export declare const handleEvent: (consultation: Consultation, eventHandlers?: EventHandlers) => void;
17
+ export declare const handleEvent: (consultation: ConsultationContextProps["consultation"], eventHandlers?: EventHandlers) => void;
@@ -28,6 +28,8 @@ var handleEvent = function (consultation, eventHandlers) {
28
28
  var _a, _b, _c, _d, _e, _f, _g, _h, _j;
29
29
  if (!eventHandlers)
30
30
  return;
31
+ if (!consultation)
32
+ return console.warn('Skipping event handling -> no consultation found');
31
33
  var consultationEvent = (0, exports.mapConsultationStatusToEvent)(consultation);
32
34
  switch (consultationEvent) {
33
35
  case events_1.CONSULTATION_EVENT.CANCELED:
@@ -53,7 +53,7 @@ var zod_1 = require("../utils/zod");
53
53
  var react_1 = require("react");
54
54
  var useForm = function () {
55
55
  var context = (0, react_1.useContext)(FormContext_1.FormContext);
56
- var data = context.data, setData = context.setData, errors = context.errors, setErrors = context.setErrors, schema = context.schema, onSubmit = context.onSubmit, loading = context.loading, setLoading = context.setLoading;
56
+ var data = context.data, setData = context.setData, errors = context.errors, setErrors = context.setErrors, schema = context.schema, onSubmit = context.onSubmit, loading = context.loading, setLoading = context.setLoading, loadingForm = context.loadingForm;
57
57
  var updateData = function (key) { return function (value) {
58
58
  setData(function (prev) {
59
59
  var _a;
@@ -100,7 +100,7 @@ var useForm = function () {
100
100
  updateData: updateData,
101
101
  clearError: clearError,
102
102
  handleSubmit: handleSubmit,
103
- loading: loading,
103
+ loading: loading || loadingForm,
104
104
  setLoading: setLoading
105
105
  };
106
106
  };
@@ -301,8 +301,6 @@
301
301
  "delivery.address.country": "البلد",
302
302
  "delivery.address.country.placeholder": "الرجاء الاختيار...",
303
303
  "delivery.address.description": "تم إصدار وصفة طبية. يرجى تقديم عنوانك الكامل للتسليم.",
304
- "delivery.address.district_city": "المنطقة / المدينة",
305
- "delivery.address.district_city.placeholder": "هونغ كونغ، الأقاليم الجديدة",
306
304
  "delivery.address.mobile": "رقم الهاتف المحمول",
307
305
  "delivery.address.number_and_floor": "رقم المنزل أو الشقة والطابق",
308
306
  "delivery.address.number_and_floor.placeholder": "رقم 46، 15/ف",
@@ -427,8 +425,11 @@
427
425
  "match.one_minute": "يستغرق هذا عادةً أقل من 1 دقيقة ولكن قد يستغرق وقتًا أطول في أوقات معينة من اليوم.",
428
426
  "matching": "مطابقتك مع أخصائي الرعاية الصحية المناسب",
429
427
  "matching.video.text_message": "ستتلقى رسالة نصية عندما يدعوك طبيب للانضمام إلى مكالمة فيديو.",
428
+ "medical_advice.call_visana": "استنادًا إلى تقييم الطبيب، يجب أن تتواصل مع Medi24 على الرقم التالي:\n \n</b> <a href=\"tel: +41 800 633 225\">+41 800 633 225</a> <b>",
430
429
  "medical_advice.emergency": "حالة طوارئ",
430
+ "medical_advice.emergency_visana": "اتصل برقم الطوارئ<b> <a href=\"tel:144\">144</a> </b>أو اذهب إلى قسم الطوارئ فورًا.",
431
431
  "medical_advice.no_visit_necessary": "لا حاجة لزيارة في الوقت الحالي",
432
+ "medical_advice.no_visit_necessary_visana": "لا حاجة لزيارة طبيب. يرجى اتباع التوصيات التي قدمها الطبيب.",
432
433
  "medical_advice.not_question": "ليس سؤالاً صحيًا",
433
434
  "medical_advice.speciality.alr": "الحساسية",
434
435
  "medical_advice.speciality.car": "طب القلب",
@@ -461,6 +462,9 @@
461
462
  "medical_advice.speciality.vas": "طب الأوعية الدموية",
462
463
  "medical_advice.title": "ما هو تقييمك للسؤال السابق؟",
463
464
  "medical_advice.visit_doctor": "زيارة الطبيب (ليست عاجلة)",
465
+ "medical_advice.visit_doctor_next_seven_days_visana": "بادر بزيارة طبيب {{specialty}} خلال 7 أيام من الآن.",
466
+ "medical_advice.visit_doctor_next_six_hours_visana": "استنادًا إلى إجابة الطبيب، فلقد تم تعيين حالتك الطبية إلى مستوى الإلحاح التالي: \n \nبادر بزيارة طبيب {{specialty}} خلال 6 ساعات من الآن.",
467
+ "medical_advice.visit_doctor_next_twentyfour_hours_visana": "استنادًا إلى إجابة الطبيب، فلقد تم تعيين حالتك الطبية إلى مستوى الإلحاح التالي: \n\nبادر بزيارة طبيب {{specialty}} خلال 24 ساعة من الآن.",
464
468
  "midwife_title_female": "السيدة {{name}}",
465
469
  "midwife_title_male": "السيد {{name}}",
466
470
  "modal.cancel": "هل أنت متأكد من رغبتك في إلغاء هذه الاستشارة؟",
@@ -500,6 +504,8 @@
500
504
  "rating.description": "يرجى تقييم استشارتك قبل تنزيل الملخص",
501
505
  "rating.description.download": "يرجى تقييم استشارتك قبل تنزيل الملخص.",
502
506
  "recommended_link.no_thanks": "لا، شكرًا",
507
+ "referral.button": "الاطلاع على مستوى الإلحاح",
508
+ "referral.level.title": "استنادًا إلى إجابة الطبيب، فلقد تم تعيين حالتك الطبية إلى مستوى الإلحاح التالي:",
503
509
  "responding": "يستجيب لحالتك.",
504
510
  "reviewing": "يراجع طلبك.",
505
511
  "reviewing.video": "يراجع طلبك. \nسترى قريبًا زرًا للانضمام إلى مكالمة الفيديو.",
@@ -301,8 +301,6 @@
301
301
  "delivery.address.country": "البلد",
302
302
  "delivery.address.country.placeholder": "الرجاء الاختيار...",
303
303
  "delivery.address.description": "تم إصدار وصفة طبية. يرجى تقديم عنوانك الكامل للتسليم.",
304
- "delivery.address.district_city": "المنطقة / المدينة",
305
- "delivery.address.district_city.placeholder": "هونغ كونغ، الأقاليم الجديدة",
306
304
  "delivery.address.mobile": "رقم الهاتف المحمول",
307
305
  "delivery.address.number_and_floor": "رقم المنزل أو الشقة والطابق",
308
306
  "delivery.address.number_and_floor.placeholder": "رقم 46، 15/ف",
@@ -385,8 +383,8 @@
385
383
  "general.prescriptionRequest.question.hint": "سيساعد ذلك الطبيب على فهم إجاباتك على الأسئلة السابقة بشكل أفضل.",
386
384
  "general.prescriptionRequest.question.placeholder": "انقر هنا للكتابة.",
387
385
  "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>",
386
+ "i_have_read_and_agreed_to_the_terms_conditions": "لقد قرأت وأوافق على <a href='https://abi.ai/ar-lb/terms-of-use'>الشروط والأحكام</a>",
387
+ "i_have_read_and_understood_the_privacy_policy": "لقد قرأت وأوافق على <a href='https://abi.ai/ar-lb/privacy'>سياسة الخصوصية</a>",
390
388
  "input.confirm_password": "تأكيد كلمة المرور",
391
389
  "input.email": "البريد الإلكتروني",
392
390
  "input.message": "رسالة",
@@ -427,8 +425,11 @@
427
425
  "match.one_minute": "يستغرق هذا عادةً أقل من 1 دقيقة ولكن قد يستغرق وقتًا أطول في أوقات معينة من اليوم.",
428
426
  "matching": "مطابقتك مع أخصائي الرعاية الصحية المناسب",
429
427
  "matching.video.text_message": "ستتلقى رسالة نصية عندما يدعوك طبيب للانضمام إلى مكالمة فيديو.",
428
+ "medical_advice.call_visana": "استنادًا إلى تقييم الطبيب، يجب أن تتواصل مع Medi24 على الرقم التالي:\n \n</b> <a href=\"tel: +41 800 633 225\">+41 800 633 225</a> <b>",
430
429
  "medical_advice.emergency": "حالة طوارئ",
430
+ "medical_advice.emergency_visana": "اتصل برقم الطوارئ<b> <a href=\"tel:144\">144</a> </b>أو اذهب إلى قسم الطوارئ فورًا.",
431
431
  "medical_advice.no_visit_necessary": "لا حاجة لزيارة في الوقت الحالي",
432
+ "medical_advice.no_visit_necessary_visana": "لا حاجة لزيارة طبيب. يرجى اتباع التوصيات التي قدمها الطبيب.",
432
433
  "medical_advice.not_question": "ليس سؤالاً صحيًا",
433
434
  "medical_advice.speciality.alr": "الحساسية",
434
435
  "medical_advice.speciality.car": "طب القلب",
@@ -461,6 +462,9 @@
461
462
  "medical_advice.speciality.vas": "طب الأوعية الدموية",
462
463
  "medical_advice.title": "ما هو تقييمك للسؤال السابق؟",
463
464
  "medical_advice.visit_doctor": "زيارة الطبيب (ليست عاجلة)",
465
+ "medical_advice.visit_doctor_next_seven_days_visana": "بادر بزيارة طبيب {{specialty}} خلال 7 أيام من الآن.",
466
+ "medical_advice.visit_doctor_next_six_hours_visana": "استنادًا إلى إجابة الطبيب، فلقد تم تعيين حالتك الطبية إلى مستوى الإلحاح التالي: \n \nبادر بزيارة طبيب {{specialty}} خلال 6 ساعات من الآن.",
467
+ "medical_advice.visit_doctor_next_twentyfour_hours_visana": "استنادًا إلى إجابة الطبيب، فلقد تم تعيين حالتك الطبية إلى مستوى الإلحاح التالي: \n\nبادر بزيارة طبيب {{specialty}} خلال 24 ساعة من الآن.",
464
468
  "midwife_title_female": "السيدة {{name}}",
465
469
  "midwife_title_male": "السيد {{name}}",
466
470
  "modal.cancel": "هل أنت متأكد من رغبتك في إلغاء هذه الاستشارة؟",
@@ -500,6 +504,8 @@
500
504
  "rating.description": "يرجى تقييم استشارتك قبل تنزيل الملخص",
501
505
  "rating.description.download": "يرجى تقييم استشارتك قبل تنزيل الملخص.",
502
506
  "recommended_link.no_thanks": "لا، شكرًا",
507
+ "referral.button": "الاطلاع على مستوى الإلحاح",
508
+ "referral.level.title": "استنادًا إلى إجابة الطبيب، فلقد تم تعيين حالتك الطبية إلى مستوى الإلحاح التالي:",
503
509
  "responding": "يستجيب لحالتك.",
504
510
  "reviewing": "يراجع طلبك.",
505
511
  "reviewing.video": "يراجع طلبك. \nسترى قريبًا زرًا للانضمام إلى مكالمة الفيديو.",
@@ -358,8 +358,8 @@
358
358
  "general.prescriptionRequest.question.hint": "Това ще помогне на лекаря да разбере по-добре вашите отговори на предишните въпроси.",
359
359
  "general.prescriptionRequest.question.placeholder": "Щракнете тук, за да пишете.",
360
360
  "general.prescriptionRequest.question.title": "Обяснете със собствени думи на лекаря защо имате нужда от тази рецепта.",
361
- "i_have_read_and_agreed_to_the_terms_conditions": "Прочетох и приемам <a href='https://abi.ai/en/terms-of-use'>Общите условия</a>",
362
- "i_have_read_and_understood_the_privacy_policy": "Прочетох и приемам <a href='https://abi.ai/en/privacy'>Политиката за поверителност</a>",
361
+ "i_have_read_and_agreed_to_the_terms_conditions": "Прочетох и приемам <a href='https://abi.ai/bg/terms-of-use'>Общите условия</a>",
362
+ "i_have_read_and_understood_the_privacy_policy": "Прочетох и приемам <a href='https://abi.ai/bg/privacy'>Политиката за поверителност</a>",
363
363
  "input.confirm_password": "Потвърдете паролата",
364
364
  "input.email": "Имейл",
365
365
  "input.message": "Съобщение",
@@ -364,8 +364,8 @@
364
364
  "general.prescriptionRequest.question.hint": "Toto pomůže lékaři lépe porozumět vašim odpovědím na předchozí otázky.",
365
365
  "general.prescriptionRequest.question.placeholder": "Pro psaní klikněte zde.",
366
366
  "general.prescriptionRequest.question.title": "Vysvětlete prosím lékaři vlastními slovy proč tento předpis potřebujete.",
367
- "i_have_read_and_agreed_to_the_terms_conditions": "Přečetl jsem si a souhlasím s <a href='https://abi.ai/en/terms-of-use'>Pravidly a podmínkami</a>",
368
- "i_have_read_and_understood_the_privacy_policy": "Přečetl jsem si <a href='https://abi.ai/en/privacy'>Zásady ochrany osobních údajů</a> a souhlasím s nimi",
367
+ "i_have_read_and_agreed_to_the_terms_conditions": "Přečetl jsem si a souhlasím s <a href='https://abi.ai/cs/terms-of-use'>Pravidly a podmínkami</a>",
368
+ "i_have_read_and_understood_the_privacy_policy": "Přečetl jsem si <a href='https://abi.ai/cs/privacy'>Zásady ochrany osobních údajů</a> a souhlasím s nimi",
369
369
  "input.confirm_password": "Potvrdit heslo",
370
370
  "input.email": "E-mail",
371
371
  "input.message": "Zpráva",
@@ -121,8 +121,8 @@
121
121
  "general.prescriptionRequest.question.placeholder": "Klicken Sie hier, um zu schreiben.",
122
122
  "general.prescriptionRequest.question.title": "Bitte erläutern Sie in eigenen Worten Ihren Wunsch nach einem verschreibungspflichtigen Medikament.",
123
123
  "hcp_profile": "Profil des Gesundheitsdienstleisters",
124
- "i_have_read_and_agreed_to_the_terms_conditions": "Ich habe die <a href='https://abi.ai/en/terms-of-use'>Nutzungsbedingungen</a> gelesen und stimme zu.",
125
- "i_have_read_and_understood_the_privacy_policy": "Ich habe die <a href='https://abi.ai/en/privacy'>Datenschutzerklärung</a> gelesen und stimme zu.",
124
+ "i_have_read_and_agreed_to_the_terms_conditions": "Ich habe die <a href='https://abi.ai/de/terms-of-use'>Nutzungsbedingungen</a> gelesen und stimme zu.",
125
+ "i_have_read_and_understood_the_privacy_policy": "Ich habe die <a href='https://abi.ai/de/privacy'>Datenschutzerklärung</a> gelesen und stimme zu.",
126
126
  "input.confirm_password": "Passwort bestätigen",
127
127
  "input.email": "E-Mail",
128
128
  "input.message": "Nachricht",
@@ -164,8 +164,11 @@
164
164
  "match.one_minute": "Dies dauert normalerweise weniger als eine Minute, kann aber zu bestimmten Tageszeiten länger dauern.",
165
165
  "matching": "Wir suchen den passenden Gesundheitsdienstleistersn Fachmann für Sie",
166
166
  "matching.video.text_message": "Sie erhalten eine Textnachricht, wenn ein Arzt Sie zu einem Videotelefonat einlädt.",
167
+ "medical_advice.call_visana": "Aufgrund der Einschätzung des Arztes sollten Sie sich unter der folgenden Nummer an Medi24 wenden: \n \n</b> <a href=\"tel: +41 800 633 225\">+41 800 633 225</a> <b>",
167
168
  "medical_advice.emergency": "Notfall",
169
+ "medical_advice.emergency_visana": "Rufen Sie die Notrufnummer<b> <a href=\"tel:144\">144</a> </b>an oder gehen Sie sofort in eine Notaufnahme.",
168
170
  "medical_advice.no_visit_necessary": "Derzeit ist kein Arztbesuch erforderlich",
171
+ "medical_advice.no_visit_necessary_visana": "Kein Arztbesuch notwendig. Bitte befolgen Sie die Empfehlungen des Arztes.",
169
172
  "medical_advice.not_question": "Keine medizinische Frage",
170
173
  "medical_advice.speciality.alr": "Allergologie",
171
174
  "medical_advice.speciality.car": "Kardiologie",
@@ -198,6 +201,9 @@
198
201
  "medical_advice.speciality.vas": "Angiologie",
199
202
  "medical_advice.title": "Wie bewerten Sie die vorherige Frage?",
200
203
  "medical_advice.visit_doctor": "Einen Arzt besuchen (nicht dringend)",
204
+ "medical_advice.visit_doctor_next_seven_days_visana": "Besuchen Sie innerhalb der nächsten 7 Tagen einen {{specialty}} Arzt.",
205
+ "medical_advice.visit_doctor_next_six_hours_visana": "Besuchen Sie innerhalb der nächsten 6 Stunden einen {{specialty}} Arzt.",
206
+ "medical_advice.visit_doctor_next_twentyfour_hours_visana": "Besuchen Sie innerhalb der nächsten 24 Stunden einen {{specialty}} Arzt.",
201
207
  "midwife_title_female": "Frau {{name}}",
202
208
  "midwife_title_male": "Herr {{name}}",
203
209
  "modal.cancel": "Sind Sie sicher, dass Sie diese Beratung abbrechen möchten?",
@@ -238,6 +244,10 @@
238
244
  "rating.title": "Ihre Meinung zählt!",
239
245
  "rating.validation": "Bewertung ist erforderlich",
240
246
  "recommended_link.no_thanks": "Nein, danke",
247
+ "referral.button": "Dringlichkeit anzeigen",
248
+ "referral.level.confirmation": "Termin korrekt registriert",
249
+ "referral.level.register": "Diesen Termin registrieren",
250
+ "referral.level.title": "Aufgrund der Antwort des Arztes wurde Ihrem medizinischen Fall die folgende Dringlichkeitsstufe zugewiesen:",
241
251
  "responding": "antwortet auf Ihren Fall.",
242
252
  "reviewing": "überprüft Ihre Anfrage.",
243
253
  "sanofi.professional_assessment": "Professionelle Bewertung",
@@ -384,8 +384,26 @@
384
384
  "delivery.address.country": "Country",
385
385
  "delivery.address.country.placeholder": "Please select...",
386
386
  "delivery.address.description": "A prescription has been issued. Please provide your full address for delivery.",
387
- "delivery.address.district_city": "District/City",
388
- "delivery.address.district_city.placeholder": "Hong Kong, New Territories",
387
+ "delivery.address.district": "District",
388
+ "delivery.address.district.hk.central_and_western": "Hong Kong Island - Central and Western",
389
+ "delivery.address.district.hk.eastern": "Hong Kong Island - Eastern",
390
+ "delivery.address.district.hk.islands": "New Territories - Islands",
391
+ "delivery.address.district.hk.kowloon_city": "Kowloon - Kowloon City",
392
+ "delivery.address.district.hk.kwai_tsing": "New Territories - Kwai Tsing",
393
+ "delivery.address.district.hk.kwun_tong": "Kowloon - Kwun Tong",
394
+ "delivery.address.district.hk.north": "New Territories - North",
395
+ "delivery.address.district.hk.sai_kung": "New Territories - Sai Kung",
396
+ "delivery.address.district.hk.sha_tin": "New Territories - Sha Tin",
397
+ "delivery.address.district.hk.sham_shui_po": "Kowloon - Sham Shui Po",
398
+ "delivery.address.district.hk.southern": "Hong Kong Island - Southern",
399
+ "delivery.address.district.hk.tai_po": "New Territories - Tai Po",
400
+ "delivery.address.district.hk.tsuen_wan": "New Territories - Tsuen Wan",
401
+ "delivery.address.district.hk.tuen_mun": "New Territories - Tuen Mun",
402
+ "delivery.address.district.hk.wan_chai": "Hong Kong Island - Wan Chai",
403
+ "delivery.address.district.hk.wong_tai_sin": "Kowloon - Wong Tai Sin",
404
+ "delivery.address.district.hk.yau_tsim_mong": "Kowloon - Yau Tsim Mong",
405
+ "delivery.address.district.hk.yuen_long": "New Territories - Yuen Long",
406
+ "delivery.address.district.placeholder": "Please select...",
389
407
  "delivery.address.mobile": "Mobile number",
390
408
  "delivery.address.number_and_floor": "House or apartment number and floor",
391
409
  "delivery.address.number_and_floor.placeholder": "nº 46, 15/F",
@@ -402,6 +420,13 @@
402
420
  "download.summary_getting_ready": "The summary is getting ready.",
403
421
  "download.usually_takes": "This usually takes less than 1 min.",
404
422
  "error.address": "There is a problem with your address. Please check it and try again.",
423
+ "error.camera_microphone.browser.chrome": "1. Click the lock icon in the address bar (next to the URL).\n2. Select Site settings.\n3. Set Microphone and Camera to \"Allow\".\n4. Refresh the page if needed.",
424
+ "error.camera_microphone.browser.edge": "1. Click the lock icon in the address bar.\n2. Select Permissions for this site.\n3. Set Microphone and Camera to \"Allow\".\n4. Refresh the page if needed.",
425
+ "error.camera_microphone.browser.firefox": "1. Click the camera or microphone icon in the address bar.\n2. Click \"Retry Permissions\" or manually allow access in settings.\n3. Refresh the page if required.",
426
+ "error.camera_microphone.browser.safari": "1. Click Safari in the top menu bar > Settings for This Website.\n2. Change Camera and Microphone to \"Allow\".\n3. Refresh the page if required.",
427
+ "error.camera_microphone.client_app": "Please check your permissions settings. Alternatively, you may join the call with the following link: {{url}}",
428
+ "error.camera_microphone.no_camera_no_microphone": "Error: Please enable your camera and your microphone to join the call.",
429
+ "error.camera_microphone.to_enable": "To enable:",
405
430
  "error.case_already_open": "You already have a case open in another location. Please complete the case there first.",
406
431
  "error.case_type_already_open": "You already have an open {{caseType}} case.",
407
432
  "error.something_went_wrong": "Something went wrong, please try again later",
@@ -522,7 +547,7 @@
522
547
  "input.message": "Message",
523
548
  "input.password": "Password",
524
549
  "input.subject": "Subject",
525
- "inputs.address.label": "Address",
550
+ "inputs.address.label": "Home Address",
526
551
  "inputs.address.placeholder": "Please add here...",
527
552
  "inputs.age.label": "Age",
528
553
  "inputs.city.label": "City",
@@ -684,11 +709,11 @@
684
709
  "match.one_minute": "This usually takes less than 1 minute but it may take longer at certain times of the day.",
685
710
  "matching": "Matching you with the right healthcare professional",
686
711
  "matching.video.text_message": "You will receive a text message when a doctor invites you to join a videocall.",
687
- "medical_advice.call_visana": "Call a Medical Helpline",
712
+ "medical_advice.call_visana": "Based on the doctor’s assessment, you should contact Medi24 on the following number: \n \n</b> <a href=\"tel: +41 800 633 225\">+41 800 633 225</a> <b>",
688
713
  "medical_advice.emergency": "Emergency",
689
- "medical_advice.emergency_visana": "Emergency",
714
+ "medical_advice.emergency_visana": "Call the emergency number<b> <a href=\"tel:144\">144</a> </b>or go immediately to an emergency room.",
690
715
  "medical_advice.no_visit_necessary": "No visit needed for the moment",
691
- "medical_advice.no_visit_necessary_visana": "No visit necessary now",
716
+ "medical_advice.no_visit_necessary_visana": "No medical visit necessary. Please follow the recommendations provided by the doctor.",
692
717
  "medical_advice.not_question": "Not a health question",
693
718
  "medical_advice.speciality.alr": "Allergology",
694
719
  "medical_advice.speciality.car": "Cardiology",
@@ -716,16 +741,14 @@
716
741
  "medical_advice.speciality.rhb": "Physical medicine and rehabilitation",
717
742
  "medical_advice.speciality.rhu": "Rheumatology",
718
743
  "medical_advice.speciality.title": "What is the medical specialty related to the previous question?",
719
- "medical_advice.speciality.title_visana": "For the visit to a doctor, what medical speciality do you recommend?",
720
744
  "medical_advice.speciality.trm": "Tropical medicine",
721
745
  "medical_advice.speciality.uro": "Urology",
722
746
  "medical_advice.speciality.vas": "Angiology",
723
747
  "medical_advice.title": "What is your evaluation of the previous question?",
724
- "medical_advice.title_visana": "Based on the available information, what is your recommendation for this case?",
725
748
  "medical_advice.visit_doctor": "Visit a doctor (not urgent)",
726
- "medical_advice.visit_doctor_next_seven_days_visana": "Visit a doctor within the next 7 days",
727
- "medical_advice.visit_doctor_next_six_hours_visana": "Visit a doctor within the next 6 hours",
728
- "medical_advice.visit_doctor_next_twentyfour_hours_visana": "Visit a doctor within the next 24 hours",
749
+ "medical_advice.visit_doctor_next_seven_days_visana": "Visit a doctor {{specialty}} within the next 7 days.",
750
+ "medical_advice.visit_doctor_next_six_hours_visana": "Visit a doctor {{specialty}} within the next 6 hours.",
751
+ "medical_advice.visit_doctor_next_twentyfour_hours_visana": "Visit a doctor {{specialty}} within the next 24 hours.",
729
752
  "midwife_title_female": "Ms. {{name}}",
730
753
  "midwife_title_male": "Mr. {{name}}",
731
754
  "modal.cancel": "Are you sure you want to cancel this consultation?",
@@ -807,6 +830,10 @@
807
830
  "rating.title": "Your opinion matters!",
808
831
  "rating.validation": "Rating is required",
809
832
  "recommended_link.no_thanks": "No Thanks",
833
+ "referral.button": "View Urgency",
834
+ "referral.level.confirmation": "Appointment registered correctly",
835
+ "referral.level.register": "Register this appointment",
836
+ "referral.level.title": "Based on the doctor’s answer, your medical case has been assigned the following level of urgency:",
810
837
  "reminder_set": "Reminder set.",
811
838
  "responding": "is responding to your case.",
812
839
  "reviewing": "is reviewing your request.",
@@ -896,7 +923,7 @@
896
923
  "switch.no_prescription": "(no prescription available)",
897
924
  "switch.prescription_video": "<strong>{{conditionSymptoms}}</strong> may require a prescription, which can only be provided after a video consultation.",
898
925
  "switch.to_video.button": "Start a video consultation",
899
- "switch.variable_video": "For <strong>{{conditionSymptoms}}</strong> , a video consultation may be necessary. Switching to video ensures you get the right care.",
926
+ "switch.variable_video": "For <strong>{{conditionSymptoms}}</strong>, a video consultation may be necessary. Switching to video ensures you get the right care.",
900
927
  "text_message.case": "Once our doctor has responded, you will receive a text message with a link to their response. Please enter your mobile number below.",
901
928
  "text_message.case.enfa": "Once our nurse has responded, you will receive a text message with a link to their response. Please enter your mobile number below.",
902
929
  "text_message.case.enfa_test": "Once our nurse has responded, you will receive a text message with a link to their response. Please enter your mobile number below.",
@@ -1,12 +1,20 @@
1
1
  {
2
+ "choice.all": "All",
2
3
  "choice.always": "Always",
3
4
  "choice.doxycycline": "Doxycycline",
5
+ "choice.frontline": "Front line",
4
6
  "choice.lariam": "Mefloquine (Lariam)",
7
+ "choice.less_month": "Less than a month ago.",
5
8
  "choice.malarone": "Atovaquone/proguanil (Malarone)",
9
+ "choice.middlehead": "Middle head (center)",
10
+ "choice.middlehead2": "Middle head (front to back)",
11
+ "choice.more_six_months": "More than 6 months.",
12
+ "choice.multiplegaps": "Multiple Gaps",
6
13
  "choice.never": "Never",
7
14
  "choice.no": "No",
8
15
  "choice.not_understand_not_agree": "I do not understand or do not agree",
9
16
  "choice.often": "Often",
17
+ "choice.one_six_months": "1-6 months.",
10
18
  "choice.rarely": "Rarely",
11
19
  "choice.sometimes": "Sometimes",
12
20
  "choice.understand_agree": "I understand and agree",
@@ -46,11 +54,12 @@
46
54
  "indication.title.birthcontrolpill": "Birth Control Pill",
47
55
  "indication.title.chlamydia": "Chlamydia",
48
56
  "indication.title.cough_and_bronchitis": "Cough and Bronchitis",
49
- "indication.title.cystitis": "Cystitis",
57
+ "indication.title.cystitis": "Female UTIs",
50
58
  "indication.title.depression": "Depression",
51
59
  "indication.title.dry_eyes": "Dry Eyes",
52
60
  "indication.title.eczema": "Eczema",
53
61
  "indication.title.fungal_infections": "Fungal Infections",
62
+ "indication.title.hair_loss": "Male Hair Loss",
54
63
  "indication.title.hypothyroidism": "Hypothyroidism (Refill)",
55
64
  "indication.title.MalariaTablets": "Malaria Tablets",
56
65
  "indication.title.menopause_hrt": "Menopause (HRT)",
@@ -379,6 +388,23 @@
379
388
  "survey.fungal_infections.5.title": "Please contact your GP if any of these occur:",
380
389
  "survey.fungal_infections.6.description": "You confirm that you have answered all the above questions accurately and truthfully. \n\nYou acknowledge that providing incorrect or incomplete information can be hazardous to your health. \n\nYou agree to read the patient information leaflet supplied with your medication. \n\nYou will contact a doctor or pharmacist if any side effects bother you or do not go away.",
381
390
  "survey.fungal_infections.6.title": "Please read carefully:",
391
+ "survey.hairloss.1.title": "Please select the pattern of hair loss that most closely matches your hair loss from the options below.",
392
+ "survey.hairloss.10.title": "Please list any and all medications you are currently taking.\nIf none, skip to the next question.",
393
+ "survey.hairloss.11.description": "If so, please specify the name of the medication. If not, skip to the next question.",
394
+ "survey.hairloss.11.title": "Do you have any known allergy or intolerance to any medication?",
395
+ "survey.hairloss.12.description": "You confirm that you have answered all the above questions accurately and truthfully. \nYou acknowledge that providing incorrect or incomplete information can be hazardous to your health. \nYou agree to read the patient information leaflet supplied with your medication. \nYou will contact a doctor or pharmacist if any side effects bother you or do not go away. \nYou will visit a doctor urgently if you experience any mood changes or seizures.",
396
+ "survey.hairloss.12.title": "Do you agree to the following?",
397
+ "survey.hairloss.2.title": "How long have you been affected by hair loss?",
398
+ "survey.hairloss.3.description": "If your hair loss occurred suddenly please give more details (e.g. was there are sudden illness or incident?)",
399
+ "survey.hairloss.3.title": "Did your hair loss begin suddenly or gradually?",
400
+ "survey.hairloss.4.title": "Do you have any itchy or rough or scaly patches on your scalp?",
401
+ "survey.hairloss.5.title": "Has your hair loss affected any other body parts? (e.g. eyebrows, genital or underarm areas)",
402
+ "survey.hairloss.6.description": "Psoriasis\nRheumatoid Arthritis\nSystemic Lupus Erythematosus (SLE or Lupus)\nAutoimmune Disease\nOther connective tissue illnesses",
403
+ "survey.hairloss.6.title": "Do you have any of the following medical conditions?",
404
+ "survey.hairloss.7.title": "Do you smoke?",
405
+ "survey.hairloss.8.title": "Does anyone in your family have male pattern baldness? This can be on either your mother’s or father's side.",
406
+ "survey.hairloss.9.description": "If so, please specify duration. If not, skip to the next question.",
407
+ "survey.hairloss.9.title": "Have you ever taken or are you currently taking Finasteride, Proscar or Profal?",
382
408
  "survey.hypothyroidism.1.title": "Are you currenly taking medication for hypothyroidism?",
383
409
  "survey.hypothyroidism.10.title": "Have you had a follow-up with your GP or prescribing healthcare professional in the past six months?",
384
410
  "survey.hypothyroidism.2.title": "What is the exact name and dosage of the medication you were prescribed?",
@@ -371,8 +371,6 @@
371
371
  "delivery.address.country": "País",
372
372
  "delivery.address.country.placeholder": "Por favor, selecciona...",
373
373
  "delivery.address.description": "Se ha emitido una receta médica. Por favor, indica tu dirección completa para la entrega.",
374
- "delivery.address.district_city": "Distrito/Ciudad",
375
- "delivery.address.district_city.placeholder": "Hong Kong, Nuevos Territorios",
376
374
  "delivery.address.mobile": "Número de teléfono",
377
375
  "delivery.address.number_and_floor": "Número y piso de la casa o apartamento",
378
376
  "delivery.address.number_and_floor.placeholder": "nº 46, 15/F",
@@ -634,11 +632,8 @@
634
632
  "match.one_minute": "Esto suele tardar menos de 1 minuto, pero puede tardar más en determinadas horas del día.",
635
633
  "matching": "Buscando el médico adecuado",
636
634
  "matching.video.text_message": "Un médico te contactará en breve.",
637
- "medical_advice.call_visana": "Llama a un teléfono de asistencia médica",
638
635
  "medical_advice.emergency": "Emergencia ",
639
- "medical_advice.emergency_visana": "Emergencia ",
640
636
  "medical_advice.no_visit_necessary": "No es necesaria una visita por el momento",
641
- "medical_advice.no_visit_necessary_visana": "Ahora no es necesaria una visita",
642
637
  "medical_advice.not_question": "No es una pregunta de salud",
643
638
  "medical_advice.speciality.alr": "Alergología",
644
639
  "medical_advice.speciality.car": "Cardiología",
@@ -666,16 +661,11 @@
666
661
  "medical_advice.speciality.rhb": "Medicina física y rehabilitación",
667
662
  "medical_advice.speciality.rhu": "Reumatología",
668
663
  "medical_advice.speciality.title": "¿Cuál es la especialidad médica relacionada con la pregunta anterior?",
669
- "medical_advice.speciality.title_visana": "Para la visita al médico, ¿qué especialidad médica recomiendas?",
670
664
  "medical_advice.speciality.trm": "Medicina tropical",
671
665
  "medical_advice.speciality.uro": "Urología",
672
666
  "medical_advice.speciality.vas": "Angiología",
673
667
  "medical_advice.title": "¿Cómo valoras la pregunta anterior?",
674
- "medical_advice.title_visana": "Basándote en la información disponible, ¿cuál es tu recomendación para este caso?",
675
668
  "medical_advice.visit_doctor": "Visitar a un médico (no urgente)",
676
- "medical_advice.visit_doctor_next_seven_days_visana": "Visitar a un médico en los próximos 7 días",
677
- "medical_advice.visit_doctor_next_six_hours_visana": "Visita a un médico en las próximas 6 horas",
678
- "medical_advice.visit_doctor_next_twentyfour_hours_visana": "Visita a un médico en las próximas 24 horas",
679
669
  "midwife_title_female": "Sra. {{name}}",
680
670
  "midwife_title_male": "Sr. {{name}}",
681
671
  "modal.cancel": "¿Estás seguro de que deseas cancelar esta consulta?",
@@ -371,8 +371,6 @@
371
371
  "delivery.address.country": "País",
372
372
  "delivery.address.country.placeholder": "Por favor, selecciona...",
373
373
  "delivery.address.description": "Se ha emitido una receta médica. Por favor, indica tu dirección completa para la entrega.",
374
- "delivery.address.district_city": "Distrito/Ciudad",
375
- "delivery.address.district_city.placeholder": "Hong Kong, Nuevos Territorios",
376
374
  "delivery.address.mobile": "Número de teléfono",
377
375
  "delivery.address.number_and_floor": "Número y piso de la casa o apartamento",
378
376
  "delivery.address.number_and_floor.placeholder": "nº 46, 15/F",
@@ -634,11 +632,11 @@
634
632
  "match.one_minute": "Esto suele tardar menos de 1 minuto, pero puede tardar más en determinadas horas del día.",
635
633
  "matching": "Buscando el médico adecuado",
636
634
  "matching.video.text_message": "Un médico te contactará en breve.",
637
- "medical_advice.call_visana": "Llama a un teléfono de asistencia médica",
635
+ "medical_advice.call_visana": "En base a la evaluación del médico, deberías contactarte con Medi24 al siguiente número:\n \n</b> <a href=\"tel: +41 800 633 225\">+41 800 633 225</a> <b>",
638
636
  "medical_advice.emergency": "Emergencia ",
639
- "medical_advice.emergency_visana": "Emergencia ",
637
+ "medical_advice.emergency_visana": "Llama al número de emergencia<b> <a href=\"tel:144\">144</a> </b>o acude inmediatamente a un servicio de emergencias. ",
640
638
  "medical_advice.no_visit_necessary": "No es necesaria una visita por el momento",
641
- "medical_advice.no_visit_necessary_visana": "Ahora no es necesaria una visita",
639
+ "medical_advice.no_visit_necessary_visana": "No es necesaria una visita al médico. Por favor, sigue las recomendaciones que te ha dado el doctor. ",
642
640
  "medical_advice.not_question": "No es una pregunta de salud",
643
641
  "medical_advice.speciality.alr": "Alergología",
644
642
  "medical_advice.speciality.car": "Cardiología",
@@ -666,16 +664,14 @@
666
664
  "medical_advice.speciality.rhb": "Medicina física y rehabilitación",
667
665
  "medical_advice.speciality.rhu": "Reumatología",
668
666
  "medical_advice.speciality.title": "¿Cuál es la especialidad médica relacionada con la pregunta anterior?",
669
- "medical_advice.speciality.title_visana": "Para la visita al médico, ¿qué especialidad médica recomiendas?",
670
667
  "medical_advice.speciality.trm": "Medicina tropical",
671
668
  "medical_advice.speciality.uro": "Urología",
672
669
  "medical_advice.speciality.vas": "Angiología",
673
670
  "medical_advice.title": "¿Cómo valoras la pregunta anterior?",
674
- "medical_advice.title_visana": "Basándote en la información disponible, ¿cuál es tu recomendación para este caso?",
675
671
  "medical_advice.visit_doctor": "Visitar a un médico (no urgente)",
676
- "medical_advice.visit_doctor_next_seven_days_visana": "Visitar a un médico en los próximos 7 días",
677
- "medical_advice.visit_doctor_next_six_hours_visana": "Visita a un médico en las próximas 6 horas",
678
- "medical_advice.visit_doctor_next_twentyfour_hours_visana": "Visita a un médico en las próximas 24 horas",
672
+ "medical_advice.visit_doctor_next_seven_days_visana": "Visita a un doctor en {{specialty}} dentro de los próximos 7 días.",
673
+ "medical_advice.visit_doctor_next_six_hours_visana": "En base a la respuesta del médico, se le ha asignado el siguiente nivel de urgencia a tu caso médico: \n \nVisita a un doctor en {{specialty}} dentro de las próximas 6 horas.",
674
+ "medical_advice.visit_doctor_next_twentyfour_hours_visana": "En base a la respuesta del médico, se le ha asignado el siguiente nivel de urgencia a tu caso médico:\n\nVisita a un doctor en {{specialty}} dentro de las próximas 24 horas.\n",
679
675
  "midwife_title_female": "Sra. {{name}}",
680
676
  "midwife_title_male": "Sr. {{name}}",
681
677
  "modal.cancel": "¿Estás seguro de que deseas cancelar esta consulta?",
@@ -722,6 +718,10 @@
722
718
  "rating.description": "Por favor, valora tu consulta antes de descargar el resumen.",
723
719
  "rating.description.download": "Por favor, valora tu consulta antes de descargar el resumen.",
724
720
  "recommended_link.no_thanks": "No Gracias",
721
+ "referral.button": "Ver urgencia",
722
+ "referral.level.confirmation": "Cita registrada correctamente",
723
+ "referral.level.register": "Registrar esta cita",
724
+ "referral.level.title": "En base a la respuesta del médico, se le ha asignado el siguiente nivel de urgencia a tu caso médico:",
725
725
  "reminder_set": "Recordatorio programado.",
726
726
  "responding": "está respondiendo tu caso.",
727
727
  "reviewing": "está revisando tu solicitud.",
@@ -310,8 +310,6 @@
310
310
  "delivery.address.country": "Pays",
311
311
  "delivery.address.country.placeholder": "Veuillez sélectionner...",
312
312
  "delivery.address.description": "Une ordonnance a été émise. Veuillez fournir votre adresse complète pour la livraison.",
313
- "delivery.address.district_city": "District/Ville",
314
- "delivery.address.district_city.placeholder": "Hong Kong, Nouveaux Territoires",
315
313
  "delivery.address.mobile": "Numéro de portable",
316
314
  "delivery.address.number_and_floor": "Numéro de la maison ou de l'appartement et étage",
317
315
  "delivery.address.number_and_floor.placeholder": "nº 46, 15/F",
@@ -440,8 +438,11 @@
440
438
  "match.one_minute": "Cela prend généralement moins d'une minute mais cela peut prendre plus de temps à certains moments de la journée.",
441
439
  "matching": "Vous mettre en relation avec le bon professionnel de santé",
442
440
  "matching.video.text_message": "Vous recevrez un SMS lorsqu'un médecin vous invitera à participer à un appel vidéo.",
441
+ "medical_advice.call_visana": "Sur la base de l’évaluation du médecin, vous devriez contacter Medi24 au numéro suivant: \n \n</b> <a href=\"tel: +41 800 633 225\">+41 800 633 225</a> <b>",
443
442
  "medical_advice.emergency": "Urgence",
443
+ "medical_advice.emergency_visana": "Appelez le numéro d'urgence<b> <a href=\"tel:144\">144</a> </b>ou rendez-vous immédiatement aux urgences.",
444
444
  "medical_advice.no_visit_necessary": "Aucune visite nécessaire pour le moment",
445
+ "medical_advice.no_visit_necessary_visana": "Aucune visite médicale n'est nécessaire. Veuillez suivre les recommandations du médecin.",
445
446
  "medical_advice.not_question": "Ce n'est pas une question de santé",
446
447
  "medical_advice.speciality.alr": "Allergologie",
447
448
  "medical_advice.speciality.car": "Cardiologie",
@@ -474,6 +475,9 @@
474
475
  "medical_advice.speciality.vas": "Angiologie",
475
476
  "medical_advice.title": "Quelle est votre évaluation de la question précédente ?",
476
477
  "medical_advice.visit_doctor": "Rendez-vous chez le médecin (pas urgent)",
478
+ "medical_advice.visit_doctor_next_seven_days_visana": "Consultez un médecin {{specialty}} dans les 7 prochains jours.",
479
+ "medical_advice.visit_doctor_next_six_hours_visana": "Consultez un médecin {{specialty}} dans les 6 prochaines heures.",
480
+ "medical_advice.visit_doctor_next_twentyfour_hours_visana": "Consultez un médecin {{specialty}} dans les prochaines 24 heures.",
477
481
  "midwife_title_female": "Mme {{name}}",
478
482
  "midwife_title_male": "M. {{name}}",
479
483
  "modal.cancel": "Êtes-vous sûr de vouloir annuler cette consultation ?",
@@ -517,6 +521,10 @@
517
521
  "rating.title": "Votre avis compte !",
518
522
  "rating.validation": "L'évaluation est requise",
519
523
  "recommended_link.no_thanks": "Non merci",
524
+ "referral.button": "Afficher l’urgence",
525
+ "referral.level.confirmation": "Le rendez-vous a bien été enregistré",
526
+ "referral.level.register": "Enregistrer ce rendez-vous",
527
+ "referral.level.title": "Sur la base de la réponse du médecin, votre cas médical est passé au niveau d’urgence suivant:",
520
528
  "responding": "répond à votre cas.",
521
529
  "reviewing": "examine votre demande.",
522
530
  "reviewing.video": "examine votre demande.\nVous verrez bientôt un bouton pour rejoindre l'appel vidéo.",
@@ -358,8 +358,8 @@
358
358
  "general.prescriptionRequest.question.hint": "Ezzel segít az orvosnak, hogy jobban megértse a korábbi kérdésekre adott válaszait.",
359
359
  "general.prescriptionRequest.question.placeholder": "Kattintson ide az íráshoz.",
360
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>",
361
+ "i_have_read_and_agreed_to_the_terms_conditions": "Elolvastam és beleegyezem a <a href='https://abi.ai/hu/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/hu/privacy'>Privacy Policy</a>",
363
363
  "input.confirm_password": "Jelszó megerősítése",
364
364
  "input.email": "Email",
365
365
  "input.message": "Üzenet",
@@ -121,8 +121,8 @@
121
121
  "general.prescriptionRequest.question.placeholder": "Clicca qui per scrivere.",
122
122
  "general.prescriptionRequest.question.title": "Con parole tue, spiega al medico la ragione per cui hai bisogno della ricetta medica.",
123
123
  "hcp_profile": "Profilo del professionista sanitario",
124
- "i_have_read_and_agreed_to_the_terms_conditions": "Ho letto e acconsento ai Termini e Condizioni",
125
- "i_have_read_and_understood_the_privacy_policy": "Ho letto e acconsento alla <a href='https://abi.ai/en/privacy'>Informativa sulla privacy</a>",
124
+ "i_have_read_and_agreed_to_the_terms_conditions": "Ho letto e acconsento ai <a href='https://abi.ai/it/terms-of-use'>Termini e Condizioni</a>",
125
+ "i_have_read_and_understood_the_privacy_policy": "Ho letto e acconsento alla <a href='https://abi.ai/it/privacy'>Informativa sulla privacy</a>",
126
126
  "input.confirm_password": "Conferma password",
127
127
  "input.email": "E-mail",
128
128
  "input.message": "Messaggio",
@@ -164,8 +164,11 @@
164
164
  "match.one_minute": "Di solito richiede meno di 1 minuto, ma potrebbe richiedere più tempo in alcuni momenti della giornata.",
165
165
  "matching": "Ti stiamo abbinando al professionista sanitario giusto",
166
166
  "matching.video.text_message": "Riceverai un messaggio di testo quando un medico ti inviterà a partecipare a una videochiamata.",
167
+ "medical_advice.call_visana": "Sulla base della valutazione del medico, è necessario contattare Medi24 al seguente numero: \n \n</b> <a href=\"tel: +41 800 633 225\">+41 800 633 225</a> <b>",
167
168
  "medical_advice.emergency": "Emergenza",
169
+ "medical_advice.emergency_visana": "Chiamare il numero di emergenza<b> <a href=\"tel:144\">144</a> </b>o andare subito al pronto soccorso.",
168
170
  "medical_advice.no_visit_necessary": "Nessuna visita necessaria per il momento",
171
+ "medical_advice.no_visit_necessary_visana": "Nessuna visita medica necessaria. Si prega di seguire le raccomandazioni fornite dal medico.",
169
172
  "medical_advice.not_question": "Non è una domanda sulla salute",
170
173
  "medical_advice.speciality.alr": "Allergologia",
171
174
  "medical_advice.speciality.car": "Cardiologia",
@@ -198,6 +201,9 @@
198
201
  "medical_advice.speciality.vas": "Angiologia",
199
202
  "medical_advice.title": "Qual è la tua valutazione della domanda precedente?",
200
203
  "medical_advice.visit_doctor": "Visita un medico (non urgente)",
204
+ "medical_advice.visit_doctor_next_seven_days_visana": "Visitare un medico {{specialty}} entro i prossimi 7 giorni.",
205
+ "medical_advice.visit_doctor_next_six_hours_visana": "Visitare un medico {{specialty}} entro le prossime 6 ore.",
206
+ "medical_advice.visit_doctor_next_twentyfour_hours_visana": "Visitare un medico {{specialty}} entro le prossime 24 ore.",
201
207
  "midwife_title_female": "Sig.ra {{name}}",
202
208
  "midwife_title_male": "Sig. {{name}}",
203
209
  "modal.cancel": "Sei sicuro di voler annullare questa consultazione?",
@@ -238,6 +244,10 @@
238
244
  "rating.title": "La tua opinione conta!",
239
245
  "rating.validation": "La valutazione è obbligatoria",
240
246
  "recommended_link.no_thanks": "No grazie",
247
+ "referral.button": "Vedi Urgenza",
248
+ "referral.level.confirmation": "Appuntamento registrato correttamente",
249
+ "referral.level.register": "Registra questo appuntamento",
250
+ "referral.level.title": "In base alla risposta del medico, al tuo caso medico è stato assegnato il seguente livello di urgenza:",
241
251
  "responding": "sta rispondendo al tuo caso.",
242
252
  "reviewing": "sta esaminando la tua richiesta.",
243
253
  "sanofi.professional_assessment": "Valutazione professionale",
@@ -357,8 +357,8 @@
357
357
  "general.prescriptionRequest.question.hint": "Pomoże to lekarzowi lepiej zrozumieć Twoje odpowiedzi na poprzednie pytania.",
358
358
  "general.prescriptionRequest.question.placeholder": "Kliknij tutaj, aby zacząć pisać.",
359
359
  "general.prescriptionRequest.question.title": "Wyjaśnij lekarzowi własnymi słowami, dlaczego potrzebujesz tej recepty.",
360
- "i_have_read_and_agreed_to_the_terms_conditions": "Akceptuję <a href='https://abi.ai/en/terms-of-use'>Regulamin</a> po jego wcześniejszym przeczytaniu",
361
- "i_have_read_and_understood_the_privacy_policy": "Akceptuję <a href='https://abi.ai/en/privacy'>Politykę prywatności</a> po jej wcześniejszym przeczytaniu",
360
+ "i_have_read_and_agreed_to_the_terms_conditions": "Akceptuję <a href='https://abi.ai/pl/terms-of-use'>Regulamin</a> po jego wcześniejszym przeczytaniu",
361
+ "i_have_read_and_understood_the_privacy_policy": "Akceptuję <a href='https://abi.ai/pl/privacy'>Politykę prywatności</a> po jej wcześniejszym przeczytaniu",
362
362
  "input.confirm_password": "Potwierdź hasło",
363
363
  "input.email": "Adres e-mail",
364
364
  "input.message": "Wiadomość",
@@ -364,8 +364,8 @@
364
364
  "general.prescriptionRequest.question.hint": "Acest lucru îl va ajuta pe medic să înțeleagă mai bine răspunsurile dvs. la întrebările precedente.",
365
365
  "general.prescriptionRequest.question.placeholder": "Faceți clic aici pentru a scrie.",
366
366
  "general.prescriptionRequest.question.title": "Explicați medicului, cu propriile dvs. cuvinte, de ce aveți nevoie de această prescripție medicală.",
367
- "i_have_read_and_agreed_to_the_terms_conditions": "Am citit și sunt de acord cu <a href='https://abi.ai/en/terms-of-use'>Termenii și condițiile</a>",
368
- "i_have_read_and_understood_the_privacy_policy": "Am citit și sunt de acord cu <a href='https://abi.ai/en/privacy'>Politica de confidențialitate</a>",
367
+ "i_have_read_and_agreed_to_the_terms_conditions": "Am citit și sunt de acord cu <a href='https://abi.ai/ro/terms-of-use'>Termenii și condițiile</a>",
368
+ "i_have_read_and_understood_the_privacy_policy": "Am citit și sunt de acord cu <a href='https://abi.ai/ro/privacy'>Politica de confidențialitate</a>",
369
369
  "input.confirm_password": "Confirmare parolă",
370
370
  "input.email": "E-mail",
371
371
  "input.message": "Mesaj",
@@ -301,8 +301,6 @@
301
301
  "delivery.address.country": "Страна",
302
302
  "delivery.address.country.placeholder": "Пожалуйста, выберите...",
303
303
  "delivery.address.description": "Был выписан рецепт. Пожалуйста, укажите свой полный адрес для доставки.",
304
- "delivery.address.district_city": "Район/город",
305
- "delivery.address.district_city.placeholder": "Гонконг, Новые территории",
306
304
  "delivery.address.mobile": "Номер мобильного телефона",
307
305
  "delivery.address.number_and_floor": "Номер дома или квартиры и этаж",
308
306
  "delivery.address.number_and_floor.placeholder": "nº 46, 15/F",
@@ -499,6 +497,10 @@
499
497
  "rating.description": "Пожалуйста, оцените Вашу консультацию перед загрузкой краткой информации",
500
498
  "rating.description.download": "Пожалуйста, оцените Вашу консультацию перед загрузкой краткой информации.",
501
499
  "recommended_link.no_thanks": "Нет, Спасибо.",
500
+ "referral.button": "Посмотреть срочность",
501
+ "referral.level.confirmation": "Прием зарегистрирован корректно",
502
+ "referral.level.register": "Зарегистрируйте этот прием",
503
+ "referral.level.title": "На основании ответа врача Вашему медицинскому случаю присвоен следующий уровень срочности:",
502
504
  "responding": "реагирует на ваше дело.",
503
505
  "reviewing": "рассматривает ваш запрос.",
504
506
  "reviewing.video": "рассматривает ваш запрос. \nСкоро вы увидите кнопку для присоединения к видеозвонку.",
@@ -364,7 +364,7 @@
364
364
  "general.prescriptionRequest.question.hint": "To pomôže lekárovi lepšie pochopiť vaše odpovede na predchádzajúce otázky.",
365
365
  "general.prescriptionRequest.question.placeholder": "Kliknutím sem napíšte.",
366
366
  "general.prescriptionRequest.question.title": "Vlastnými slovami vysvetlite lekárovi, prečo potrebujete tento predpis.",
367
- "i_have_read_and_agreed_to_the_terms_conditions": "Prečítal som si a súhlasím s <a href='https://abi.ai/en/terms-of-use'>Podmienkami a pravidlami</a>",
367
+ "i_have_read_and_agreed_to_the_terms_conditions": "Prečítal som si a súhlasím s <a href='https://abi.ai/sk/terms-of-use'>Podmienkami a pravidlami</a>",
368
368
  "i_have_read_and_understood_the_privacy_policy": "Prečítal som si a porozumel som <a href='https://abi.ai/sk/privacy'>Zásadám Ochrany Osobných Údajov</a>",
369
369
  "i_have_read_and_understood_the_privacy_policy.mj1": "Prečítal som si a porozumel som zásadám ochrany osobných údajov",
370
370
  "input.confirm_password": "Potvrdiť heslo",
@@ -407,11 +407,8 @@
407
407
  "match.one_minute": "Toto zvyčajne nezaberie viac ako 1 minútu.",
408
408
  "matching": "Spájame vás s tým najlepším zdravotným odborníkom",
409
409
  "matching.video.text_message": "Keď vás lekár pozve na videohovor, dostanete textovú správu.",
410
- "medical_advice.call_visana": "Zavolajte linku zdravotnej pomoci",
411
410
  "medical_advice.emergency": "Urgenca",
412
- "medical_advice.emergency_visana": "Pohotovosť",
413
411
  "medical_advice.no_visit_necessary": "V súčasnosti nie je potrebná žiadna návšteva",
414
- "medical_advice.no_visit_necessary_visana": "Teraz nie je potrebná žiadna návšteva",
415
412
  "medical_advice.not_question": "Nejde o zdravotnú otázku",
416
413
  "medical_advice.speciality.alr": "Alergológia",
417
414
  "medical_advice.speciality.car": "Kardiológia",
@@ -439,16 +436,11 @@
439
436
  "medical_advice.speciality.rhb": "Fyzioterapia a rehabilitácia",
440
437
  "medical_advice.speciality.rhu": "Reumatológia",
441
438
  "medical_advice.speciality.title": "O akú lekársku špecializáciu pri predchádzajúcej otázke ide?",
442
- "medical_advice.speciality.title_visana": "Pokiaľ ide o návštevu lekára, akú lekársku špecializáciu by ste odporučili?",
443
439
  "medical_advice.speciality.trm": "Tropická medicína",
444
440
  "medical_advice.speciality.uro": "Urológia",
445
441
  "medical_advice.speciality.vas": "Angiológia",
446
442
  "medical_advice.title": "Ako by ste hodnotili predchádzajúcu otázku?",
447
- "medical_advice.title_visana": "Čo by ste na základe dostupných informácií odporučili pre tento prípad?",
448
443
  "medical_advice.visit_doctor": "Návšteva lekára (nie naliehavá)",
449
- "medical_advice.visit_doctor_next_seven_days_visana": "Navštívte lekára v priebehu nasledujúcich 7 dní",
450
- "medical_advice.visit_doctor_next_six_hours_visana": "Navštívte lekára v priebehu nasledujúcich 6 hodín",
451
- "medical_advice.visit_doctor_next_twentyfour_hours_visana": "Navštívte lekára v priebehu nasledujúcich 24 hodín",
452
444
  "midwife_title_female": "Pani {{name}}",
453
445
  "midwife_title_male": "Pán {{name}}",
454
446
  "modal.cancel": "Skutočne si prajete zrušiť túto konzultáciu?",
@@ -42,8 +42,6 @@
42
42
  "delivery.address.country": "國家/地區",
43
43
  "delivery.address.country.placeholder": "請選擇…",
44
44
  "delivery.address.description": "處方已獲批核。請提供完整地址以便寄送處方藥物。",
45
- "delivery.address.district_city": "地區/城市",
46
- "delivery.address.district_city.placeholder": "香港新界",
47
45
  "delivery.address.mobile": "手機號碼",
48
46
  "delivery.address.number_and_floor": "單位號碼及樓層",
49
47
  "delivery.address.number_and_floor.placeholder": "15 樓 46 室",
@@ -171,11 +169,11 @@
171
169
  "match.one_minute": "這通常需時少於 1 分鐘,但在特定時間可能需時更長。",
172
170
  "matching": "正在為您配對合適的醫療專業人員",
173
171
  "matching.video.text_message": "在醫生邀請您加入視像通話時,您會收到短訊。",
174
- "medical_advice.call_visana": "致電醫療熱線",
172
+ "medical_advice.call_visana": "根據醫生的評估,您應利用以下號碼聯絡 Medi24:\n\n</b> <a href=\"tel: +41 800 633 225\">+41 800 633 225</a> <b>",
175
173
  "medical_advice.emergency": "緊急",
176
- "medical_advice.emergency_visana": "緊急",
174
+ "medical_advice.emergency_visana": "請致電緊急號碼:<b> <a href=\"tel:144\">144</a> </b>或立即前往急症室。",
177
175
  "medical_advice.no_visit_necessary": "目前無需醫生診症",
178
- "medical_advice.no_visit_necessary_visana": "現時無需醫生診症",
176
+ "medical_advice.no_visit_necessary_visana": "無需醫療診症。請跟從醫生提供的建議。",
179
177
  "medical_advice.not_question": "並非健康問題",
180
178
  "medical_advice.speciality.alr": "過敏學",
181
179
  "medical_advice.speciality.car": "心臟科",
@@ -203,16 +201,14 @@
203
201
  "medical_advice.speciality.rhb": "身體醫學與復康科",
204
202
  "medical_advice.speciality.rhu": "風濕病科",
205
203
  "medical_advice.speciality.title": "上個問題與哪個醫療專科相關?",
206
- "medical_advice.speciality.title_visana": "如要醫生診症,您會建議哪個醫療專科?",
207
204
  "medical_advice.speciality.trm": "熱帶醫學",
208
205
  "medical_advice.speciality.uro": "泌尿外科",
209
206
  "medical_advice.speciality.vas": "血管科",
210
207
  "medical_advice.title": "您對上個問題的評估是什麼?",
211
- "medical_advice.title_visana": "根據所獲的資料,您對此個案有什麼建議?",
212
208
  "medical_advice.visit_doctor": "醫生診症(非緊急)",
213
- "medical_advice.visit_doctor_next_seven_days_visana": "在 7 天內找醫生診症",
214
- "medical_advice.visit_doctor_next_six_hours_visana": "在 6 天內找醫生診症",
215
- "medical_advice.visit_doctor_next_twentyfour_hours_visana": "在 24 小時內找醫生診症",
209
+ "medical_advice.visit_doctor_next_seven_days_visana": "在 7 天內找醫生({{specialty}})診症。",
210
+ "medical_advice.visit_doctor_next_six_hours_visana": "根據醫生的回覆,您的醫療個案已分類為以下緊急級別:\n\n在 6 小時內找醫生({{specialty}})診症。",
211
+ "medical_advice.visit_doctor_next_twentyfour_hours_visana": "根據醫生的回覆,您的醫療個案已分類為以下緊急級別:\n\n在 24 小時內找醫生({{specialty}})診症。",
216
212
  "modal.cancel": "您確定想取消此諮詢嗎?",
217
213
  "modal.claimed_by_another_doctor": "此個案已由另一位醫生接手處理。",
218
214
  "modal.question_no_available": "抱歉,問題已不在存在。",
@@ -255,6 +251,10 @@
255
251
  "rating.description": "請在下載摘要前為您的諮詢評分",
256
252
  "rating.description.download": "請在下載摘要前為您的諮詢評分。",
257
253
  "recommended_link.no_thanks": "不用了,謝戲",
254
+ "referral.button": "查看緊急程度",
255
+ "referral.level.confirmation": "已正確登記預約",
256
+ "referral.level.register": "登記這次預約",
257
+ "referral.level.title": "根據醫生的回覆,您的醫療個案已分類為以下緊急級別:",
258
258
  "reminder_set": "已設定提醒。",
259
259
  "responding": "正在回覆您的個案。",
260
260
  "reviewing": "正在審核您的要求。",
@@ -301,8 +301,6 @@
301
301
  "delivery.address.country": "国家",
302
302
  "delivery.address.country.placeholder": "请选择...",
303
303
  "delivery.address.description": "处方已开具,请您提供完整地址以便配送药物。",
304
- "delivery.address.district_city": "街区/城市",
305
- "delivery.address.district_city.placeholder": "香港,新界",
306
304
  "delivery.address.mobile": "手机号码",
307
305
  "delivery.address.number_and_floor": "房号或公寓号和楼层",
308
306
  "delivery.address.number_and_floor.placeholder": "46号,15楼",
@@ -384,8 +382,8 @@
384
382
  "general.prescriptionRequest.question.hint": "这将帮助医生更好地理解您之前问题的答案",
385
383
  "general.prescriptionRequest.question.placeholder": "点击此次填写",
386
384
  "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>",
385
+ "i_have_read_and_agreed_to_the_terms_conditions": "我已阅读并同意<a href='https://abi.ai/zh-sg/terms-of-use'>条款与条件</a>",
386
+ "i_have_read_and_understood_the_privacy_policy": "我已阅读并同意<a href='https://abi.ai/zh-sg/privacy'>隐私政策</a>",
389
387
  "input.confirm_password": "确认密码",
390
388
  "input.email": "电子邮件",
391
389
  "input.message": "消息",
@@ -426,8 +424,11 @@
426
424
  "match.one_minute": "这通常不到1分钟,但在一天中的某些时间可能需要更长时间。",
427
425
  "matching": "正在为您匹配合适的医疗专业人员",
428
426
  "matching.video.text_message": "当医生邀请您加入视频通话时,您将收到一条短信通知。",
427
+ "medical_advice.call_visana": "根据医生的评估,您应该联系Medi24,电话号码如下:\n\n</b> <a href=\"\"tel: +41 800 633 225\"\">+41 800 633 225</a> <b>",
429
428
  "medical_advice.emergency": "紧急情况",
429
+ "medical_advice.emergency_visana": "拨打紧急电话<b> <a href=\"\"tel:144\"\">144</a> </b>或立即前往急诊室。",
430
430
  "medical_advice.no_visit_necessary": "目前不需要就诊",
431
+ "medical_advice.no_visit_necessary_visana": "不需要医疗就诊。请按照医生提供的建议行事。",
431
432
  "medical_advice.not_question": "不是健康相关问题",
432
433
  "medical_advice.speciality.alr": "变态反应",
433
434
  "medical_advice.speciality.car": "心脏科",
@@ -460,6 +461,9 @@
460
461
  "medical_advice.speciality.vas": "血管学",
461
462
  "medical_advice.title": "您对上一个问题的评价是什么?",
462
463
  "medical_advice.visit_doctor": "看医生(非紧急)",
464
+ "medical_advice.visit_doctor_next_seven_days_visana": "在接下来的7天内看医生({{specialty}})",
465
+ "medical_advice.visit_doctor_next_six_hours_visana": "根据医生的回答,您的医疗病例被分配了以下紧急程度:\n\n在接下来的6小时内看医生({{specialty}})。",
466
+ "medical_advice.visit_doctor_next_twentyfour_hours_visana": "根据医生的回答,您的医疗病例被分配了以下紧急程度:\n\n在接下来的24小时内看医生({{specialty}})",
463
467
  "midwife_title_female": "{{name}}女士",
464
468
  "midwife_title_male": "{{name}}先生",
465
469
  "modal.cancel": "您确定要取消此次问诊吗?",
@@ -499,6 +503,10 @@
499
503
  "rating.description": "请在下载问诊总结前评价您的问诊",
500
504
  "rating.description.download": "请在下载问诊总结前评价您的问诊",
501
505
  "recommended_link.no_thanks": "不,谢谢",
506
+ "referral.button": "查看紧急程度",
507
+ "referral.level.confirmation": "预约已成功",
508
+ "referral.level.register": "注册预约",
509
+ "referral.level.title": "根据医生的回答,您的医疗病例已被分配以下紧急程度:",
502
510
  "responding": "正在回复您的病例。",
503
511
  "reviewing": "正在审核您的请求。",
504
512
  "reviewing.video": "正在审核您的请求。 您很快将看到一个按钮以加入视频通话。",
@@ -372,8 +372,6 @@
372
372
  "delivery.address.country": "國家/地區",
373
373
  "delivery.address.country.placeholder": "請選擇…",
374
374
  "delivery.address.description": "處方簽已確認。請提供完整地址以便寄送處方藥物。",
375
- "delivery.address.district_city": "地區/縣市",
376
- "delivery.address.district_city.placeholder": "香港新界",
377
375
  "delivery.address.mobile": "手機號碼",
378
376
  "delivery.address.number_and_floor": "住宅號碼及樓層",
379
377
  "delivery.address.number_and_floor.placeholder": "15 樓 46 室",
@@ -662,11 +660,8 @@
662
660
  "match.one_minute": "這通常需要等待 1 分鐘,但在特定時間可能需要更長的時間。",
663
661
  "matching": "正在為您配對合適的醫療專業人員",
664
662
  "matching.video.text_message": "在醫師邀請您加入視訊通話時,您會收到訊息通知。",
665
- "medical_advice.call_visana": "撥打醫療熱線",
666
663
  "medical_advice.emergency": "緊急",
667
- "medical_advice.emergency_visana": "緊急",
668
664
  "medical_advice.no_visit_necessary": "目前無需醫生看診",
669
- "medical_advice.no_visit_necessary_visana": "現在無需醫生看診",
670
665
  "medical_advice.not_question": "並非健康問題",
671
666
  "medical_advice.speciality.alr": "過敏學",
672
667
  "medical_advice.speciality.car": "心臟科",
@@ -694,16 +689,11 @@
694
689
  "medical_advice.speciality.rhb": "身體醫學與復康科",
695
690
  "medical_advice.speciality.rhu": "風濕病科",
696
691
  "medical_advice.speciality.title": "上一個問題與哪個醫療專科相關?",
697
- "medical_advice.speciality.title_visana": "如需醫師看診,您會想看哪個醫療專科?",
698
692
  "medical_advice.speciality.trm": "熱帶醫學",
699
693
  "medical_advice.speciality.uro": "泌尿外科",
700
694
  "medical_advice.speciality.vas": "血管科",
701
695
  "medical_advice.title": "您對上個問題如何評估?",
702
- "medical_advice.title_visana": "根據所提供的資料,您對此個案有什麼建議?",
703
696
  "medical_advice.visit_doctor": "醫師診斷(非緊急)",
704
- "medical_advice.visit_doctor_next_seven_days_visana": "在 7 天內找醫師診斷",
705
- "medical_advice.visit_doctor_next_six_hours_visana": "在 6 天內找醫師診斷",
706
- "medical_advice.visit_doctor_next_twentyfour_hours_visana": "在 24 小時內找醫師診斷",
707
697
  "midwife_title_female": "{{name}}小姐",
708
698
  "midwife_title_male": "{{name}}先生",
709
699
  "modal.cancel": "您確定想取消此次諮詢嗎?",
@@ -87,7 +87,7 @@ var RatingScreen = function (_a) {
87
87
  var t = (0, useTranslation_1.useTranslation)().t;
88
88
  var theme = (0, useTheme_1.useTheme)();
89
89
  var styles = getStyles(theme);
90
- var _b = (0, useConsultation_1.useConsultation)(), rate = _b.rate, updateConsultation = _b.updateConsultation;
90
+ var _b = (0, useConsultation_1.useConsultation)(), rate = _b.rate, consultation = _b.consultation, updateConsultation = _b.updateConsultation;
91
91
  var _c = (0, react_1.useState)(false), loading = _c[0], setLoading = _c[1];
92
92
  var _d = react_1.default.useState(null), selectedRating = _d[0], setSelectedRating = _d[1];
93
93
  var _e = (0, react_1.useState)(false), showError = _e[0], setShowError = _e[1];
@@ -107,6 +107,7 @@ var RatingScreen = function (_a) {
107
107
  startShake();
108
108
  }, [showError]);
109
109
  var handleRate = function () { return __awaiter(void 0, void 0, void 0, function () {
110
+ var updatedConsultation;
110
111
  return __generator(this, function (_a) {
111
112
  switch (_a.label) {
112
113
  case 0:
@@ -120,9 +121,9 @@ var RatingScreen = function (_a) {
120
121
  setLoading(true);
121
122
  return [4 /*yield*/, rate(selectedRating)];
122
123
  case 2:
123
- _a.sent();
124
+ updatedConsultation = _a.sent();
125
+ onConsultationEnded === null || onConsultationEnded === void 0 ? void 0 : onConsultationEnded(updatedConsultation);
124
126
  updateConsultation(null);
125
- onConsultationEnded === null || onConsultationEnded === void 0 ? void 0 : onConsultationEnded(null);
126
127
  return [3 /*break*/, 4];
127
128
  case 3:
128
129
  setLoading(false);
@@ -132,8 +133,8 @@ var RatingScreen = function (_a) {
132
133
  });
133
134
  }); };
134
135
  var handleSkip = function () {
136
+ onConsultationEnded === null || onConsultationEnded === void 0 ? void 0 : onConsultationEnded(consultation);
135
137
  updateConsultation(null);
136
- onConsultationEnded === null || onConsultationEnded === void 0 ? void 0 : onConsultationEnded(null);
137
138
  };
138
139
  return (<ScreenWrapper_1.ScreenWrapper header={<ConsultationHeader_1.ConsultationHeader />} containerStyle={styles.container}>
139
140
  <react_native_1.View style={styles.innerContainer}>
@@ -1,7 +1,6 @@
1
1
  import { ConsultationResponse, CreateConsultationRequest } from '../../common/api/models/consultation';
2
- import { Consultation } from '../../common/types/consultation';
3
2
  import { HKDeliveryAddress } from '../../common/types/deliveryAddress';
4
3
  import { HangOutRequest } from './models/video';
5
4
  export declare const hangOutVideocall: (body: HangOutRequest) => Promise<ConsultationResponse>;
6
- export declare const updateDeliveryAddress: (consultationId: string, address: HKDeliveryAddress) => Promise<Consultation>;
5
+ export declare const updateDeliveryAddress: (consultationId: string, address: HKDeliveryAddress) => Promise<ConsultationResponse>;
7
6
  export declare const createVideoConsultation: (_: CreateConsultationRequest) => Promise<ConsultationResponse>;
@@ -13,7 +13,9 @@ var hangOutVideocall = function (body) {
13
13
  };
14
14
  exports.hangOutVideocall = hangOutVideocall;
15
15
  var updateDeliveryAddress = function (consultationId, address) {
16
- return axios_1.default.post("".concat(VIDEO_CONSULTATION_URL, "/").concat(consultationId).concat(DELIVERY_ADDRESS_URL), { address: address }).then(function (response) { return response === null || response === void 0 ? void 0 : response.data; });
16
+ return axios_1.default
17
+ .post("".concat(VIDEO_CONSULTATION_URL, "/").concat(consultationId).concat(DELIVERY_ADDRESS_URL), { address: address })
18
+ .then(function (response) { return response === null || response === void 0 ? void 0 : response.data; });
17
19
  };
18
20
  exports.updateDeliveryAddress = updateDeliveryAddress;
19
21
  var createVideoConsultation = function (body) {
@@ -89,6 +89,7 @@ var FormWrapper_1 = require("../../common/components/FormWrapper");
89
89
  var Header_1 = require("../../common/components/headers/Header");
90
90
  var Input_1 = __importDefault(require("../../common/components/Input"));
91
91
  var ScreenWrapper_1 = require("../../common/components/ScreenWrapper");
92
+ var Select_1 = __importDefault(require("../../common/components/Select"));
92
93
  var Text_1 = require("../../common/components/Text");
93
94
  var useConsultation_1 = require("../../common/hooks/useConsultation");
94
95
  var useTheme_1 = require("../../common/hooks/useTheme");
@@ -99,25 +100,54 @@ var video_1 = require("../api/video");
99
100
  var VideoConsultationIcon_1 = require("../icons/VideoConsultationIcon");
100
101
  var react_1 = __importStar(require("react"));
101
102
  var react_native_1 = require("react-native");
103
+ var DISTRICTS = [
104
+ 'central_and_western',
105
+ 'eastern',
106
+ 'southern',
107
+ 'wan_chai',
108
+ 'kowloon_city',
109
+ 'yau_tsim_mong',
110
+ 'sham_shui_po',
111
+ 'wong_tai_sin',
112
+ 'kwun_tong',
113
+ 'kwai_tsing',
114
+ 'tsuen_wan',
115
+ 'tuen_mun',
116
+ 'yuen_long',
117
+ 'north',
118
+ 'tai_po',
119
+ 'sha_tin',
120
+ 'sai_kung',
121
+ 'islands'
122
+ ];
102
123
  var DeliveryAddressScreen = function (_a) {
103
124
  var initialDeliveryAddress = _a.initialDeliveryAddress;
104
125
  var t = (0, useTranslation_1.useTranslation)().t;
105
126
  var theme = (0, useTheme_1.useTheme)();
106
127
  var styles = getStyles(theme);
107
- var _b = (0, useConsultation_1.useConsultation)(), consultation = _b.consultation, updateConsultation = _b.updateConsultation;
108
- var _c = (0, react_1.useState)(false), loading = _c[0], setLoading = _c[1];
109
- var _d = (0, react_1.useState)(false), error = _d[0], setError = _d[1];
128
+ var consultation = (0, useConsultation_1.useConsultation)().consultation;
129
+ var _b = (0, react_1.useState)(false), loading = _b[0], setLoading = _b[1];
130
+ var _c = (0, react_1.useState)(false), error = _c[0], setError = _c[1];
110
131
  var onSubmit = function (data) { return __awaiter(void 0, void 0, void 0, function () {
132
+ var e_1;
111
133
  return __generator(this, function (_a) {
112
- setError(false);
113
- setLoading(true);
114
- (0, video_1.updateDeliveryAddress)(consultation === null || consultation === void 0 ? void 0 : consultation.id, __assign(__assign({}, data), { country: t('country.hk') }))
115
- .then(function (res) {
116
- updateConsultation(res);
117
- })
118
- .catch(function () { return setError(true); })
119
- .finally(function () { return setLoading(false); });
120
- return [2 /*return*/];
134
+ switch (_a.label) {
135
+ case 0:
136
+ _a.trys.push([0, 2, , 3]);
137
+ setError(false);
138
+ setLoading(true);
139
+ return [4 /*yield*/, (0, video_1.updateDeliveryAddress)(consultation === null || consultation === void 0 ? void 0 : consultation.id, __assign(__assign({}, data), { country: t('country.hk') }))];
140
+ case 1:
141
+ _a.sent();
142
+ return [3 /*break*/, 3];
143
+ case 2:
144
+ e_1 = _a.sent();
145
+ console.error(e_1);
146
+ setError(true);
147
+ setLoading(false);
148
+ return [3 /*break*/, 3];
149
+ case 3: return [2 /*return*/];
150
+ }
121
151
  });
122
152
  }); };
123
153
  return (<ScreenWrapper_1.ScreenWrapper header={<Header_1.Header title={t('general.consultation.videoConsultation.title')} leftIcon={<VideoConsultationIcon_1.VideoConsultationIcon />}/>} containerStyle={styles.container}>
@@ -136,11 +166,14 @@ var DeliveryAddressScreen = function (_a) {
136
166
  onSuccess: onSubmit
137
167
  }} initialValues={initialDeliveryAddress} submitButton={<Button_1.Button submit loading={loading}>
138
168
  {t('button.confirm')}
139
- </Button_1.Button>}>
169
+ </Button_1.Button>} loadingForm={loading}>
140
170
  <Input_1.default id="house" label={t('delivery.address.number_and_floor')} placeholder={t('delivery.address.number_and_floor.placeholder')}/>
141
171
  <Input_1.default id="street" label={t('delivery.address.street')} placeholder={t('delivery.address.street.placeholder')}/>
142
172
  <Input_1.default id="building" label={t('delivery.address.building_name_number')} placeholder={t('delivery.address.building_name_number.placeholder')}/>
143
- <Input_1.default id="district" label={t('delivery.address.district_city')} placeholder={t('delivery.address.district_city.placeholder')}/>
173
+ <Select_1.default id="district" label={t('delivery.address.district')} placeholder={t('delivery.address.district.placeholder')} options={DISTRICTS.map(function (district) { return ({
174
+ label: t("delivery.address.district.hk.".concat(district)),
175
+ value: district
176
+ }); }).sort(function (a, z) { return a.label.localeCompare(z.label); })}/>
144
177
  </FormWrapper_1.FormWrapper>
145
178
  </ScreenWrapper_1.ScreenWrapper>);
146
179
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abihealth/goapp-react-native",
3
- "version": "1.28.0",
3
+ "version": "1.30.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"
@@ -15,7 +15,7 @@
15
15
  "main": "./dist/index.js",
16
16
  "types": "./dist/index.d.ts",
17
17
  "dependencies": {
18
- "axios": "1.7.9",
18
+ "axios": "^1.8.0",
19
19
  "i18next": "23.16.8",
20
20
  "phone": "3.1.58",
21
21
  "react-i18next": "14.1.3",