@abihealth/goapp-react-native 1.41.0 → 1.43.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 (29) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/common/components/AnswerScreen/prescription/PrescriptionCard.js +51 -6
  3. package/dist/common/components/Input.js +1 -1
  4. package/dist/common/components/Select.js +1 -1
  5. package/dist/common/locale/translations/ar-AE.base.json +5 -3
  6. package/dist/common/locale/translations/ar-LB.base.json +5 -3
  7. package/dist/common/locale/translations/bg.base.json +4 -3
  8. package/dist/common/locale/translations/cs.base.json +4 -5
  9. package/dist/common/locale/translations/de.base.json +12 -3
  10. package/dist/common/locale/translations/en.base.json +18 -5
  11. package/dist/common/locale/translations/en.prescriptionSurveys.json +1 -0
  12. package/dist/common/locale/translations/es-MX.base.json +5 -3
  13. package/dist/common/locale/translations/es.base.json +6 -3
  14. package/dist/common/locale/translations/fr.base.json +7 -3
  15. package/dist/common/locale/translations/hu.base.json +4 -3
  16. package/dist/common/locale/translations/it.base.json +7 -3
  17. package/dist/common/locale/translations/pl.base.json +4 -3
  18. package/dist/common/locale/translations/ro.base.json +4 -5
  19. package/dist/common/locale/translations/ru.base.json +6 -3
  20. package/dist/common/locale/translations/sk.base.json +4 -5
  21. package/dist/common/locale/translations/sl.base.json +3 -0
  22. package/dist/common/locale/translations/zh-CN.base.json +3 -0
  23. package/dist/common/locale/translations/zh-HK.base.json +8 -3
  24. package/dist/common/locale/translations/zh-SG.base.json +7 -3
  25. package/dist/common/locale/translations/zh-TW.base.json +5 -5
  26. package/dist/common/screens/RatingScreen.js +1 -1
  27. package/dist/common/types/prescription.d.ts +18 -6
  28. package/dist/video-consultations/components/VideoConsultation.js +2 -1
  29. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.43.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.42.0...goapp-react-native-v1.43.0) (2025-10-09)
4
+
5
+
6
+ ### Features
7
+
8
+ * allow default prescription integration ([#244](https://github.com/abiglobalhealth/react-native-sdk/issues/244)) ([85e02a6](https://github.com/abiglobalhealth/react-native-sdk/commit/85e02a62fdc9a4bd3bf9af4d1111f44174e74006))
9
+
10
+ ## [1.42.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.41.0...goapp-react-native-v1.42.0) (2025-09-11)
11
+
12
+
13
+ ### Features
14
+
15
+ * including accesibility roles and labels in rating screen ([c1ca7bc](https://github.com/abiglobalhealth/react-native-sdk/commit/c1ca7bc9408c4ccc40424b0d6e2e8502b0779418))
16
+ * including better accessibility in form inputs ([fe8c933](https://github.com/abiglobalhealth/react-native-sdk/commit/fe8c933f0a7afd630fff237850fbe8c2d4516cf4))
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * translations ([2a199c9](https://github.com/abiglobalhealth/react-native-sdk/commit/2a199c9e46ed2c90edbc986e1b4fb762fb459c25))
22
+
3
23
  ## [1.41.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.40.3...goapp-react-native-v1.41.0) (2025-08-14)
4
24
 
5
25
 
@@ -1,7 +1,37 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
5
35
  Object.defineProperty(exports, "__esModule", { value: true });
6
36
  exports.PrescriptionCard = void 0;
7
37
  var Card_1 = require("../../../components/AnswerScreen/Card");
@@ -11,7 +41,8 @@ var useCustomComponents_1 = require("../../../hooks/useCustomComponents");
11
41
  var useTheme_1 = require("../../../hooks/useTheme");
12
42
  var useTranslation_1 = require("../../../hooks/useTranslation");
13
43
  var PillsIcon_1 = require("../../../icons/PillsIcon");
14
- var react_1 = __importDefault(require("react"));
44
+ var prescription_1 = require("../../../types/prescription");
45
+ var react_1 = __importStar(require("react"));
15
46
  var react_native_1 = require("react-native");
16
47
  var PrescriptionCard = function (_a) {
17
48
  var _b, _c, _d, _e;
@@ -20,7 +51,21 @@ var PrescriptionCard = function (_a) {
20
51
  var theme = (0, useTheme_1.useTheme)();
21
52
  var styles = getStyles(theme);
22
53
  var screens = (0, useCustomComponents_1.useCustomComponents)().screens;
23
- var medication = [prescription.data.medication, prescription.data.unit].join(', ');
54
+ var isTree3 = prescription.integration === prescription_1.PRESCRIPTION_INTEGRATION.THREE_TREE;
55
+ var medication = (0, react_1.useMemo)(function () {
56
+ switch (prescription.integration) {
57
+ case prescription_1.PRESCRIPTION_INTEGRATION.THREE_TREE: {
58
+ var data = prescription.data;
59
+ return [data.medication, data.unit].join(', ');
60
+ }
61
+ case prescription_1.PRESCRIPTION_INTEGRATION.DEFAULT: {
62
+ var data = prescription.data;
63
+ return [data.quantity, data.medication, data.frequency, data.duration].join(', ');
64
+ }
65
+ default:
66
+ return 'Prescription format not supported';
67
+ }
68
+ }, [prescription]);
24
69
  return (<Card_1.Card type="prescription" style={[styles.container, (_c = (_b = screens === null || screens === void 0 ? void 0 : screens.AnswerScreen) === null || _b === void 0 ? void 0 : _b.prescriptionCard) === null || _c === void 0 ? void 0 : _c.containerStyle]}>
25
70
  {((_e = (_d = screens === null || screens === void 0 ? void 0 : screens.AnswerScreen) === null || _d === void 0 ? void 0 : _d.prescriptionCard) === null || _e === void 0 ? void 0 : _e.customComponent) ? (<screens.AnswerScreen.prescriptionCard.customComponent prescription={prescription}/>) : (<react_native_1.View style={styles.innerContainer}>
26
71
  <react_native_1.View style={styles.header}>
@@ -31,7 +76,7 @@ var PrescriptionCard = function (_a) {
31
76
  <Text_1.Text>{medication}</Text_1.Text>
32
77
  </react_native_1.View>)}
33
78
 
34
- <DeliveryAddressCard_1.DeliveryAddressCard deliveryAddress={prescription.data.delivery.address}/>
79
+ {isTree3 && <DeliveryAddressCard_1.DeliveryAddressCard deliveryAddress={prescription.data.delivery.address}/>}
35
80
  </Card_1.Card>);
36
81
  };
37
82
  exports.PrescriptionCard = PrescriptionCard;
@@ -53,7 +53,7 @@ var Input = function (_a) {
53
53
  var placeholderColor = (Input === null || Input === void 0 ? void 0 : Input.placeholderTextColor) || theme.palette.grey.base;
54
54
  return (<FormControl_1.default label={label} error={err} name={id}>
55
55
  <react_native_1.View style={{ position: 'relative' }}>
56
- <react_native_1.TextInput {...props} id={id} style={[styles.input, focused && styles.focused, err && styles.error, props.style, Input === null || Input === void 0 ? void 0 : Input.containerStyle]} onFocus={onFocus} onBlur={onBlur} placeholderTextColor={placeholderColor} value={formValue || props.value} onChangeText={onChangeText} editable={!loading} accessibilityLabel="input" accessibilityLabelledBy={id} accessibilityState={{ busy: loading, disabled: loading }}/>
56
+ <react_native_1.TextInput {...props} id={id} style={[styles.input, focused && styles.focused, err && styles.error, props.style, Input === null || Input === void 0 ? void 0 : Input.containerStyle]} onFocus={onFocus} onBlur={onBlur} placeholderTextColor={placeholderColor} value={formValue || props.value} onChangeText={onChangeText} editable={!loading} accessibilityLabel={label ? "".concat(label, " input text field") : 'Input text field'} accessibilityLabelledBy={id} accessibilityState={{ busy: loading, disabled: loading }}/>
57
57
 
58
58
  {props.multiline && !!minLength && (!formValue || (formValue === null || formValue === void 0 ? void 0 : formValue.length) < minLength) && (<react_native_1.View style={styles.hintContainer}>
59
59
  <Text_1.Text color={placeholderColor}>{t('inputs.textarea.min_length', { minLength: minLength })}</Text_1.Text>
@@ -78,7 +78,7 @@ var Select = function (_a) {
78
78
  var err = formError || error;
79
79
  return (<>
80
80
  <FormControl_1.default label={label} error={err} name={id}>
81
- <react_native_1.TouchableOpacity style={[styles.containerSelect, err && styles.error]} onPress={onOpenSelect} disabled={disabled || loading}>
81
+ <react_native_1.TouchableOpacity style={[styles.containerSelect, err && styles.error]} onPress={onOpenSelect} disabled={disabled || loading} accessibilityRole="combobox" accessibilityState={{ expanded: isPickerVisible, disabled: disabled || loading }} accessibilityLabel={label ? "".concat(label, " select dropdown") : 'Select dropdown'}>
82
82
  <Text_1.Text bold={!placeholder} color={placeholder && !value ? theme.palette.grey.base : theme.font.base.color}>
83
83
  {((_b = options.find(function (option) { return option.value === value; })) === null || _b === void 0 ? void 0 : _b.label) || placeholder}
84
84
  </Text_1.Text>
@@ -17,6 +17,7 @@
17
17
  "button.no": "لا",
18
18
  "button.not_yet": "ليس بعد",
19
19
  "button.ok": "موافق",
20
+ "button.omit": "تخطَّ",
20
21
  "button.other_dont_know": "أخرى / لا أعرف",
21
22
  "button.pay_now": "ادفع الآن",
22
23
  "button.remove": "إزالة",
@@ -335,6 +336,7 @@
335
336
  "exit_logic.denied.title": "عذرًا، بسبب ردك، لا يمكن متابعة طلبك.",
336
337
  "follow_up": "أو اطرح سؤالاً بخصوص المتابعة",
337
338
  "follow_up.placeholder.text": "اطرح سؤال متابعة.",
339
+ "follow_up.question": "هل ترغب في طرح سؤال متابعة؟",
338
340
  "forgot_password_confirmation.check_email_to_continue": "يرجى التحقق من بريدك الإلكتروني للمتابعة",
339
341
  "forgot_password_confirmation.password_reset_email_sent": "تم إرسال رسالة بريد إلكتروني لإعادة تعيين كلمة المرور",
340
342
  "forgot_password.already_have_an_account": "هل لديك حساب بالفعل؟",
@@ -360,6 +362,7 @@
360
362
  "general.consultation.medicalConsultation.description": "اطرح سؤالاً طبيًا عن طريق النص واحصل على إجابة سرية من طبيب مؤهل في بضع دقائق فقط.",
361
363
  "general.consultation.medicalConsultation.summary": "ملخص الاستشارة النصية",
362
364
  "general.consultation.medicalConsultation.title": "مراسلة الطبيب",
365
+ "general.consultation.mentalHealthEvaluation.disclaimer.severe_examples": "تشمل الأمراض النفسية الشديدة الفصام أو الاضطراب ثنائي القطب أو اضطراب الوسواس القهري.",
363
366
  "general.consultation.modal.are_you_sure": "هل تريد بالتأكيد إلغاء هذه الحالة؟",
364
367
  "general.consultation.modal.are_you_sure.prescriptionRequest": "هل أنت متأكد من رغبتك في إلغاء طلب الوصفة الطبية هذا؟",
365
368
  "general.consultation.modal.finish_video_call": "هل أنت متأكد من أنك تريد إنهاء مكالمة الفيديو؟",
@@ -501,8 +504,7 @@
501
504
  "prescription.request.frequency": "التكرار: {{frequency}}",
502
505
  "psychologist_title_female": "الطبيب {{name}}",
503
506
  "psychologist_title_male": "الطبيب {{name}}",
504
- "rating.description": "يرجى تقييم استشارتك قبل تنزيل الملخص",
505
- "rating.description.download": "يرجى تقييم استشارتك قبل تنزيل الملخص.",
507
+ "rating.description": "يرجى تقييم استشارتك أو تخطّي قبل تنزيل الملخص",
506
508
  "recommended_link.no_thanks": "لا، شكرًا",
507
509
  "referral.button": "الاطلاع على مستوى الإلحاح",
508
510
  "referral.level.title": "استنادًا إلى إجابة الطبيب، فلقد تم تعيين حالتك الطبية إلى مستوى الإلحاح التالي:",
@@ -582,7 +584,7 @@
582
584
  "summary.download.contact": "يرجى التواصل على <a href='mailto:support@abi.ai'>support@abi.ai</a> للحصول على الملخص.",
583
585
  "summary.download.error": "عفوًا، حدث خطأ ما أثناء إعداد الملخص...",
584
586
  "summary.prescription.error.description": "يرجى التواصل على <a href=\"mailto:info@abi.ai\">info@abi.ai</a> لتلقي دوائك.",
585
- "summary.prescription.error.title": "هناك مشكلة في تسليم وصفتك الطبية.",
587
+ "summary.prescription.error.title": " هناك مشكلة في وصفتك الطبية.",
586
588
  "text_message.case": "بمجرد رد طبيبنا، ستتلقى رسالة نصية تحتوي على رابط لرده. يرجى إدخال رقم هاتفك المحمول أدناه.",
587
589
  "thanks.first-name": "شكرًا يا {{firstName}}!",
588
590
  "title.contact": "اتصل بنا",
@@ -17,6 +17,7 @@
17
17
  "button.no": "لا",
18
18
  "button.not_yet": "ليس بعد",
19
19
  "button.ok": "موافق",
20
+ "button.omit": "تخطَّ",
20
21
  "button.other_dont_know": "أخرى / لا أعرف",
21
22
  "button.pay_now": "ادفع الآن",
22
23
  "button.remove": "إزالة",
@@ -335,6 +336,7 @@
335
336
  "exit_logic.denied.title": "عذرًا، بسبب ردك، لا يمكن متابعة طلبك.",
336
337
  "follow_up": "أو اطرح سؤالاً بخصوص المتابعة",
337
338
  "follow_up.placeholder.text": "اطرح سؤال متابعة.",
339
+ "follow_up.question": "بدك تسأل سؤال متابعة؟",
338
340
  "forgot_password_confirmation.check_email_to_continue": "يرجى التحقق من بريدك الإلكتروني للمتابعة",
339
341
  "forgot_password_confirmation.password_reset_email_sent": "تم إرسال رسالة بريد إلكتروني لإعادة تعيين كلمة المرور",
340
342
  "forgot_password.already_have_an_account": "هل لديك حساب بالفعل؟",
@@ -360,6 +362,7 @@
360
362
  "general.consultation.medicalConsultation.description": "اطرح سؤالاً طبيًا عن طريق النص واحصل على إجابة سرية من طبيب مؤهل في بضع دقائق فقط.",
361
363
  "general.consultation.medicalConsultation.summary": "ملخص الاستشارة النصية",
362
364
  "general.consultation.medicalConsultation.title": "مراسلة الطبيب",
365
+ "general.consultation.mentalHealthEvaluation.disclaimer.severe_examples": "تشمل الأمراض النفسية الشديدة الفصام أو الاضطراب ثنائي القطب أو اضطراب الوسواس القهري.",
363
366
  "general.consultation.modal.are_you_sure": "هل تريد بالتأكيد إلغاء هذه الحالة؟",
364
367
  "general.consultation.modal.are_you_sure.prescriptionRequest": "هل أنت متأكد من رغبتك في إلغاء طلب الوصفة الطبية هذا؟",
365
368
  "general.consultation.modal.finish_video_call": "هل أنت متأكد من أنك تريد إنهاء مكالمة الفيديو؟",
@@ -501,8 +504,7 @@
501
504
  "prescription.request.frequency": "التكرار: {{frequency}}",
502
505
  "psychologist_title_female": "الطبيب {{name}}",
503
506
  "psychologist_title_male": "الطبيب {{name}}",
504
- "rating.description": "يرجى تقييم استشارتك قبل تنزيل الملخص",
505
- "rating.description.download": "يرجى تقييم استشارتك قبل تنزيل الملخص.",
507
+ "rating.description": "قيّم استشارتك أو تخطّى قبل ما تنزّل الملخص",
506
508
  "recommended_link.no_thanks": "لا، شكرًا",
507
509
  "referral.button": "الاطلاع على مستوى الإلحاح",
508
510
  "referral.level.title": "استنادًا إلى إجابة الطبيب، فلقد تم تعيين حالتك الطبية إلى مستوى الإلحاح التالي:",
@@ -582,7 +584,7 @@
582
584
  "summary.download.contact": "يرجى التواصل على <a href='mailto:support@abi.ai'>support@abi.ai</a> للحصول على الملخص.",
583
585
  "summary.download.error": "عفوًا، حدث خطأ ما أثناء إعداد الملخص...",
584
586
  "summary.prescription.error.description": "يرجى التواصل على <a href=\"mailto:info@abi.ai\">info@abi.ai</a> لتلقي دوائك.",
585
- "summary.prescription.error.title": "هناك مشكلة في تسليم وصفتك الطبية.",
587
+ "summary.prescription.error.title": " هناك مشكلة في وصفتك الطبية.",
586
588
  "text_message.case": "بمجرد رد طبيبنا، ستتلقى رسالة نصية تحتوي على رابط لرده. يرجى إدخال رقم هاتفك المحمول أدناه.",
587
589
  "thanks.first-name": "شكرًا يا {{firstName}}!",
588
590
  "title.contact": "اتصل بنا",
@@ -17,6 +17,7 @@
17
17
  "button.no": "Не",
18
18
  "button.not_yet": "Все още не",
19
19
  "button.ok": "OK",
20
+ "button.omit": "Пропусни",
20
21
  "button.other_dont_know": "Друго / Не знам",
21
22
  "button.pay_now": "Платете сега",
22
23
  "button.remove": "ПРЕМАХВАНЕ",
@@ -318,6 +319,7 @@
318
319
  "exit_logic.denied.title": "За съжаление, поради отговора ви не е възможно да продължите с вашата заявка.",
319
320
  "follow_up": "ИЛИ ЗАДАЙТЕ ДОПЪЛНИТЕЛЕН ВЪПРОС",
320
321
  "follow_up.placeholder.text": "Задайте допълнителен въпрос.",
322
+ "follow_up.question": "Искате ли да зададете последващ въпрос?",
321
323
  "forgot_password_confirmation.check_email_to_continue": "Моля, проверете имейла си, за да продължите",
322
324
  "forgot_password_confirmation.password_reset_email_sent": "Изпратен е имейл за възстановяване на паролата",
323
325
  "forgot_password.already_have_an_account": "Вече имате акаунт?",
@@ -438,8 +440,7 @@
438
440
  "prescription.request.frequency": "Честота: {{frequency}}",
439
441
  "psychologist_title_female": "Д-р {{name}}",
440
442
  "psychologist_title_male": "Д-р {{name}}",
441
- "rating.description": "Моля, оценете консултацията, преди да изтеглите резюмето",
442
- "rating.description.download": "Моля, оценете консултацията, преди да изтеглите резюмето.",
443
+ "rating.description": "Моля, оценете консултацията или пропуснете преди да изтеглите обобщението",
443
444
  "recommended_link.no_thanks": "Не, благодаря",
444
445
  "responding": "отговаря на вашия случай.",
445
446
  "reviewing": "преглежда вашата заявка.",
@@ -463,7 +464,7 @@
463
464
  "summary.download.contact": "Моля, свържете се с <a href='mailto:support@abi.ai'>support@abi.ai</a>, за да получите резюмето.",
464
465
  "summary.download.error": "Нещо се обърка при подготовката на резюмето...",
465
466
  "summary.prescription.error.description": "Моля, свържете се с <a href=\"mailto:info@abi.ai\">info@abi.ai</a>, за да получите вашето лекарство.",
466
- "summary.prescription.error.title": "Възникна проблем с доставката на вашата рецепта.",
467
+ "summary.prescription.error.title": " Възникна проблем с вашата рецепта.",
467
468
  "text_message.case": "След като нашият лекар отговори, ще получите текстово съобщение с връзка към отговора му. Моля, въведете вашия мобилен номер по-долу.",
468
469
  "thanks.first-name": "Благодарим ви, {{firstName}}!",
469
470
  "title.contact": "Връзка с нас",
@@ -17,6 +17,7 @@
17
17
  "button.no": "Ne",
18
18
  "button.not_yet": "Zatím ne",
19
19
  "button.ok": "OK",
20
+ "button.omit": "Vynechat",
20
21
  "button.other_dont_know": "Jiné / Nevím",
21
22
  "button.pay_now": "Zaplaťte nyní",
22
23
  "button.remove": "ODSTRANIT",
@@ -321,6 +322,7 @@
321
322
  "experiencing_symptoms.description": "Zaškrtněte vše, co se týká. Pokud ne, stiskněte tlačítko pokračovat.",
322
323
  "follow_up": "NEBO POLOŽTE DOPLŇUJÍCÍ OTÁZKU",
323
324
  "follow_up.placeholder.text": "Položte doplňující otázku.",
325
+ "follow_up.question": "Chcete položit doplňující otázku?",
324
326
  "forgot_password_confirmation.check_email_to_continue": "Pro pokračování zkontrolujte svůj e-mail",
325
327
  "forgot_password_confirmation.password_reset_email_sent": "E-mail pro obnovení hesla odeslán",
326
328
  "forgot_password.already_have_an_account": "Již máte účet?",
@@ -444,10 +446,7 @@
444
446
  "prescription.request.frequency": "Frekvence: {{frequency}}",
445
447
  "psychologist_title_female": "MUDr. {{name}}",
446
448
  "psychologist_title_male": "Dr. {{name}}",
447
- "rating.description": "Ohodnoťte prosím svou konzultaci.",
448
- "rating.description.download": "Před stažením shrnutí prosím ohodnoťte svou konzultaci.",
449
- "rating.description.ilh": "Před stažením shrnutí ohodnoťte svou konzultaci",
450
- "rating.description.ilh_test": "Před stažením shrnutí ohodnoťte svou konzultaci",
449
+ "rating.description": "Ohodnoťte prosím svou konzultaci nebo ji vynechte před stažením shrnutí",
451
450
  "recommended_link.no_thanks": "Ne, děkuji",
452
451
  "responding": "reaguje na váš případ.",
453
452
  "reviewing": "kontroluje vaši žádost.",
@@ -474,7 +473,7 @@
474
473
  "summary.download.contact.ilh-protection": "Pro zaslání shrnutí se prosím obraťte na <a href='mailto:support@abi.ai'>support@abi.ai</a>.",
475
474
  "summary.download.error": "Jejda, něco se pokazilo při přípravě shrnutí...",
476
475
  "summary.prescription.error.description": "Pro obdržení léku prosím kontaktujte <a href=\"mailto:info@abi.ai\">info@abi.ai</a>.",
477
- "summary.prescription.error.title": "Vyskytl se problém s doručením vašeho předpisu.",
476
+ "summary.prescription.error.title": " Vyskytl se problém s vaším předpisem.",
478
477
  "text_message.case": "Jakmile náš lékař odpoví, obdržíte textovou zprávu s odkazem na jeho odpověď. Níže prosím zadejte své mobilní číslo.",
479
478
  "thanks.first-name": "Děkujeme {{firstName}}!",
480
479
  "title.contact": "Kontaktujte nás",
@@ -19,6 +19,7 @@
19
19
  "button.no": "Nein",
20
20
  "button.not_yet": "Noch nicht",
21
21
  "button.ok": "OK",
22
+ "button.omit": "Überspringen",
22
23
  "button.open_summary": "Zusammenfassung öffnen",
23
24
  "button.other_dont_know": "Andere / Weiß nicht",
24
25
  "button.pay_now": "Jetzt bezahlen",
@@ -32,10 +33,16 @@
32
33
  "button.start_again": "NOCHMAL BEGINNEN",
33
34
  "button.submit": "Absenden",
34
35
  "button.try_again": "Erneut versuchen",
36
+ "button.understand_agree": "Ich verstehe und stimme zu",
35
37
  "button.undo": "RÜCKGÄNGIG",
36
38
  "button.yes": "Ja",
37
39
  "button.yes_it_was_negative": "Ja, es war negativ",
38
40
  "button.yes_it_was_positive": "Ja, es war positiv",
41
+ "case_closed.description.medi24": "Kontaktieren Sie Medi24 (<a href=\"https://medi24.ch/de\" target=\"_blank\">medi24.ch</a>) für Unterstützung bei der Videoberatung.",
42
+ "case_closed.description.medi24-kpt": "Kontaktieren Sie Medi24 (<a href=\"https://medi24.ch/de\" target=\"_blank\">medi24.ch</a>) für Unterstützung bei der Videoberatung.",
43
+ "case_closed.description.medi24-other": "Kontaktieren Sie Medi24 (<a href=\"https://medi24.ch/de\" target=\"_blank\">medi24.ch</a>) für Unterstützung bei der Videoberatung.",
44
+ "case_closed.description.medi24-test": "Kontaktieren Sie Medi24 (<a href=\"https://medi24.ch/de\" target=\"_blank\">medi24.ch</a>) für Unterstützung bei der Videoberatung.",
45
+ "case_closed.title": "Beratung abgeschlossen",
39
46
  "case.attachment": "Anhang",
40
47
  "case.back": "Zurück",
41
48
  "case.cancel_question": "Fall abbrechen",
@@ -84,6 +91,7 @@
84
91
  "experiencing_symptoms.description": "Markieren Sie alle zutreffenden Optionen. Wenn keine, drücken Sie einfach „Weiter“.",
85
92
  "follow_up": "Oder stellen Sie eine Zusatzfrage",
86
93
  "follow_up.placeholder.text": "Stellen Sie eine Anschlussfrage.",
94
+ "follow_up.question": "Möchten Sie eine Anschlussfrage stellen?",
87
95
  "forgot_password_confirmation.check_email_to_continue": "Bitte überprüfen Sie Ihre E-Mail, um fortzufahren.",
88
96
  "forgot_password_confirmation.password_reset_email_sent": "Passwortzurücksetzung E-Mail wurde gesendet.",
89
97
  "forgot_password.already_have_an_account": "Haben Sie bereits ein Konto?",
@@ -103,6 +111,8 @@
103
111
  "general.consultation.medicalConsultation.title": "Nachricht an einen Arzt",
104
112
  "general.consultation.medicalConsultation.title.level-health": "Schriftliche Beratung",
105
113
  "general.consultation.medicalConsultation.title.level-health-test": "Schriftliche Beratung",
114
+ "general.consultation.mentalHealthEvaluation.disclaimer.severe_examples": "Schwere Geisteskrankheit umfasst Schizophrenie, bipolare Störung oder Zwangsstörung.",
115
+ "general.consultation.mentalHealthEvaluation.disclaimer.suicide_thoughts": "Wenn Sie Selbstmordgedanken haben, <b>wenden Sie sich bitte direkt an den Notdienst {{emergencyPhoneNumber}}</b>, oder gehen Sie zur nächsten Notaufnahme.",
106
116
  "general.consultation.modal.are_you_sure": "Sind Sie sicher, dass Sie diese Anfrage abbrechen möchten?",
107
117
  "general.consultation.modal.are_you_sure.prescriptionRequest": "Sind Sie sicher, dass Sie diese Rezeptanfrage stornieren möchten?",
108
118
  "general.consultation.prescription.description": "Wählen oder suchen Sie aus einer Liste häufig verwendeter Medikamente, die hier verschrieben werden können.",
@@ -239,8 +249,7 @@
239
249
  "prescriptions-us.pharmacy.filter.address.title": "Adresse",
240
250
  "psychologist_title_female": "Frau {{name}} (Psychologin)",
241
251
  "psychologist_title_male": "Herr {{name}} (Psychologe)",
242
- "rating.description": "Bitte bewerten Sie Ihre Beratung, bevor Sie die Zusammenfassung herunterladen.",
243
- "rating.description.download": "Bitte bewerten Sie Ihre Beratung, bevor Sie die Zusammenfassung herunterladen.",
252
+ "rating.description": "Bitte bewerten Sie Ihre Beratung oder überspringen Sie, bevor Sie die Zusammenfassung herunterladen",
244
253
  "rating.subtitle": "Bitte bewerten Sie Ihre Beratung und helfen Sie uns, Ihre Erfahrung zu verbessern.",
245
254
  "rating.title": "Ihre Meinung zählt!",
246
255
  "rating.validation": "Bewertung ist erforderlich",
@@ -325,7 +334,7 @@
325
334
  "summary.download.contact": "Bitte kontaktieren Sie <a href='mailto:support@abi.ai'>support@abi.ai</a>, um die Zusammenfassung zu erhalten.",
326
335
  "summary.download.error": "Hoppla, beim Erstellen der Zusammenfassung ist ein Fehler aufgetreten...",
327
336
  "summary.prescription.error.description": "Bitte kontaktieren Sie <a href='mailto:info@abi.ai'>info@abi.ai</a>, um Ihr Medikament zu erhalten.",
328
- "summary.prescription.error.title": "Es gibt ein Problem mit der Bereitstellung Ihres Rezepts.",
337
+ "summary.prescription.error.title": " Es gibt ein Problem mit Ihrem Rezept.",
329
338
  "text_message.case": "Sobald unser Arzt geantwortet hat, erhalten Sie eine SMS mit einem Link zu seiner Antwort.",
330
339
  "thanks.first-name": "Danke {{firstName}}!",
331
340
  "title.contact": "Kontaktieren Sie uns",
@@ -1,4 +1,5 @@
1
1
  {
2
+ "accessibility.button": "button",
2
3
  "accessibility.camera_back": "Switch to back camera button",
3
4
  "accessibility.camera_front": "Switch to front camera button",
4
5
  "accessibility.camera_off": "Turn off camera button",
@@ -7,6 +8,9 @@
7
8
  "accessibility.join_the_call": "Join the call button",
8
9
  "accessibility.microphone_mute": "Mute microphone button",
9
10
  "accessibility.microphone_unmute": "Unmute microphone button",
11
+ "accessibility.not_selected": "not selected",
12
+ "accessibility.rating_star": "{{number}} out of {{totalNumber}} stars",
13
+ "accessibility.selected": "selected",
10
14
  "answer.reset": "Ask a new question",
11
15
  "answer.thanks.rating": "Thanks for your rating!",
12
16
  "attachmentPreview.title": "Attachment",
@@ -40,6 +44,7 @@
40
44
  "button.no": "No",
41
45
  "button.not_yet": "Not yet",
42
46
  "button.ok": "OK",
47
+ "button.omit": "Omit",
43
48
  "button.open_summary": "Open summary",
44
49
  "button.other_dont_know": "Other / Don't know",
45
50
  "button.pay_now": "Pay now",
@@ -59,6 +64,7 @@
59
64
  "button.submit_request": "Submit request",
60
65
  "button.submit.hsbc-hk": "Submit",
61
66
  "button.try_again": "Try again",
67
+ "button.understand_agree": "I understand and agree",
62
68
  "button.undo": "UNDO",
63
69
  "button.yes": "Yes",
64
70
  "button.yes_2_5": "Yes, for 2.5 mg",
@@ -70,6 +76,7 @@
70
76
  "case_closed.description.medi24-kpt": "Contact Medi24 (<a href=\"https://medi24.ch/de\" target=\"_blank\">medi24.ch</a>) for video consultation support.",
71
77
  "case_closed.description.medi24-other": "Contact Medi24 (<a href=\"https://medi24.ch/de\" target=\"_blank\">medi24.ch</a>) for video consultation support.",
72
78
  "case_closed.description.medi24-test": "Contact Medi24 (<a href=\"https://medi24.ch/de\" target=\"_blank\">medi24.ch</a>) for video consultation support.",
79
+ "case_closed.title": "Consultation completed",
73
80
  "case.attachment": "Attachment",
74
81
  "case.back": "Back",
75
82
  "case.back.hsbc-hk": "Stay",
@@ -487,6 +494,7 @@
487
494
  "experiencing_symptoms.description": "Check all that apply. If none, just press continue.",
488
495
  "follow_up": "OR ASK A FOLLOW-UP QUESTION",
489
496
  "follow_up.placeholder.text": "Ask a follow-up question.",
497
+ "follow_up.question": "Would you like to ask a follow-up question?",
490
498
  "footer.project_number.mj1": "PP-TR-US-1177 06/2023",
491
499
  "footer.project_number.mj1test": "PP-TR-US-1177 06/2023",
492
500
  "forgot_password_confirmation.check_email_to_continue": "Please check your email to continue",
@@ -527,6 +535,12 @@
527
535
  "general.consultation.medicalConsultation.title.ilh_test": "Message a Doctor",
528
536
  "general.consultation.medicalConsultation.title.level-health": "Text Consultation",
529
537
  "general.consultation.medicalConsultation.title.level-health-test": "Text Consultation",
538
+ "general.consultation.mentalHealthEvaluation.description": "Complete an anonymous online assessment and get personalised guidance for your next steps.",
539
+ "general.consultation.mentalHealthEvaluation.disclaimer.please_read": "Please read carefully",
540
+ "general.consultation.mentalHealthEvaluation.disclaimer.severe": "If you think you may be suffering from severe mental illness, please seek advice from a medical professional.",
541
+ "general.consultation.mentalHealthEvaluation.disclaimer.severe_examples": "Severe mental illness includes Schizophrenia, Bipolar Disorder or Obsessive Compulsive Disorder.",
542
+ "general.consultation.mentalHealthEvaluation.disclaimer.suicide_thoughts": "If you are experiencing thoughts of suicide, please <b>contact the emergency services directly by dialling {{emergencyPhoneNumber}}</b>, or go to your nearest emergency department.",
543
+ "general.consultation.mentalHealthEvaluation.title": "Wellness Assessment",
530
544
  "general.consultation.modal.are_you_sure": "Are you sure you want to cancel this case?",
531
545
  "general.consultation.modal.are_you_sure.hsbc-hk": "Are you sure you want to cancel this video consultation?",
532
546
  "general.consultation.modal.are_you_sure.navigator": "Are you sure you want to close?",
@@ -579,8 +593,10 @@
579
593
  "health_navigator.recommended": "Recommended",
580
594
  "i_consent_to_participate_in_the_programme_as_outlined": "I consent to receive optional SMS reminders and to participate in the program as outlined.",
581
595
  "i_have_read_and_agreed_to_the_terms_conditions": "I have read, and I consent to the <a href='https://abi.ai/en/terms-of-use'>Terms & Conditions</a>",
596
+ "i_have_read_and_agreed_to_the_terms_conditions.ilh": "I have read, and I consent to the <a href='https://ilh.abi.ai/en/terms-of-use'>Terms & Conditions</a>",
582
597
  "i_have_read_and_agreed_to_the_terms_conditions.mj1": "I have read, and I consent to the <a href='https://mj1.abi.ai/en/terms-of-use'>Terms & Conditions</a>",
583
598
  "i_have_read_and_understood_the_privacy_policy": "I have read, and I consent to the <a href='https://abi.ai/en/privacy'>Privacy Policy</a>",
599
+ "i_have_read_and_understood_the_privacy_policy.ilh": "I have read, and I consent to the <a href='https://ilh.abi.ai/en/privacy'>Privacy Policy</a>",
584
600
  "i_have_read_and_understood_the_privacy_policy.mj1": "I have read, and I consent to the <a href='https://mj1.abi.ai/en/privacy'>Privacy Policy</a>",
585
601
  "input.confirm_password": "Confirm Password",
586
602
  "input.email": "Email",
@@ -872,10 +888,7 @@
872
888
  "prescriptions-us.pharmacy.title": "Please, select your preferred pharmacy.",
873
889
  "psychologist_title_female": "Ms. {{name}} (Psychologist)",
874
890
  "psychologist_title_male": "Mr. {{name}} (Psychologist)",
875
- "rating.description": "Please rate your consultation before downloading the summary",
876
- "rating.description.download": "Please rate your consultation before downloading the summary.",
877
- "rating.description.ilh": "Please rate your consultation before downloading the summary",
878
- "rating.description.ilh_test": "Please rate your consultation before downloading the summary",
891
+ "rating.description": "Please rate your consultation or omit before downloading the summary",
879
892
  "rating.subtitle": "Please rate your consultation and help us improve your experience.",
880
893
  "rating.subtitle.hsbc-hk": "Please rate your experience to help us improve our services. ",
881
894
  "rating.title": "Your opinion matters!",
@@ -970,7 +983,7 @@
970
983
  "summary.download.contact.ilh-protection": "Please contact <a href='mailto:ilh@abi.ai'>ilh@abi.ai</a> to receive the summary.",
971
984
  "summary.download.error": "Oops, something went wrong while preparing the summary...",
972
985
  "summary.prescription.error.description": "Please contact <a href=\"mailto:info@abi.ai\">info@abi.ai</a> to receive your medication.",
973
- "summary.prescription.error.title": "There is a problem with the delivery of your prescription.",
986
+ "summary.prescription.error.title": "There is a problem with your prescription.",
974
987
  "switch.continue_text": "Continue with text consultation",
975
988
  "switch.error": "We encountered an issue while processing your request. Please try again later or contact <a href=\"mailto:info@abi.ai\">info@abi.ai</a> for assistance.",
976
989
  "switch.generic": "Based on your case, a video consultation is recommended to ensure you receive the right care.",
@@ -312,6 +312,7 @@
312
312
  "survey.birthcontrolpill.8.title": "Have you ever had breast cancer?",
313
313
  "survey.birthcontrolpill.9.description": "• Stroke or mini-stroke\n• Heart condition\n• Epilepsy\n• HIV\n• Inflammatory Bowel Disease (IBD)\n• An organ transplant \n• Gallstones\n• Liver disease",
314
314
  "survey.birthcontrolpill.9.title": "Do you have any of the following conditions?",
315
+ "survey.category.mentalhealth": "Mental Health",
315
316
  "survey.chlamydia.1.title": "Have you or a sexual partner of yours had a positive chlamydia test?",
316
317
  "survey.chlamydia.2.description": "Mucous from the back passage\nBlood coming from the penis\nBad smelling vaginal mucous\nVaginal bleeding not due to your period\nSevere pelvic pain and / or a temperature?",
317
318
  "survey.chlamydia.2.title": "Do you have any of the following?",
@@ -25,6 +25,7 @@
25
25
  "button.no": "No",
26
26
  "button.not_yet": "Todavía no",
27
27
  "button.ok": "OK",
28
+ "button.omit": "Omitir",
28
29
  "button.other_dont_know": "Otros / No sabe",
29
30
  "button.pay_now": "Pagar ahora",
30
31
  "button.remind.1_week": "Recuérdeme en 1 semana",
@@ -38,6 +39,7 @@
38
39
  "button.start_again": "EMPEZAR DE NUEVO",
39
40
  "button.submit": "Enviar",
40
41
  "button.try_again": "Intentar de nuevo",
42
+ "button.understand_agree": "Comprendo y estoy de acuerdo",
41
43
  "button.undo": "DESHACER",
42
44
  "button.yes": "Sí",
43
45
  "button.yes_2_5": "Sí, para 2.5 mg",
@@ -406,6 +408,7 @@
406
408
  "exit_logic.denied.title": "Lo sentimos, debido a tu respuesta, no es posible continuar con tu solicitud.",
407
409
  "follow_up": "O HAZ UNA PREGUNTA DE SEGUIMIENTO.",
408
410
  "follow_up.placeholder.text": "Haz una pregunta de seguimiento.",
411
+ "follow_up.question": "¿Quieres hacer una pregunta de seguimiento?",
409
412
  "footer.project_number.mj1": "PP-TR-US-1177 06/2023",
410
413
  "footer.project_number.mj1test": "PP-TR-US-1177 06/2023",
411
414
  "forgot_password_confirmation.check_email_to_continue": "Por favor, comprueba tu correo electrónico para continuar.",
@@ -709,8 +712,7 @@
709
712
  "prescription.request.frequency": "Frecuencia: {{frequency}}",
710
713
  "psychologist_title_female": "Sra. {{name}} (Psicológa)",
711
714
  "psychologist_title_male": "Sr. {{name}} (Psicológo)",
712
- "rating.description": "Por favor, valora tu consulta antes de descargar el resumen.",
713
- "rating.description.download": "Por favor, valora tu consulta antes de descargar el resumen.",
715
+ "rating.description": "Por favor, valora tu consulta u omite antes de descargar el resumen",
714
716
  "recommended_link.no_thanks": "No Gracias",
715
717
  "reminder_set": "Recordatorio programado.",
716
718
  "responding": "está respondiendo tu caso.",
@@ -789,7 +791,7 @@
789
791
  "summary.download.contact": "Por favor, contacta <a href='mailto:support@abi.ai'>support@abi.ai</a> para recibir el resumen.",
790
792
  "summary.download.error": "Oops, algo ha salido mal preparando el resumen…",
791
793
  "summary.prescription.error.description": "Por favor, contacta <a href='mailto:support@abi.ai'>support@abi.ai</a> para recibir tu medicación",
792
- "summary.prescription.error.title": "Hay un problema con la entrega de tu receta médica.",
794
+ "summary.prescription.error.title": " Hay un problema con tu receta médica.",
793
795
  "text_message.case": "Una vez que nuestro médico haya respondido, recibirás un mensaje de texto con un enlace a su respuesta. Introduce tu número de teléfono a continuación.",
794
796
  "thanks.first-name": "¡Gracias, {{firstName}}!",
795
797
  "title.contact": "Contáctanos ",
@@ -25,6 +25,7 @@
25
25
  "button.no": "No",
26
26
  "button.not_yet": "Todavía no",
27
27
  "button.ok": "OK",
28
+ "button.omit": "Omitir",
28
29
  "button.other_dont_know": "Otros / No sabe",
29
30
  "button.pay_now": "Pagar ahora",
30
31
  "button.remind.1_week": "Recuérdeme en 1 semana",
@@ -406,6 +407,7 @@
406
407
  "exit_logic.denied.title": "Lo sentimos, debido a tu respuesta, no es posible continuar con tu solicitud.",
407
408
  "follow_up": "O HAZ UNA PREGUNTA DE SEGUIMIENTO.",
408
409
  "follow_up.placeholder.text": "Haz una pregunta de seguimiento.",
410
+ "follow_up.question": "¿Le gustaría hacer una pregunta de seguimiento?",
409
411
  "footer.project_number.mj1": "PP-TR-US-1177 06/2023",
410
412
  "footer.project_number.mj1test": "PP-TR-US-1177 06/2023",
411
413
  "forgot_password_confirmation.check_email_to_continue": "Por favor, comprueba tu correo electrónico para continuar.",
@@ -436,6 +438,8 @@
436
438
  "general.consultation.medicalConsultation.title": "Envía un mensaje a un médico",
437
439
  "general.consultation.medicalConsultation.title.ilh": "Envía un mensaje a un médico",
438
440
  "general.consultation.medicalConsultation.title.ilh_test": "Envía un mensaje a un médico",
441
+ "general.consultation.mentalHealthEvaluation.disclaimer.severe_examples": "Las enfermedades mentales severas incluyen la esquizofrenia, el trastorno bipolar o el trastorno obsesivo compulsivo.",
442
+ "general.consultation.mentalHealthEvaluation.disclaimer.suicide_thoughts": "Si tienes pensamientos suicidas, por favor, contacta a los <b>servicios de emergencia llamando al {{emergencyPhoneNumber}}</b> o acude a tu servicio de emergencias más cercano.",
439
443
  "general.consultation.modal.are_you_sure": "¿Estás seguro de que deseas cancelar este caso?",
440
444
  "general.consultation.modal.are_you_sure.prescriptionRequest": "¿Estás seguro de que deseas cancelar esta solicitud de receta médica?",
441
445
  "general.consultation.modal.finish_video_call": "¿Estás seguro de que deseas finalizar la videollamada?",
@@ -715,8 +719,7 @@
715
719
  "prescription.request.frequency": "Frecuencia: {{frequency}}",
716
720
  "psychologist_title_female": "Dra. {{name}}",
717
721
  "psychologist_title_male": "Dr. {{name}}",
718
- "rating.description": "Por favor, valora tu consulta antes de descargar el resumen.",
719
- "rating.description.download": "Por favor, valora tu consulta antes de descargar el resumen.",
722
+ "rating.description": "Por favor, valore su consulta u omita antes de descargar el resumen",
720
723
  "recommended_link.no_thanks": "No Gracias",
721
724
  "referral.button": "Ver urgencia",
722
725
  "referral.level.confirmation": "Cita registrada correctamente",
@@ -799,7 +802,7 @@
799
802
  "summary.download.contact": "Por favor, contacta <a href='mailto:support@abi.ai'>support@abi.ai</a> para recibir el resumen.",
800
803
  "summary.download.error": "Oops, algo ha salido mal preparando el resumen…",
801
804
  "summary.prescription.error.description": "Por favor, contacta <a href='mailto:support@abi.ai'>support@abi.ai</a> para recibir tu medicación",
802
- "summary.prescription.error.title": "Hay un problema con la entrega de tu receta médica.",
805
+ "summary.prescription.error.title": " Hay un problema con tu receta médica.",
803
806
  "text_message.case": "Una vez que nuestro médico haya respondido, recibirás un mensaje de texto con un enlace a su respuesta. Introduce tu número de teléfono a continuación.",
804
807
  "thanks.first-name": "¡Gracias, {{firstName}}!",
805
808
  "title.contact": "Contáctanos ",
@@ -19,6 +19,7 @@
19
19
  "button.no": "Non",
20
20
  "button.not_yet": "Pas encore",
21
21
  "button.ok": "OK",
22
+ "button.omit": "Ignorer",
22
23
  "button.open_summary": "Ouvrir le résumé",
23
24
  "button.other_dont_know": "Autre / Je ne sais pas",
24
25
  "button.pay_now": "Payer maintenant",
@@ -32,6 +33,7 @@
32
33
  "button.start_again": "RECOMMENCER",
33
34
  "button.submit": "Envoyer",
34
35
  "button.try_again": "Réessayer",
36
+ "button.understand_agree": "Je comprends et accepte",
35
37
  "button.undo": "ANNULER",
36
38
  "button.yes": "Oui",
37
39
  "button.yes_it_was_negative": "Oui, c'était négatif",
@@ -344,6 +346,7 @@
344
346
  "experiencing_symptoms.description": "Cochez tout ce qui s'applique. Si aucun, appuyez simplement sur continuer.",
345
347
  "follow_up": "Ou poser une question complémentaire",
346
348
  "follow_up.placeholder.text": "Poser une question complémentaire.",
349
+ "follow_up.question": "Voulez-vous poser une question de suivi?",
347
350
  "forgot_password_confirmation.check_email_to_continue": "Veuillez vérifier votre e-mail pour continuer",
348
351
  "forgot_password_confirmation.password_reset_email_sent": "E-mail de réinitialisation du mot de passe envoyé",
349
352
  "forgot_password.already_have_an_account": "Vous avez déjà un compte ?",
@@ -371,6 +374,8 @@
371
374
  "general.consultation.medicalConsultation.title": "Envoyer un message à un médecin",
372
375
  "general.consultation.medicalConsultation.title.ilh": "Envoyer un message à un médecin",
373
376
  "general.consultation.medicalConsultation.title.ilh_test": "Envoyer un message à un médecin",
377
+ "general.consultation.mentalHealthEvaluation.disclaimer.severe_examples": "Les maladies mentales graves comprennent la schizophrénie, le trouble bipolaire ou le trouble obsessionnel compulsif.",
378
+ "general.consultation.mentalHealthEvaluation.disclaimer.suicide_thoughts": "Si vous avez des pensées suicidaires, veuillez contacter directement les <b>services d’urgence en composant le {{emergencyPhoneNumber}}</b>, ou rendez-vous au service des urgences le plus proche.",
374
379
  "general.consultation.modal.are_you_sure": "Êtes-vous certain de vouloir annuler cette demande?",
375
380
  "general.consultation.modal.are_you_sure.prescriptionRequest": "Êtes-vous sûr de vouloir annuler cette demande d'ordonnance ?",
376
381
  "general.consultation.modal.finish_video_call": "Êtes-vous sûr de vouloir terminer l'appel vidéo ?",
@@ -516,8 +521,7 @@
516
521
  "prescription.request.frequency": "Fréquence : {{frequency}}",
517
522
  "psychologist_title_female": "Dre. {{name}}",
518
523
  "psychologist_title_male": "Dr. {{name}}",
519
- "rating.description": "Veuillez évaluer votre consultation avant de télécharger le résumé",
520
- "rating.description.download": "Veuillez évaluer votre consultation avant de télécharger le résumé.",
524
+ "rating.description": "Veuillez évaluer votre consultation ou ignorer avant de télécharger le résumé",
521
525
  "rating.subtitle": "Veuillez noter votre consultation et nous aider à améliorer votre expérience.",
522
526
  "rating.title": "Votre avis compte !",
523
527
  "rating.validation": "L'évaluation est requise",
@@ -602,7 +606,7 @@
602
606
  "summary.download.contact": "Veuillez contacter <a href='mailto:support@abi.ai'>support@abi.ai</a> pour recevoir le résumé.",
603
607
  "summary.download.error": "Oups, quelque chose s'est mal passé lors de la préparation du résumé...",
604
608
  "summary.prescription.error.description": "Veuillez contacter <a href=\"mailto:info@abi.ai\">info@abi.ai</a> pour recevoir vos médicaments.",
605
- "summary.prescription.error.title": "Il y a un problème avec la livraison de votre ordonnance.",
609
+ "summary.prescription.error.title": " Il y a un problème avec votre ordonnance.",
606
610
  "text_message.case": "Une fois que notre médecin aura répondu, vous recevrez un SMS avec un lien vers sa réponse. Veuillez saisir votre numéro de portable ci-dessous.",
607
611
  "thanks.first-name": "Merci {{firstName}} !",
608
612
  "title.contact": "Nous contacter",
@@ -17,6 +17,7 @@
17
17
  "button.no": "Nem",
18
18
  "button.not_yet": "Még nem",
19
19
  "button.ok": "OK",
20
+ "button.omit": "Kihagyás",
20
21
  "button.other_dont_know": "Egyéb / Nem tudom",
21
22
  "button.pay_now": "Most fizetek",
22
23
  "button.remove": "ELTÁVOLÍTÁS",
@@ -318,6 +319,7 @@
318
319
  "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
320
  "follow_up": "VAGY UTÁNKÖVETŐ KÉRDÉS",
320
321
  "follow_up.placeholder.text": "Utánkövető kérdés feltevése.",
322
+ "follow_up.question": "Szeretne kiegészítő kérdést feltenni?",
321
323
  "forgot_password_confirmation.check_email_to_continue": "A folytatáshoz ellenőrizze az email címét",
322
324
  "forgot_password_confirmation.password_reset_email_sent": "A jelszóvisszaállító emailt elküldtük",
323
325
  "forgot_password.already_have_an_account": "Már van fiókja?",
@@ -438,8 +440,7 @@
438
440
  "prescription.request.frequency": "Gyakoriság: {{frequency}}",
439
441
  "psychologist_title_female": "Dr. {{name}}",
440
442
  "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
+ "rating.description": "Kérjük, értékelje a konzultációt, vagy hagyja ki, mielőtt letölti az összefoglalót",
443
444
  "recommended_link.no_thanks": "Nem, köszönöm.",
444
445
  "responding": "válaszol az esetére.",
445
446
  "reviewing": "áttekinti a kérését.",
@@ -463,7 +464,7 @@
463
464
  "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
465
  "summary.download.error": "Hoppá, hiba történt az összefoglaló elkészítése során…",
465
466
  "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
+ "summary.prescription.error.title": " Probléma lépett fel a recepttel.",
467
468
  "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
469
  "thanks.first-name": "Köszönjük {{firstName}}!",
469
470
  "title.contact": "Kapcsolatfelvétel",
@@ -19,6 +19,7 @@
19
19
  "button.no": "No",
20
20
  "button.not_yet": "Non ancora",
21
21
  "button.ok": "OK",
22
+ "button.omit": "Ometti",
22
23
  "button.open_summary": "Apri il riepilogo",
23
24
  "button.other_dont_know": "Altro / Non so",
24
25
  "button.pay_now": "Paga ora",
@@ -32,6 +33,7 @@
32
33
  "button.start_again": "RICOMINCIA",
33
34
  "button.submit": "Invia",
34
35
  "button.try_again": "Riprova",
36
+ "button.understand_agree": "Capisco e sono d'accordo",
35
37
  "button.undo": "ANNULLA",
36
38
  "button.yes": "Si",
37
39
  "button.yes_it_was_negative": "Sì, era negativo",
@@ -84,6 +86,7 @@
84
86
  "experiencing_symptoms.description": "Seleziona tutte le opzioni applicabili. Se nessuna, premi semplicemente continua.",
85
87
  "follow_up": "O fai un'altra domanda",
86
88
  "follow_up.placeholder.text": "Fai una domanda di follow-up.",
89
+ "follow_up.question": "Vuoi fare una domanda di approfondimento?",
87
90
  "forgot_password_confirmation.check_email_to_continue": "Controlla la tua email per continuare",
88
91
  "forgot_password_confirmation.password_reset_email_sent": "Email di reimpostazione della password inviata",
89
92
  "forgot_password.already_have_an_account": "Hai già un account?",
@@ -103,6 +106,8 @@
103
106
  "general.consultation.medicalConsultation.title": "Invia un messaggio a un medico",
104
107
  "general.consultation.medicalConsultation.title.level-health": "Consulenza scritta",
105
108
  "general.consultation.medicalConsultation.title.level-health-test": "Consulenza scritta",
109
+ "general.consultation.mentalHealthEvaluation.disclaimer.severe_examples": "Le malattie mentali gravi comprendono la schizofrenia, il disturbo bipolare o il disturbo ossessivo-compulsivo.",
110
+ "general.consultation.mentalHealthEvaluation.disclaimer.suicide_thoughts": "Se stai pensando al suicidio, per favore contatta i <b>servizi d'emergenza direttamente componendo {{emergencyPhoneNumber}}</b>, oppure recati al pronto soccorso più vicino.",
106
111
  "general.consultation.modal.are_you_sure": "Sei sicuro di voler annullare questa richiesta?",
107
112
  "general.consultation.modal.are_you_sure.prescriptionRequest": "Sei sicuro di voler annullare questa richiesta di ricetta medica?",
108
113
  "general.consultation.prescription.description": "Seleziona o cerca un elenco di farmaci comunemente ricettati qui.",
@@ -239,8 +244,7 @@
239
244
  "prescriptions-us.pharmacy.filter.address.title": "Indirizzo",
240
245
  "psychologist_title_female": "Sig.ra {{name}} (Psicologa)",
241
246
  "psychologist_title_male": "Sig. {{name}} (Psicologo)",
242
- "rating.description": "Valuta la tua consultazione prima di scaricare il riepilogo.",
243
- "rating.description.download": "Valuta la tua consultazione prima di scaricare il riepilogo.",
247
+ "rating.description": "Valuta la tua consulenza o ometti prima di scaricare il riepilogo",
244
248
  "rating.subtitle": "Valuta la tua consultazione e aiutaci a migliorare la tua esperienza.",
245
249
  "rating.title": "La tua opinione conta!",
246
250
  "rating.validation": "La valutazione è obbligatoria",
@@ -325,7 +329,7 @@
325
329
  "summary.download.contact": "Contatta <a href='mailto:support@abi.ai'>support@abi.ai</a> per ricevere il riepilogo.",
326
330
  "summary.download.error": "Ops, si è verificato un errore durante la preparazione del riepilogo...",
327
331
  "summary.prescription.error.description": "Contatta <a href='mailto:info@abi.ai'>info@abi.ai</a> per ricevere il farmaco.",
328
- "summary.prescription.error.title": "Si è verificato un problema con la consegna del tuo medicamento.",
332
+ "summary.prescription.error.title": " Si è verificato un problema con il tuo medicamento.",
329
333
  "text_message.case": "Una volta che il nostro medico avrà risposto, riceverai un messaggio con un link alla sua risposta.",
330
334
  "thanks.first-name": "Grazie {{firstName}}!",
331
335
  "title.contact": "Contattaci",
@@ -16,6 +16,7 @@
16
16
  "button.no": "Nie",
17
17
  "button.not_yet": "Jeszcze nie",
18
18
  "button.ok": "OK",
19
+ "button.omit": "Pomiń",
19
20
  "button.other_dont_know": "Inne / Nie wiem",
20
21
  "button.pay_now": "Zapłać teraz",
21
22
  "button.remove": "USUŃ",
@@ -317,6 +318,7 @@
317
318
  "exit_logic.denied.title": "Niestety, ale ze względu na Twoją odpowiedź, nie możemy kontynuować realizacji Twojej prośby.",
318
319
  "follow_up": "LUB ZADAJ PYTANIE UZUPEŁNIAJĄCE",
319
320
  "follow_up.placeholder.text": "Zadaj pytanie uzupełniające.",
321
+ "follow_up.question": "Chcesz zadać pytanie dodatkowe?",
320
322
  "forgot_password_confirmation.check_email_to_continue": "Sprawdź swoją pocztę e-mail, aby kontynuować",
321
323
  "forgot_password_confirmation.password_reset_email_sent": "Wysłano wiadomość e-mail z łączem do zresetowania hasła",
322
324
  "forgot_password.already_have_an_account": "Masz już konto?",
@@ -437,8 +439,7 @@
437
439
  "prescription.request.frequency": "Częstość: {{frequency}}",
438
440
  "psychologist_title_female": "Dr {{name}}",
439
441
  "psychologist_title_male": "Dr {{name}}",
440
- "rating.description": "Przed pobraniem podsumowania oceń konsultację",
441
- "rating.description.download": "Przed pobraniem podsumowania oceń konsultację.",
442
+ "rating.description": "Oceń swoją konsultację lub pomiń przed pobraniem podsumowania",
442
443
  "recommended_link.no_thanks": "Nie, dziękuję",
443
444
  "responding": "odpowiada na Twoje zapytanie.",
444
445
  "reviewing": "zapoznaje się z Twoją prośbą.",
@@ -462,7 +463,7 @@
462
463
  "summary.download.contact": "Aby otrzymać podsumowanie, skontaktuj się z nami pod adresem <a href='mailto:support@abi.ai'>support@abi.ai</a>.",
463
464
  "summary.download.error": "Coś poszło nie tak podczas przygotowywania podsumowania...",
464
465
  "summary.prescription.error.description": "Aby otrzymać leki, skontaktuj się z nami pod adresem <a href=\"mailto:info@abi.ai\">info@abi.ai</a>.",
465
- "summary.prescription.error.title": "Wystąpił problem z dostarczeniem Twojej recepty.",
466
+ "summary.prescription.error.title": " Wystąpił problem z twoją receptą.",
466
467
  "text_message.case": "Gdy nasz lekarz odpowie, otrzymasz SMS z łączem do odpowiedzi. Wpisz poniżej swój numer telefonu komórkowego.",
467
468
  "thanks.first-name": "Dziękuję {{firstName}}!",
468
469
  "title.contact": "Kontakt",
@@ -17,6 +17,7 @@
17
17
  "button.no": "Nu",
18
18
  "button.not_yet": "Nu încă",
19
19
  "button.ok": "OK",
20
+ "button.omit": "Omite",
20
21
  "button.other_dont_know": "Altele/nu știu",
21
22
  "button.pay_now": "Plătiți acum",
22
23
  "button.remove": "ELIMINARE",
@@ -321,6 +322,7 @@
321
322
  "experiencing_symptoms.description": "Bifați toate variantele care se aplică. Dacă nu se aplică niciuna, apăsați butonul Continuare.",
322
323
  "follow_up": "SAU ADRESAȚI O ÎNTREBARE DE URMĂRIRE",
323
324
  "follow_up.placeholder.text": "Adresați o întrebare de urmărire.",
325
+ "follow_up.question": "Doriți să adresați o întrebare suplimentară?",
324
326
  "forgot_password_confirmation.check_email_to_continue": "Verificați-vă e-mailul pentru a continua",
325
327
  "forgot_password_confirmation.password_reset_email_sent": "E-mail de resetare a parolei trimis",
326
328
  "forgot_password.already_have_an_account": "Aveți deja un cont?",
@@ -444,10 +446,7 @@
444
446
  "prescription.request.frequency": "Frecvență: {{frequency}}",
445
447
  "psychologist_title_female": "Dr. {{name}}",
446
448
  "psychologist_title_male": "Dr. {{name}}",
447
- "rating.description": "Evaluați-vă consultația.",
448
- "rating.description.download": "Evaluați-vă consultația înainte de a descărca rezumatul.",
449
- "rating.description.ilh": "Evaluați-vă consultația înainte de a descărca rezumatul.",
450
- "rating.description.ilh_test": "Evaluați-vă consultația înainte de a descărca rezumatul.",
449
+ "rating.description": " rugăm să evaluați consultația sau să omiteți înainte de a descărca rezumatul",
451
450
  "recommended_link.no_thanks": "Nu, mulțumesc",
452
451
  "responding": "vă răspunde la caz.",
453
452
  "reviewing": "vă examinează cererea.",
@@ -476,7 +475,7 @@
476
475
  "summary.download.contact.ilh-protection": "Contactați <a href='mailto:support@abi.ai'>support@abi.ai</a> pentru a primi rezumatul.",
477
476
  "summary.download.error": "A apărut o eroare la pregătirea rezumatului...",
478
477
  "summary.prescription.error.description": "Contactați <a href=\"mailto:info@abi.ai\">info@abi.ai</a> pentru a vă primi medicamentul.",
479
- "summary.prescription.error.title": "Există o problemă cu livrarea prescripției dvs. medicale.",
478
+ "summary.prescription.error.title": " Există o problemă cu prescripția dvs. medicală.",
480
479
  "text_message.case": "Odată ce medicul nostru răspunde, veți primi un mesaj text cu un link către răspunsul său. Introduceți-vă numărul de telefon mobil mai jos.",
481
480
  "thanks.first-name": "Vă mulțumim, {{firstName}}!",
482
481
  "title.contact": "Contactați-ne",
@@ -17,6 +17,7 @@
17
17
  "button.no": "Нет",
18
18
  "button.not_yet": "Еще нет",
19
19
  "button.ok": "OK",
20
+ "button.omit": "Пропустить",
20
21
  "button.other_dont_know": "Прочее / Не знаю",
21
22
  "button.pay_now": "Оплатите сейчас",
22
23
  "button.remove": "УДАЛИТЬ",
@@ -334,6 +335,7 @@
334
335
  "exit_logic.denied.title": "Извините, из-за вашего ответа, продолжить работу с запросом невозможно.",
335
336
  "follow_up": "Или задать уточняющий вопрос",
336
337
  "follow_up.placeholder.text": "Задайте вопрос о последующем наблюдении.",
338
+ "follow_up.question": "Хотите задать дополнительный вопрос?",
337
339
  "forgot_password_confirmation.check_email_to_continue": "Проверьте электронную почту, чтобы продолжить",
338
340
  "forgot_password_confirmation.password_reset_email_sent": "Отправлено письмо сброса пароля",
339
341
  "forgot_password.already_have_an_account": "Уже есть учетная запись?",
@@ -359,6 +361,8 @@
359
361
  "general.consultation.medicalConsultation.description": "Задайте медицинский вопрос по СМС и получите персонализированный ответ от квалифицированного врача всего за несколько минут.",
360
362
  "general.consultation.medicalConsultation.summary": "Текстовое резюме консультаций",
361
363
  "general.consultation.medicalConsultation.title": "Сообщение доктора",
364
+ "general.consultation.mentalHealthEvaluation.disclaimer.severe_examples": "К тяжелым психическим заболеваниям относятся шизофрения, биполярное расстройство или обсессивно-компульсивное расстройство.",
365
+ "general.consultation.mentalHealthEvaluation.disclaimer.suicide_thoughts": "Если у Вас возникают мысли о самоубийстве, свяжитесь непосредственно со <b>службами экстренной помощи, позвонив по номеру {{emergencyPhoneNumber}}</b>, или обратитесь в ближайшее отделение экстренной помощи.",
362
366
  "general.consultation.modal.are_you_sure": "Вы уверены, что хотите отменить эту заявку?",
363
367
  "general.consultation.modal.are_you_sure.prescriptionRequest": "Вы уверены, что хотите отменить этот запрос на рецепт?",
364
368
  "general.consultation.modal.finish_video_call": "Вы уверены, что хотите закончить видеозвонок?",
@@ -494,8 +498,7 @@
494
498
  "prescription.request.frequency": "Частота: {{frequency}}",
495
499
  "psychologist_title_female": "Др. {{name}}",
496
500
  "psychologist_title_male": "Др. {{name}}",
497
- "rating.description": "Пожалуйста, оцените Вашу консультацию перед загрузкой краткой информации",
498
- "rating.description.download": "Пожалуйста, оцените Вашу консультацию перед загрузкой краткой информации.",
501
+ "rating.description": "Пожалуйста, оцените консультацию или пропустите перед загрузкой резюме",
499
502
  "recommended_link.no_thanks": "Нет, Спасибо.",
500
503
  "referral.button": "Посмотреть срочность",
501
504
  "referral.level.confirmation": "Прием зарегистрирован корректно",
@@ -577,7 +580,7 @@
577
580
  "summary.download.contact": "Для получения краткой информации обращайтесь по адресу <a href='mailto:support@abi.ai'>support@abi.ai</a>.",
578
581
  "summary.download.error": "Ой, что-то пошло не так во время подготовки краткой информации...",
579
582
  "summary.prescription.error.description": "Для получения лекарства обращайтесь <a href=\"mailto:info@abi.ai\">info@abi.ai</a>.",
580
- "summary.prescription.error.title": "Возникла проблема с доставкой рецепта.",
583
+ "summary.prescription.error.title": " Возникла проблема с рецептом.",
581
584
  "text_message.case": "После того, как наш врач откликнется, вы получите смс-сообщение со ссылкой на его ответ. Пожалуйста, введите свой мобильный номер ниже.",
582
585
  "thanks.first-name": "Спасибо {{firstName}}!",
583
586
  "title.contact": "Свяжитесь с нами",
@@ -17,6 +17,7 @@
17
17
  "button.no": "Nie",
18
18
  "button.not_yet": "Zatiaľ nie",
19
19
  "button.ok": "OK",
20
+ "button.omit": "Vynechať",
20
21
  "button.other_dont_know": "Iné / Neviem",
21
22
  "button.pay_now": "Zaplaťte teraz",
22
23
  "button.remove": "ODSTRÁNIŤ",
@@ -321,6 +322,7 @@
321
322
  "experiencing_symptoms.description": "Označte všetky body, ktoré sa vás týkajú. Ak sa vás netýka žiadny, stlačte \"pokračovať\".",
322
323
  "follow_up": "ALEBO POLOŽTE DOPLŇUJÚCU OTÁZKU",
323
324
  "follow_up.placeholder.text": "Položiť doplňujúcu otázku.",
325
+ "follow_up.question": "Chcete položiť doplňujúcu otázku?",
324
326
  "forgot_password_confirmation.check_email_to_continue": "Skontrolujte si e-mail a pokračujte",
325
327
  "forgot_password_confirmation.password_reset_email_sent": "E-mail na obnovenie hesla bol odoslaný",
326
328
  "forgot_password.already_have_an_account": "Máte už účet?",
@@ -472,10 +474,7 @@
472
474
  "prescription.request.frequency": "Častosť: {{frequency}}",
473
475
  "psychologist_title_female": "MUDr. {{name}}",
474
476
  "psychologist_title_male": "MUDr. {{name}}",
475
- "rating.description": "Pred stiahnutím súhrnu prosím ohodnoťte konzultáciu",
476
- "rating.description.download": "Pred stiahnutím súhrnu prosím ohodnoťte konzultáciu",
477
- "rating.description.ilh": "Pred stiahnutím súhrnu Vás prosíme o ohodnotenie konzultácie",
478
- "rating.description.ilh_test": "Pred stiahnutím súhrnu Vás prosíme o ohodnotenie konzultácie",
477
+ "rating.description": "Ohodnoťte prosím konzultáciu alebo ju vynechajte pred stiahnutím zhrnutia",
479
478
  "recommended_link.no_thanks": "Nu, mulțumesc.",
480
479
  "responding": "rieši váš prípad.",
481
480
  "reviewing": "preveruje vašu žiadosť.",
@@ -502,7 +501,7 @@
502
501
  "summary.download.contact.ilh-protection": "Ak chcete dostať zhrnutie, kontaktujte <a href='mailto:support@abi.ai'>support@abi.ai</a>.",
503
502
  "summary.download.error": "Ups, pri príprave zhrnutia sa stala chyba…",
504
503
  "summary.prescription.error.description": "Kontaktujte <a href=\"mailto:info@abi.ai\">info@abi.ai</a>, aby ste dostali váš liek.",
505
- "summary.prescription.error.title": "Vyskytol sa problém s doručením vášho predpisu.",
504
+ "summary.prescription.error.title": "Vyskytol sa problém s vaším predpisom.",
506
505
  "text_message.case": "Keď náš lekár odpovie, dostanete textovú správu s odkazom na jeho odpoveď. Nižšie zadajte vaše mobilné číslo.",
507
506
  "thanks.first-name": "Ďakujem, {{firstName}}!",
508
507
  "title.contact": "Obráťte sa na nás",
@@ -1,4 +1,7 @@
1
1
  {
2
+ "button.understand_agree": "Razumem in se strinjam",
3
+ "general.consultation.mentalHealthEvaluation.disclaimer.severe_examples": "Med resne duševne motnje spadajo shizofrenija, bipolarna motnja in obsesivno-kompulzivna motnja.",
4
+ "general.consultation.mentalHealthEvaluation.disclaimer.suicide_thoughts": "Če mislite na samomor, se obrnite neposredno na <b>nujne službe, tako da pokličete tel. št. {{emergencyPhoneNumber}}</b> ali obiščete najbližji urgentni center.",
2
5
  "medical_advice.call_visana": "Glede na zdravnikovo oceno kontaktirajte Medi24 na naslednjo številko:\n\n</b> <a href=\"Tel. št.: +41 800 633 225\">+41 800 633 225</a> <b>",
3
6
  "medical_advice.emergency_visana": "Pokličite številko za klic v sili <b><a href=\"tel:144\">144</a> </b>ali nemudoma obiščite urgentni center.",
4
7
  "medical_advice.no_visit_necessary_visana": "Obisk zdravnika ni potreben. Upoštevajte priporočila, ki jih je navedel zdravnik.",
@@ -1,4 +1,7 @@
1
1
  {
2
+ "button.understand_agree": "我明白并同意",
3
+ "general.consultation.mentalHealthEvaluation.disclaimer.severe_examples": "严重精神疾病包括精神分裂症、躁郁症或强迫症。",
4
+ "general.consultation.mentalHealthEvaluation.disclaimer.suicide_thoughts": "如果您有自杀的念头,请直接拨打<b>{{emergencyPhoneNumber}}</b>,或前往最近的急诊科寻求帮助。",
2
5
  "medical_advice.call_visana": "根据医生的评估,您应该联系Medi24,电话号码如下:\n\n</b> <a href=\"\"tel: +41 800 633 225\"\">+41 800 633 225</a> <b>",
3
6
  "medical_advice.emergency_visana": "拨打紧急电话<b> <a href=\"\"tel:144\"\">144</a> </b>或立即前往急诊室。",
4
7
  "medical_advice.no_visit_necessary_visana": "不需要医疗就诊。请按照医生提供的建议行事。",
@@ -23,6 +23,7 @@
23
23
  "button.no": "否",
24
24
  "button.not_yet": "尚未",
25
25
  "button.ok": "好",
26
+ "button.omit": "省略",
26
27
  "button.other_dont_know": "其他/不知道",
27
28
  "button.pay_now": "立即付款",
28
29
  "button.remove": "移除",
@@ -35,6 +36,7 @@
35
36
  "button.submit": "遞交",
36
37
  "button.submit.hsbc-hk": "提交",
37
38
  "button.try_again": "再試一次",
39
+ "button.understand_agree": "我明白及同意",
38
40
  "button.undo": "復原",
39
41
  "button.yes": "是",
40
42
  "case.attachment": "附件",
@@ -60,6 +62,7 @@
60
62
  "country.hk.area.kowloon.district.wong_tai_sin": "黃大仙",
61
63
  "country.hk.area.kowloon.district.yau_tsim_mong": "油尖旺",
62
64
  "country.hk.area.new_territories": "新界",
65
+ "country.hk.area.new_territories.district.islands": "離島區 (只往 東涌)",
63
66
  "country.hk.area.new_territories.district.kwai_tsing": "葵青",
64
67
  "country.hk.area.new_territories.district.north": "北區",
65
68
  "country.hk.area.new_territories.district.outlying_islands": "離島 (只往 東涌)",
@@ -113,6 +116,7 @@
113
116
  "exit_logic.denied.title": "抱歉,根據您的回覆內容,我們無法繼續處理要求。",
114
117
  "follow_up": "或發問跟進問題",
115
118
  "follow_up.placeholder.text": "發問跟進問題。",
119
+ "follow_up.question": "想再問一個後續問題嗎?",
116
120
  "forgot_password_confirmation.check_email_to_continue": "請檢查您的電郵以繼續",
117
121
  "forgot_password_confirmation.password_reset_email_sent": "已傳送密碼重設電郵",
118
122
  "forgot_password.already_have_an_account": "已有帳戶?",
@@ -139,6 +143,8 @@
139
143
  "general.consultation.medicalConsultation.description": "透過短訊發問醫療問題,只需數分鐘即可獲合資格醫生的保密答覆。",
140
144
  "general.consultation.medicalConsultation.summary": "短訊諮詢摘要",
141
145
  "general.consultation.medicalConsultation.title": "向醫生發送訊息",
146
+ "general.consultation.mentalHealthEvaluation.disclaimer.severe_examples": "嚴重精神疾病包括精神分裂症、躁狂抑鬱症或強迫症。",
147
+ "general.consultation.mentalHealthEvaluation.disclaimer.suicide_thoughts": "如果您有自殺念頭,請<b>直接致電 {{emergencyPhoneNumber}}</b> 聯絡緊急服務<b>,或前往附近的緊急部門。",
142
148
  "general.consultation.modal.are_you_sure": "您確定要取消此個案嗎?",
143
149
  "general.consultation.modal.are_you_sure.hsbc-hk": "您是否確定取消本次視像診症?",
144
150
  "general.consultation.modal.are_you_sure.prescriptionRequest": "您確定要取消此處方要求嗎?",
@@ -298,8 +304,7 @@
298
304
  "prescription.request.frequency": "頻密程度: {{frequency}}",
299
305
  "psychologist_title_female": "{{name}} 醫生",
300
306
  "psychologist_title_male": "{{name}} 醫生",
301
- "rating.description": "請在下載摘要前為您的諮詢評分",
302
- "rating.description.download": "請在下載摘要前為您的諮詢評分。",
307
+ "rating.description": "請在下載摘要前評價您的諮詢或選擇省略",
303
308
  "rating.subtitle.hsbc-hk": "請為本次服務評分,您的意見將有助我們提升服務質素。",
304
309
  "rating.title.hsbc-hk": "我們非常重視您的意見。",
305
310
  "recommended_link.no_thanks": "不用了,謝戲",
@@ -384,7 +389,7 @@
384
389
  "stepper.match_with_a_doctor": "與醫生配對",
385
390
  "summary.download.error": "抱歉,在準備摘要時出現問題…",
386
391
  "summary.prescription.error.description": "請聯絡 <a href=\"mailto:info@abi.ai\">info@abi.ai</a> 以解決問題。",
387
- "summary.prescription.error.title": "寄送處方藥物時出現問題。",
392
+ "summary.prescription.error.title": " 您的處方出現問題。",
388
393
  "text_message.case": "在醫生回覆後,您將會收到附有回覆連結的短訊。請在下方輸入您的手機號碼。",
389
394
  "thanks.first-name": "{{firstName}},謝謝您!",
390
395
  "title.contact": "聯絡我們",
@@ -17,6 +17,7 @@
17
17
  "button.no": "否",
18
18
  "button.not_yet": "还没有",
19
19
  "button.ok": "确认",
20
+ "button.omit": "省略",
20
21
  "button.other_dont_know": "其他/不知道",
21
22
  "button.pay_now": "立即付款",
22
23
  "button.remove": "移除",
@@ -27,6 +28,7 @@
27
28
  "button.start_again": "重新开始",
28
29
  "button.submit": "提交",
29
30
  "button.try_again": "重试",
31
+ "button.understand_agree": "我明白并同意",
30
32
  "button.undo": "撤销",
31
33
  "button.yes": "是",
32
34
  "button.yes_it_was_negative": "是,结果为阴性",
@@ -334,6 +336,7 @@
334
336
  "exit_logic.denied.title": "抱歉,由于您的回复,无法继续处理您的请求。",
335
337
  "follow_up": "或者提出后续问题",
336
338
  "follow_up.placeholder.text": "提出一个后续问题",
339
+ "follow_up.question": "您想要再问一个后续问题吗?",
337
340
  "forgot_password_confirmation.check_email_to_continue": "请检查您的电子邮件以继续",
338
341
  "forgot_password_confirmation.password_reset_email_sent": "密码重置邮件已发送",
339
342
  "forgot_password.already_have_an_account": "已经拥有账户?",
@@ -359,6 +362,8 @@
359
362
  "general.consultation.medicalConsultation.description": "通过文字提问医疗相关的问题,几分钟内即可从合格的医生处获得保密答复。",
360
363
  "general.consultation.medicalConsultation.summary": "文字问诊摘要",
361
364
  "general.consultation.medicalConsultation.title": "向医生发送消息",
365
+ "general.consultation.mentalHealthEvaluation.disclaimer.severe_examples": "严重精神疾病包括精神分裂症、躁郁症或强迫症。",
366
+ "general.consultation.mentalHealthEvaluation.disclaimer.suicide_thoughts": "如果您有自杀的念头,请直接拨打<b>{{emergencyPhoneNumber}}</b>,或前往最近的急诊科寻求帮助。",
362
367
  "general.consultation.modal.are_you_sure": "您确定要取消此请求吗?",
363
368
  "general.consultation.modal.are_you_sure.prescriptionRequest": "您确定要取消此次处方请求吗?",
364
369
  "general.consultation.modal.finish_video_call": "您确定要结束此次视频通话吗?",
@@ -500,8 +505,7 @@
500
505
  "prescription.request.frequency": "频率:{{frequency}}",
501
506
  "psychologist_title_female": " {{name}} 医生",
502
507
  "psychologist_title_male": " {{name}} 医生",
503
- "rating.description": "请在下载问诊总结前评价您的问诊",
504
- "rating.description.download": "请在下载问诊总结前评价您的问诊",
508
+ "rating.description": "请在下载摘要前评价您的咨询或选择省略",
505
509
  "recommended_link.no_thanks": "不,谢谢",
506
510
  "referral.button": "查看紧急程度",
507
511
  "referral.level.confirmation": "预约已成功",
@@ -583,7 +587,7 @@
583
587
  "summary.download.contact": "请联系<a href='mailto:support@abi.ai'>support@abi.ai</a>以获取问诊总结。",
584
588
  "summary.download.error": "抱歉,在准备问诊总结时出了点问题...",
585
589
  "summary.prescription.error.description": "请联系<a href=\"mailto:info@abi.ai\">info@abi.ai</a>以获取您的药物。",
586
- "summary.prescription.error.title": "您的处方配送出现问题。",
590
+ "summary.prescription.error.title": " 您的处方出现问题。",
587
591
  "text_message.case": "医生回复后,您将收到包含其回复链接的短信。请在下方输入您的手机号码。",
588
592
  "thanks.first-name": "谢谢{{firstName}}!",
589
593
  "title.contact": "联系我们",
@@ -25,6 +25,7 @@
25
25
  "button.no": "否",
26
26
  "button.not_yet": "尚未",
27
27
  "button.ok": "好",
28
+ "button.omit": "省略",
28
29
  "button.other_dont_know": "其他/不知道",
29
30
  "button.pay_now": "立即付款",
30
31
  "button.remind.1_week": "一週後提醒我",
@@ -38,6 +39,7 @@
38
39
  "button.start_again": "重新開始",
39
40
  "button.submit": "提交",
40
41
  "button.try_again": "再試一次",
42
+ "button.understand_agree": "我理解並同意",
41
43
  "button.undo": "復原",
42
44
  "button.yes": "是",
43
45
  "button.yes_2_5": "是,給2.5毫克",
@@ -412,6 +414,7 @@
412
414
  "experiencing_symptoms.description": "檢查所有適用的內容。如果沒有,請按繼續。",
413
415
  "follow_up": "或提問追蹤問題",
414
416
  "follow_up.placeholder.text": "提問追蹤問題",
417
+ "follow_up.question": "您想再問一個後續問題嗎?",
415
418
  "forgot_password_confirmation.check_email_to_continue": "請檢查您的電子郵件以繼續",
416
419
  "forgot_password_confirmation.password_reset_email_sent": "已傳送密碼重設電子郵件",
417
420
  "forgot_password.already_have_an_account": "已有帳戶?",
@@ -743,10 +746,7 @@
743
746
  "prescription.request.frequency": "頻率: {{frequency}}",
744
747
  "psychologist_title_female": "{{name}} 醫師",
745
748
  "psychologist_title_male": "{{name}} 醫師",
746
- "rating.description": "請在下載摘要前為先為您的諮詢評分",
747
- "rating.description.download": "請在下載摘要前為先為您的諮詢評分",
748
- "rating.description.ilh": "請在下載摘要前為先為您的諮詢評分",
749
- "rating.description.ilh_test": "請在下載摘要前為先為您的諮詢評分",
749
+ "rating.description": "請在下載摘要前評價您的諮詢或選擇省略",
750
750
  "recommended_link.no_thanks": "不用了,感謝。",
751
751
  "reminder_set": "已設定提醒。",
752
752
  "responding": "正在回覆您的個案。",
@@ -831,7 +831,7 @@
831
831
  "summary.download.contact.ilh-protection": "請聯絡 <a href='mailto:ilh@abi.ai'>ilh@abi.ai</a>以寄送摘要。",
832
832
  "summary.download.error": "抱歉,在準備摘要時出了點問題...",
833
833
  "summary.prescription.error.description": "請聯絡 <a href=\"mailto:info@abi.ai\">info@abi.ai</a> 以領取您的藥物。",
834
- "summary.prescription.error.title": "在寄送處方藥物時出現問題。",
834
+ "summary.prescription.error.title": " 您的處方出現問題。",
835
835
  "switch.continue_text": "繼續文字諮詢",
836
836
  "switch.error": "我們在處理您的請求時遇到問題。請稍後重試或聯絡 <a href=\"mailto:info@abi.ai\">info@abi.ai</a> 尋求協助。",
837
837
  "text_message.case": "在醫師回覆後,您將會收到附有回覆連結的簡訊。請在下方輸入您的手機號碼。",
@@ -148,7 +148,7 @@ var RatingScreen = function (_a) {
148
148
  </react_native_1.View>
149
149
  <react_native_1.View style={styles.ratingContainer}>
150
150
  <react_native_1.Animated.View style={[styles.starsContainer, { transform: [{ translateX: shakeAnimation }] }]}>
151
- {Object.values(RATINGS).map(function (rating) { return (<react_native_1.TouchableOpacity key={rating} onPress={function () {
151
+ {Object.values(RATINGS).map(function (rating) { return (<react_native_1.TouchableOpacity accessibilityRole="button" accessibilityLabel={"".concat(t('accessibility.rating_star', { number: rating, totalNumber: RATINGS.length }), ", ").concat(selectedRating >= rating ? t('accessibility.selected') : t('accessibility.not_selected'))} key={rating} onPress={function () {
152
152
  setSelectedRating(rating);
153
153
  setShowError(false);
154
154
  }}>
@@ -25,20 +25,32 @@ export interface Status {
25
25
  export interface Delivery {
26
26
  address: HKDeliveryAddress;
27
27
  }
28
- export interface Data {
28
+ export interface Tree3Data {
29
29
  delivery?: Delivery;
30
30
  drugId: number;
31
31
  dsi: string;
32
32
  duration: string;
33
33
  frequency: string;
34
- integration: string;
35
34
  medication: string;
36
35
  remarks: string;
37
36
  unit: string;
38
37
  }
39
- export interface Prescription {
40
- integration: PRESCRIPTION_INTEGRATION;
38
+ export interface DefaultData {
39
+ duration: string;
41
40
  createdAt: string;
42
- data: Data;
43
- status: Status;
41
+ quantity: string;
42
+ medication: string;
43
+ drugId: number;
44
+ frequency: string;
45
+ instructions?: string;
44
46
  }
47
+ export type Prescription = {
48
+ createdAt: string;
49
+ status: Status;
50
+ } & ({
51
+ integration: PRESCRIPTION_INTEGRATION.THREE_TREE;
52
+ data: Tree3Data;
53
+ } | {
54
+ integration: PRESCRIPTION_INTEGRATION.DEFAULT;
55
+ data: DefaultData;
56
+ });
@@ -9,6 +9,7 @@ var NotValidActiveTypeScreen_1 = require("../../common/screens/NotValidActiveTyp
9
9
  var PreparingSummaryScreen_1 = require("../../common/screens/PreparingSummaryScreen");
10
10
  var utils_1 = require("../../common/screens/utils");
11
11
  var consultation_1 = require("../../common/types/consultation");
12
+ var prescription_1 = require("../../common/types/prescription");
12
13
  var valid_active_type_1 = require("../../common/utils/valid-active-type");
13
14
  var DeliveryAddressScreen_1 = require("../screens/DeliveryAddressScreen");
14
15
  var JoinVideoCallScreen_1 = require("../screens/JoinVideoCallScreen");
@@ -38,7 +39,7 @@ var VideoConsultation = function (_a) {
38
39
  case consultation_1.CONSULTATION_STATUS.VIDEO_CALL_ENDED:
39
40
  return <PreparingSummaryScreen_1.PreparingSummaryScreen professional={professional}/>;
40
41
  case consultation_1.CONSULTATION_STATUS.WAITING_FOR_INFO:
41
- if ((_a = prescription === null || prescription === void 0 ? void 0 : prescription.data.delivery) === null || _a === void 0 ? void 0 : _a.address)
42
+ if (prescription.integration === prescription_1.PRESCRIPTION_INTEGRATION.THREE_TREE && ((_a = prescription === null || prescription === void 0 ? void 0 : prescription.data.delivery) === null || _a === void 0 ? void 0 : _a.address))
42
43
  return <ProcessingPrescriptionScreen_1.ProcessingPrescriptionScreen />;
43
44
  return <DeliveryAddressScreen_1.DeliveryAddressScreen initialDeliveryAddress={deliveryAddress}/>;
44
45
  default:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abihealth/goapp-react-native",
3
- "version": "1.41.0",
3
+ "version": "1.43.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"