@abihealth/goapp-react-native 1.44.0 → 1.45.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/dist/common/components/Input.js +11 -2
- package/dist/common/contexts/FormContext.d.ts +7 -4
- package/dist/common/contexts/FormContext.js +10 -2
- package/dist/common/hooks/useForm.d.ts +1 -0
- package/dist/common/hooks/useForm.js +27 -14
- package/dist/common/locale/translations/de.base.json +39 -0
- package/dist/common/locale/translations/en.base.json +11 -0
- package/dist/common/locale/translations/en.prescriptionSurveys.json +44 -44
- package/dist/common/locale/translations/es-MX.prescriptionSurveys.json +44 -44
- package/dist/common/locale/translations/it.prescriptionSurveys.json +44 -44
- package/dist/common/locale/translations/sl.prescriptionSurveys.json +44 -44
- package/dist/common/locale/translations/zh-CN.prescriptionSurveys.json +44 -44
- package/dist/common/locale/translations/zh-HK.base.json +15 -0
- package/dist/common/locale/translations/zh-HK.prescriptionSurveys.json +44 -44
- package/dist/common/locale/translations/zh-SG.prescriptionSurveys.json +44 -44
- package/dist/common/locale/translations/zh-TW.prescriptionSurveys.json +44 -44
- package/dist/video-consultations/screens/DeliveryAddressScreen.js +20 -11
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.45.1](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.45.0...goapp-react-native-v1.45.1) (2025-10-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* ABI-10439 sdk accessibility error messages are not announced ([#252](https://github.com/abiglobalhealth/react-native-sdk/issues/252)) ([6b68c48](https://github.com/abiglobalhealth/react-native-sdk/commit/6b68c48f1f2c96a48d005ca481cc859cc10ad36b))
|
|
9
|
+
|
|
10
|
+
## [1.45.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.44.0...goapp-react-native-v1.45.0) (2025-10-16)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* update translations ([#250](https://github.com/abiglobalhealth/react-native-sdk/issues/250)) ([025ccee](https://github.com/abiglobalhealth/react-native-sdk/commit/025ccee17ec6647352d642702017fa4eb4478e07))
|
|
16
|
+
|
|
3
17
|
## [1.44.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.43.1...goapp-react-native-v1.44.0) (2025-10-14)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -29,8 +29,17 @@ var Input = function (_a) {
|
|
|
29
29
|
var theme = (0, useTheme_1.useTheme)();
|
|
30
30
|
var Input = (0, useCustomComponents_1.useCustomComponents)().Input;
|
|
31
31
|
var styles = getStyles(theme);
|
|
32
|
-
var _b = (0, useForm_1.useForm)(), errors = _b.errors, data = _b.data, clearError = _b.clearError, updateData = _b.updateData, loading = _b.loading;
|
|
32
|
+
var _b = (0, useForm_1.useForm)(), errors = _b.errors, data = _b.data, clearError = _b.clearError, updateData = _b.updateData, loading = _b.loading, registerInput = _b.registerInput;
|
|
33
33
|
var _c = (0, react_1.useState)(false), focused = _c[0], setFocused = _c[1];
|
|
34
|
+
var inputRef = (0, react_1.useRef)(null);
|
|
35
|
+
(0, react_1.useEffect)(function () {
|
|
36
|
+
if (id && registerInput && inputRef.current)
|
|
37
|
+
registerInput(id, inputRef.current);
|
|
38
|
+
return function () {
|
|
39
|
+
if (id && registerInput)
|
|
40
|
+
registerInput(id, null);
|
|
41
|
+
};
|
|
42
|
+
}, [id, registerInput]);
|
|
34
43
|
var onFocus = function (e) {
|
|
35
44
|
var _a;
|
|
36
45
|
setFocused(true);
|
|
@@ -53,7 +62,7 @@ var Input = function (_a) {
|
|
|
53
62
|
var placeholderColor = (Input === null || Input === void 0 ? void 0 : Input.placeholderTextColor) || theme.palette.grey.base;
|
|
54
63
|
return (<FormControl_1.default label={label} error={err} name={id}>
|
|
55
64
|
<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={label ? "".concat(label, " input text field") : 'Input text field'} accessibilityLabelledBy={id} accessibilityState={{ busy: loading, disabled: loading }}/>
|
|
65
|
+
<react_native_1.TextInput {...props} ref={inputRef} 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
66
|
|
|
58
67
|
{props.multiline && !!minLength && (!formValue || (formValue === null || formValue === void 0 ? void 0 : formValue.length) < minLength) && (<react_native_1.View style={styles.hintContainer}>
|
|
59
68
|
<Text_1.Text color={placeholderColor}>{t('inputs.textarea.min_length', { minLength: minLength })}</Text_1.Text>
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React, { PropsWithChildren } from 'react';
|
|
1
|
+
import React, { Dispatch, MutableRefObject, PropsWithChildren, SetStateAction } from 'react';
|
|
2
|
+
import { TextInput } from 'react-native';
|
|
2
3
|
import { z } from 'zod';
|
|
3
4
|
export type HandleSubmitProps<T extends z.AnyZodObject> = {
|
|
4
5
|
onSuccess?: (data: z.TypeOf<T>) => Promise<void>;
|
|
@@ -7,14 +8,16 @@ export type HandleSubmitProps<T extends z.AnyZodObject> = {
|
|
|
7
8
|
};
|
|
8
9
|
export type FormContextProps<T extends z.AnyZodObject> = {
|
|
9
10
|
data: z.infer<T> | null;
|
|
10
|
-
setData:
|
|
11
|
+
setData: Dispatch<SetStateAction<z.infer<T> | null>>;
|
|
11
12
|
errors: Record<keyof z.infer<T>, string> | null;
|
|
12
|
-
setErrors:
|
|
13
|
+
setErrors: Dispatch<SetStateAction<Record<keyof z.infer<T>, string> | null>>;
|
|
13
14
|
schema: T;
|
|
14
15
|
onSubmit?: HandleSubmitProps<T>;
|
|
15
16
|
loading: boolean;
|
|
16
|
-
setLoading:
|
|
17
|
+
setLoading: Dispatch<SetStateAction<boolean>>;
|
|
17
18
|
loadingForm?: boolean;
|
|
19
|
+
inputRefs: MutableRefObject<Map<string, TextInput | null>>;
|
|
20
|
+
registerInput: (id: string, ref: TextInput | null) => void;
|
|
18
21
|
};
|
|
19
22
|
export declare const FormContext: React.Context<FormContextProps<any>>;
|
|
20
23
|
type FormProviderProps<T extends z.AnyZodObject> = {
|
|
@@ -44,14 +44,22 @@ exports.FormContext = (0, react_1.createContext)({
|
|
|
44
44
|
schema: zod_1.z.object({}),
|
|
45
45
|
loading: false,
|
|
46
46
|
setLoading: function () { },
|
|
47
|
-
loadingForm: false
|
|
47
|
+
loadingForm: false,
|
|
48
|
+
inputRefs: { current: new Map() },
|
|
49
|
+
registerInput: function () { }
|
|
48
50
|
});
|
|
49
51
|
var FormProvider = function (_a) {
|
|
50
52
|
var children = _a.children, schema = _a.schema, initialValues = _a.initialValues, onSubmit = _a.onSubmit, loadingForm = _a.loadingForm;
|
|
51
53
|
var _b = (0, react_1.useState)(false), loading = _b[0], setLoading = _b[1];
|
|
52
54
|
var _c = (0, react_1.useState)(initialValues || null), data = _c[0], setData = _c[1];
|
|
53
55
|
var _d = (0, react_1.useState)(null), errors = _d[0], setErrors = _d[1];
|
|
54
|
-
|
|
56
|
+
var inputRefs = (0, react_1.useRef)(new Map());
|
|
57
|
+
var registerInput = (0, react_1.useCallback)(function (id, ref) {
|
|
58
|
+
if (ref)
|
|
59
|
+
return inputRefs.current.set(id, ref);
|
|
60
|
+
inputRefs.current.delete(id);
|
|
61
|
+
}, []);
|
|
62
|
+
return (<exports.FormContext.Provider value={{ data: data, setData: setData, errors: errors, setErrors: setErrors, schema: schema, onSubmit: onSubmit, loading: loading, setLoading: setLoading, loadingForm: loadingForm, inputRefs: inputRefs, registerInput: registerInput }}>
|
|
55
63
|
{children}
|
|
56
64
|
</exports.FormContext.Provider>);
|
|
57
65
|
};
|
|
@@ -7,4 +7,5 @@ export declare const useForm: <T extends z.AnyZodObject>() => {
|
|
|
7
7
|
handleSubmit: () => Promise<void>;
|
|
8
8
|
loading: boolean;
|
|
9
9
|
setLoading: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
10
|
+
registerInput: (id: string, ref: import("react-native").TextInput | null) => void;
|
|
10
11
|
};
|
|
@@ -51,6 +51,7 @@ exports.useForm = void 0;
|
|
|
51
51
|
var FormContext_1 = require("../contexts/FormContext");
|
|
52
52
|
var zod_1 = require("../utils/zod");
|
|
53
53
|
var react_1 = require("react");
|
|
54
|
+
var react_native_1 = require("react-native");
|
|
54
55
|
var useForm = function () {
|
|
55
56
|
var context = (0, react_1.useContext)(FormContext_1.FormContext);
|
|
56
57
|
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;
|
|
@@ -67,27 +68,38 @@ var useForm = function () {
|
|
|
67
68
|
});
|
|
68
69
|
};
|
|
69
70
|
var handleSubmit = function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
70
|
-
var error_1,
|
|
71
|
-
var _a, _b, _c;
|
|
72
|
-
return __generator(this, function (
|
|
73
|
-
switch (
|
|
71
|
+
var error_1, parsedErrors_1, currentRefs, firstErrorField_1, inputRef_1;
|
|
72
|
+
var _a, _b, _c, _d;
|
|
73
|
+
return __generator(this, function (_e) {
|
|
74
|
+
switch (_e.label) {
|
|
74
75
|
case 0:
|
|
75
|
-
|
|
76
|
+
_e.trys.push([0, 2, 4, 6]);
|
|
76
77
|
setLoading(true);
|
|
77
78
|
schema.parse(data || {});
|
|
78
79
|
return [4 /*yield*/, ((_a = onSubmit === null || onSubmit === void 0 ? void 0 : onSubmit.onSuccess) === null || _a === void 0 ? void 0 : _a.call(onSubmit, data))];
|
|
79
80
|
case 1:
|
|
80
|
-
|
|
81
|
+
_e.sent();
|
|
81
82
|
return [3 /*break*/, 6];
|
|
82
83
|
case 2:
|
|
83
|
-
error_1 =
|
|
84
|
-
|
|
85
|
-
setErrors(
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
84
|
+
error_1 = _e.sent();
|
|
85
|
+
parsedErrors_1 = (0, zod_1.parseErrors)(error_1);
|
|
86
|
+
setErrors(parsedErrors_1);
|
|
87
|
+
currentRefs = (_b = context.inputRefs) === null || _b === void 0 ? void 0 : _b.current;
|
|
88
|
+
if (currentRefs) {
|
|
89
|
+
firstErrorField_1 = Array.from(currentRefs.keys()).find(function (key) { return parsedErrors_1[key]; });
|
|
90
|
+
if (firstErrorField_1) {
|
|
91
|
+
inputRef_1 = currentRefs.get(firstErrorField_1);
|
|
92
|
+
setTimeout(function () {
|
|
93
|
+
inputRef_1 === null || inputRef_1 === void 0 ? void 0 : inputRef_1.focus();
|
|
94
|
+
react_native_1.AccessibilityInfo.announceForAccessibility(parsedErrors_1[firstErrorField_1]);
|
|
95
|
+
}, 100);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
return [4 /*yield*/, ((_c = onSubmit === null || onSubmit === void 0 ? void 0 : onSubmit.onError) === null || _c === void 0 ? void 0 : _c.call(onSubmit, parsedErrors_1))];
|
|
99
|
+
case 3: return [2 /*return*/, _e.sent()];
|
|
100
|
+
case 4: return [4 /*yield*/, ((_d = onSubmit === null || onSubmit === void 0 ? void 0 : onSubmit.onFinally) === null || _d === void 0 ? void 0 : _d.call(onSubmit))];
|
|
89
101
|
case 5:
|
|
90
|
-
|
|
102
|
+
_e.sent();
|
|
91
103
|
setLoading(false);
|
|
92
104
|
return [7 /*endfinally*/];
|
|
93
105
|
case 6: return [2 /*return*/];
|
|
@@ -101,7 +113,8 @@ var useForm = function () {
|
|
|
101
113
|
clearError: clearError,
|
|
102
114
|
handleSubmit: handleSubmit,
|
|
103
115
|
loading: loading || loadingForm,
|
|
104
|
-
setLoading: setLoading
|
|
116
|
+
setLoading: setLoading,
|
|
117
|
+
registerInput: context.registerInput
|
|
105
118
|
};
|
|
106
119
|
};
|
|
107
120
|
exports.useForm = useForm;
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
"answer.thanks.rating": "Danke für Ihre Bewertung!",
|
|
4
4
|
"attachmentPreview.title": "Anhang",
|
|
5
5
|
"back": "Zurück",
|
|
6
|
+
"button.agree": "Ich stimme zu",
|
|
6
7
|
"button.ask": "Frage stellen",
|
|
7
8
|
"button.cancel": "Abbrechen",
|
|
8
9
|
"button.cancel_case": "Fall abbrechen",
|
|
@@ -32,6 +33,7 @@
|
|
|
32
33
|
"button.sms_reminder": "SMS AN MICH, WENN SIE ANTWORTEN",
|
|
33
34
|
"button.start_again": "NOCHMAL BEGINNEN",
|
|
34
35
|
"button.submit": "Absenden",
|
|
36
|
+
"button.submit_request": "Anfrage einreichen",
|
|
35
37
|
"button.try_again": "Erneut versuchen",
|
|
36
38
|
"button.understand_agree": "Ich verstehe und stimme zu",
|
|
37
39
|
"button.undo": "RÜCKGÄNGIG",
|
|
@@ -71,7 +73,15 @@
|
|
|
71
73
|
"download.summary_being_prepared": "Ihre Zusammenfassung wird vorbereitet.",
|
|
72
74
|
"download.summary_getting_ready": "Die Zusammenfassung wird vorbereitet.",
|
|
73
75
|
"download.usually_takes": "Dies dauert normalerweise weniger als 1 Minute.",
|
|
76
|
+
"error.camera_microphone.browser.chrome": "1. Klicken Sie in der Adressleiste auf das Schloss-Symbol (neben der URL).\n2. Wählen Sie Website-Einstellungen.\n3. Stellen Sie Mikrofon und Kamera auf „Erlauben“.\n4. Aktualisieren Sie diese Seite.",
|
|
77
|
+
"error.camera_microphone.browser.edge": "1. Öffnen Sie die Einstellungen-App Ihres Telefons.\n2. Suchen und wählen Sie Edge (möglicherweise unter Apps).\n3. Wählen Sie Berechtigungen und aktivieren Sie Kamera und Mikrofon.\n4. Aktualisieren Sie diese Seite.",
|
|
78
|
+
"error.camera_microphone.browser.firefox": "1. Klicken Sie in der Adressleiste auf das Kamera- oder Mikrofonsymbol.\n2. Klicken Sie auf „Berechtigungen erneut versuchen“ oder erlauben Sie den Zugriff manuell in den Einstellungen.\n3. Aktualisieren Sie diese Seite.",
|
|
79
|
+
"error.camera_microphone.browser.safari": "1. Klicken Sie oben in der Menüleiste auf Safari > Einstellungen für diese Website.\n2. Stellen Sie Kamera und Mikrofon auf „Erlauben“.\n3. Aktualisieren Sie diese Seite.",
|
|
80
|
+
"error.camera_microphone.client_app": "Bitte überprüfen Sie Ihre Berechtigungseinstellungen. Alternativ können Sie dem Anruf über den folgenden Link beitreten: {{url}}",
|
|
81
|
+
"error.camera_microphone.no_camera_no_microphone": "Fehler: Bitte aktivieren Sie Kamera und Mikrofon, um dem Anruf beizutreten.",
|
|
82
|
+
"error.camera_microphone.to_enable": "So aktivieren Sie:",
|
|
74
83
|
"error.case_already_open": "Sie haben bereits einen Fall an einem anderen Ort geöffnet. Bitte schließen Sie diesen zuerst ab.",
|
|
84
|
+
"error.case_type_already_open": "Sie haben bereits einen offenen {{caseType}}-Fall.",
|
|
75
85
|
"error.something_went_wrong": "Etwas ist schiefgelaufen, bitte versuchen Sie es später erneut.",
|
|
76
86
|
"error.validation.attachment.duplicated": "Anhang wurde bereits hinzugefügt.",
|
|
77
87
|
"error.validation.attachment.max": "Fehler beim Hochladen: Sie können maximal {{maxAmount}} Dateien hochladen.",
|
|
@@ -115,6 +125,7 @@
|
|
|
115
125
|
"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.",
|
|
116
126
|
"general.consultation.modal.are_you_sure": "Sind Sie sicher, dass Sie diese Anfrage abbrechen möchten?",
|
|
117
127
|
"general.consultation.modal.are_you_sure.prescriptionRequest": "Sind Sie sicher, dass Sie diese Rezeptanfrage stornieren möchten?",
|
|
128
|
+
"general.consultation.modal.finish_video_call": "Möchten Sie den Videoanruf wirklich beenden?",
|
|
118
129
|
"general.consultation.prescription.description": "Wählen oder suchen Sie aus einer Liste häufig verwendeter Medikamente, die hier verschrieben werden können.",
|
|
119
130
|
"general.consultation.prescription.title": "Rezeptanfrage",
|
|
120
131
|
"general.consultation.prescriptionRequest.description": "Wählen oder suchen Sie aus einer Liste häufig verwendeter Medikamente, die hier verschrieben werden können.",
|
|
@@ -123,8 +134,15 @@
|
|
|
123
134
|
"general.consultation.prescriptions.description": "Wählen oder suchen Sie aus einer Liste häufig verwendeter Medikamente, die hier verschrieben werden können.",
|
|
124
135
|
"general.consultation.prescriptions.title": "Rezeptanfrage",
|
|
125
136
|
"general.consultation.summary.download": "Zusammenfassung herunterladen",
|
|
137
|
+
"general.consultation.summary.sickNote": "Arbeitsunfähigkeitsbescheinigungen",
|
|
138
|
+
"general.consultation.summary.sickNote.days": "{{days}} Tage",
|
|
126
139
|
"general.consultation.text.description": "Stellen Sie eine medizinische Frage per Text und erhalten Sie eine diskrete Antwort von einem qualifizierten Arzt in wenigen Minuten.",
|
|
127
140
|
"general.consultation.text.title": "Schriftliche Beratung",
|
|
141
|
+
"general.consultation.videoConsultation.description": "Rufen Sie einen registrierten, örtlichen Arzt an. Innerhalb von 5 Minuten wird ein Termin vermittelt. Der Arzt kann Diagnosen stellen und Rezepte ausstellen, wenn er es für angemessen hält.",
|
|
142
|
+
"general.consultation.videoConsultation.ending": "beendet die Videosprechstunde.",
|
|
143
|
+
"general.consultation.videoConsultation.hcpCanRecall": "Dies dauert in der Regel weniger als 5 Minuten.\nFalls erforderlich, kann der Arzt Sie erneut anrufen, um weitere Informationen zu erfragen.",
|
|
144
|
+
"general.consultation.videoConsultation.isPreparingSummary": "Die Zusammenfassung wird vorbereitet.",
|
|
145
|
+
"general.consultation.videoConsultation.summary": "Zusammenfassung der Videosprechstunde",
|
|
128
146
|
"general.consultation.videoConsultation.title": "Video-Beratung",
|
|
129
147
|
"general.consultations.answer.end_consultation": "Beratung beenden",
|
|
130
148
|
"general.prescriptionRequest.question.hint": "Dies hilft dem Arzt, Ihre Antworten auf die vorherigen Fragen besser zu verstehen.",
|
|
@@ -260,6 +278,7 @@
|
|
|
260
278
|
"referral.level.title": "Aufgrund der Antwort des Arztes wurde Ihrem medizinischen Fall die folgende Dringlichkeitsstufe zugewiesen:",
|
|
261
279
|
"responding": "antwortet auf Ihren Fall.",
|
|
262
280
|
"reviewing": "überprüft Ihre Anfrage.",
|
|
281
|
+
"reviewing.video": "prüft Ihre Anfrage.\nIn Kürze sehen Sie eine Schaltfläche, um dem Videoanruf beizutreten.",
|
|
263
282
|
"sanofi.professional_assessment": "Professionelle Bewertung",
|
|
264
283
|
"serviceForm.title": "Um Sie in den ersten Wochen der Behandlung zu unterstützen und Ihre Erfahrung zu personalisieren, fragen wir nach einigen allgemeinen Informationen.",
|
|
265
284
|
"settings.clinical_guidelines": "Klinische Richtlinien",
|
|
@@ -344,5 +363,25 @@
|
|
|
344
363
|
"user_information_collection.title": "Um Ihren Antrag beurteilen zu können, benötigt der Arzt die folgenden Informationen:",
|
|
345
364
|
"user_information_collection.title.ilh": "Um Ihren Antrag beurteilen zu können, benötigt der Arzt die folgenden Informationen:",
|
|
346
365
|
"user_information_collection.title.ilh_test": "Um Ihren Antrag beurteilen zu können, benötigt der Arzt die folgenden Informationen:",
|
|
366
|
+
"video.calling.button": "Dem Anruf beitreten",
|
|
367
|
+
"video.calling.midwife_female": "Frau {{name}} ruft Sie an",
|
|
368
|
+
"video.calling.midwife_male": "Herr {{name}} ruft Sie an",
|
|
369
|
+
"video.calling.not_refresh": "BITTE aktualisieren oder schließen Sie das Fenster während des Videoanrufs nicht.",
|
|
370
|
+
"video.calling.not_refresh.app": "BITTE schließen Sie die App während des Videoanrufs nicht.",
|
|
371
|
+
"video.calling.not_refresh.web": "BITTE aktualisieren oder schließen Sie das Fenster während des Videoanrufs nicht.",
|
|
372
|
+
"video.calling.nurse_female": "Frau {{name}} (Pflegekraft) ruft Sie an",
|
|
373
|
+
"video.calling.nurse_male": "Herr {{name}} (Pflegekraft) ruft Sie an",
|
|
374
|
+
"video.calling.person_female": "Frau {{name}} ruft Sie an",
|
|
375
|
+
"video.calling.person_male": "Herr {{name}} ruft Sie an",
|
|
376
|
+
"video.calling.physician_female": "Dr. {{name}} ruft Sie an",
|
|
377
|
+
"video.calling.physician_female.hsbc-hk": "Dr. {{name}} ruft Sie an",
|
|
378
|
+
"video.calling.physician_male": "Dr. {{name}} ruft Sie an",
|
|
379
|
+
"video.calling.physician_male.hsbc-hk": "Dr. {{name}} ruft Sie an",
|
|
380
|
+
"video.calling.psychologist_female": "Frau {{name}} (Psychologin) ruft Sie an",
|
|
381
|
+
"video.calling.psychologist_male": "Herr {{name}} (Psychologe) ruft Sie an",
|
|
382
|
+
"video.camera_and_microphone_access": "Der App den Zugriff auf Kamera und Mikrofon erlauben, um dem Anruf beizutreten.",
|
|
383
|
+
"video.camera_and_microphone_access.highlight": "Zugriff erlauben",
|
|
384
|
+
"video.camera_and_microphone_access.highlight.hsbc-hk": "Zugriff erlauben",
|
|
385
|
+
"video.recalling.button": "Dem Anruf erneut beitreten",
|
|
347
386
|
"view_profile": "PROFIL ANZEIGEN"
|
|
348
387
|
}
|
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
"accessibility.camera_off": "Turn off camera button",
|
|
6
6
|
"accessibility.camera_on": "Turn on camera button",
|
|
7
7
|
"accessibility.end_call": "End call button",
|
|
8
|
+
"accessibility.error.required_fields.description": "Required fields",
|
|
9
|
+
"accessibility.error.required_fields.title": "There was a problem",
|
|
10
|
+
"accessibility.error.required_rating.description": "Rating is required",
|
|
11
|
+
"accessibility.error.required_rating.title": "There was a problem",
|
|
8
12
|
"accessibility.join_the_call": "Join the call button",
|
|
9
13
|
"accessibility.microphone_mute": "Mute microphone button",
|
|
10
14
|
"accessibility.microphone_unmute": "Unmute microphone button",
|
|
@@ -71,6 +75,7 @@
|
|
|
71
75
|
"button.yes_5": "Yes, for 5 mg",
|
|
72
76
|
"button.yes_it_was_negative": "Yes, it was negative",
|
|
73
77
|
"button.yes_it_was_positive": "Yes, it was positive",
|
|
78
|
+
"case_closed.consultation_completed": "Consultation completed",
|
|
74
79
|
"case_closed.description": "Contact Abi for video consultation support.",
|
|
75
80
|
"case_closed.description.medi24": "Contact Medi24 (<a href=\"https://medi24.ch/de\" target=\"_blank\">medi24.ch</a>) for video consultation support.",
|
|
76
81
|
"case_closed.description.medi24-kpt": "Contact Medi24 (<a href=\"https://medi24.ch/de\" target=\"_blank\">medi24.ch</a>) for video consultation support.",
|
|
@@ -540,6 +545,7 @@
|
|
|
540
545
|
"general.consultation.mentalHealthEvaluation.disclaimer.severe": "If you think you may be suffering from severe mental illness, please seek advice from a medical professional.",
|
|
541
546
|
"general.consultation.mentalHealthEvaluation.disclaimer.severe_examples": "Severe mental illness includes Schizophrenia, Bipolar Disorder or Obsessive Compulsive Disorder.",
|
|
542
547
|
"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.",
|
|
548
|
+
"general.consultation.mentalHealthEvaluation.summary": "Wellness Assessment",
|
|
543
549
|
"general.consultation.mentalHealthEvaluation.title": "Wellness Assessment",
|
|
544
550
|
"general.consultation.modal.are_you_sure": "Are you sure you want to cancel this case?",
|
|
545
551
|
"general.consultation.modal.are_you_sure.hsbc-hk": "Are you sure you want to cancel this video consultation?",
|
|
@@ -577,6 +583,9 @@
|
|
|
577
583
|
"general.consultation.voice.title": "Voice Call",
|
|
578
584
|
"general.consultations.answer.end_consultation": "End consultation",
|
|
579
585
|
"general.consultations.answer.end_consultation.hsbc-hk": "Yes, end",
|
|
586
|
+
"general.mentalHealthEvaluation.question.hint": "This will help the doctor to better understand your answers to the previous questions.",
|
|
587
|
+
"general.mentalHealthEvaluation.question.placeholder": "Click here to write",
|
|
588
|
+
"general.mentalHealthEvaluation.question.title": "In your own words, please explain to the doctor how you’ve been feeling.",
|
|
580
589
|
"general.prescriptionRequest.question.hint": "This will help the doctor to better understand your answers to the previous questions.",
|
|
581
590
|
"general.prescriptionRequest.question.placeholder": "Click here to write.",
|
|
582
591
|
"general.prescriptionRequest.question.title": "In your own words, please explain to the doctor why you need this prescription.",
|
|
@@ -594,9 +603,11 @@
|
|
|
594
603
|
"i_consent_to_participate_in_the_programme_as_outlined": "I consent to receive optional SMS reminders and to participate in the program as outlined.",
|
|
595
604
|
"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
605
|
"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>",
|
|
606
|
+
"i_have_read_and_agreed_to_the_terms_conditions.ilh_test": "I have read, and I consent to the <a href='https://ilh.abi.ai/en/terms-of-use'>Terms & Conditions</a>",
|
|
597
607
|
"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>",
|
|
598
608
|
"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
609
|
"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>",
|
|
610
|
+
"i_have_read_and_understood_the_privacy_policy.ilh_test": "I have read, and I consent to the <a href='https://ilh.abi.ai/en/privacy'>Privacy Policy</a>",
|
|
600
611
|
"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>",
|
|
601
612
|
"input.confirm_password": "Confirm Password",
|
|
602
613
|
"input.email": "Email",
|
|
@@ -168,20 +168,20 @@
|
|
|
168
168
|
"survey.adrenalinepen.7.title": "Please enter your weight (specify if it is in pounds, stones, or kilograms).",
|
|
169
169
|
"survey.adrenalinepen.8.title": "Please provide the full name of the doctor (or other healthcare professional) who issued your prescription. ",
|
|
170
170
|
"survey.adrenalinepen.9.title": "What is the exact name and dosage of the medication you were prescribed?",
|
|
171
|
-
"survey.alcohol.1.description": "
|
|
172
|
-
"survey.alcohol.1.title": "
|
|
173
|
-
"survey.alcohol.2.description": "
|
|
174
|
-
"survey.alcohol.2.title": "
|
|
175
|
-
"survey.alcohol.3.description": "
|
|
176
|
-
"survey.alcohol.3.title": "
|
|
177
|
-
"survey.alcohol.4.description": "
|
|
178
|
-
"survey.alcohol.4.title": "
|
|
179
|
-
"survey.alcohol.5.description": "
|
|
180
|
-
"survey.alcohol.5.title": "
|
|
181
|
-
"survey.alcohol.6.description": "
|
|
182
|
-
"survey.alcohol.6.title": "
|
|
183
|
-
"survey.alcohol.7.description": "
|
|
184
|
-
"survey.alcohol.7.title": "
|
|
171
|
+
"survey.alcohol.1.description": "In the past thirty (30) days...",
|
|
172
|
+
"survey.alcohol.1.title": "I spent too much time drinking.",
|
|
173
|
+
"survey.alcohol.2.description": "In the past thirty (30) days...",
|
|
174
|
+
"survey.alcohol.2.title": "I drank heavily at a single sitting.",
|
|
175
|
+
"survey.alcohol.3.description": "In the past thirty (30) days...",
|
|
176
|
+
"survey.alcohol.3.title": "I drank too much.",
|
|
177
|
+
"survey.alcohol.4.description": "In the past thirty (30) days...",
|
|
178
|
+
"survey.alcohol.4.title": "I drank more than planned.",
|
|
179
|
+
"survey.alcohol.5.description": "In the past thirty (30) days...",
|
|
180
|
+
"survey.alcohol.5.title": "I had trouble controlling my drinking.",
|
|
181
|
+
"survey.alcohol.6.description": "In the past thirty (30) days...",
|
|
182
|
+
"survey.alcohol.6.title": "It was difficult for me to stop drinking after one or two drinks.",
|
|
183
|
+
"survey.alcohol.7.description": "In the past thirty (30) days...",
|
|
184
|
+
"survey.alcohol.7.title": "It was difficult to get the thought of drinking out of my mind.",
|
|
185
185
|
"survey.allergic_conjunctivitis.1.description": "Redness, itching, watering and/or irritation of the eyes associated to hay fever season.",
|
|
186
186
|
"survey.allergic_conjunctivitis.1.title": "Have you experienced any of the following?",
|
|
187
187
|
"survey.allergic_conjunctivitis.2.title": "Have you had a previous reaction to any eye drops?",
|
|
@@ -224,20 +224,20 @@
|
|
|
224
224
|
"survey.allergies.7.title": "Please read the following instructions:",
|
|
225
225
|
"survey.allergies.8.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.",
|
|
226
226
|
"survey.allergies.8.title": "Please read carefully:",
|
|
227
|
-
"survey.anxiety.1.description": "
|
|
228
|
-
"survey.anxiety.1.title": "
|
|
229
|
-
"survey.anxiety.2.description": "
|
|
230
|
-
"survey.anxiety.2.title": "
|
|
231
|
-
"survey.anxiety.3.description": "
|
|
232
|
-
"survey.anxiety.3.title": "
|
|
233
|
-
"survey.anxiety.4.description": "
|
|
234
|
-
"survey.anxiety.4.title": "
|
|
235
|
-
"survey.anxiety.5.description": "
|
|
236
|
-
"survey.anxiety.5.title": "
|
|
237
|
-
"survey.anxiety.6.description": "
|
|
238
|
-
"survey.anxiety.6.title": "
|
|
239
|
-
"survey.anxiety.7.description": "
|
|
240
|
-
"survey.anxiety.7.title": "
|
|
227
|
+
"survey.anxiety.1.description": "In the past seven (7) days...",
|
|
228
|
+
"survey.anxiety.1.title": "I felt fearful.",
|
|
229
|
+
"survey.anxiety.2.description": "In the past seven (7) days...",
|
|
230
|
+
"survey.anxiety.2.title": "I felt anxious.",
|
|
231
|
+
"survey.anxiety.3.description": "In the past seven (7) days...",
|
|
232
|
+
"survey.anxiety.3.title": "I felt worried.",
|
|
233
|
+
"survey.anxiety.4.description": "In the past seven (7) days...",
|
|
234
|
+
"survey.anxiety.4.title": "I found it hard to focus on anything other than my anxiety.",
|
|
235
|
+
"survey.anxiety.5.description": "In the past seven (7) days...",
|
|
236
|
+
"survey.anxiety.5.title": "I felt nervous.",
|
|
237
|
+
"survey.anxiety.6.description": "In the past seven (7) days...",
|
|
238
|
+
"survey.anxiety.6.title": "I felt uneasy.",
|
|
239
|
+
"survey.anxiety.7.description": "In the past seven (7) days...",
|
|
240
|
+
"survey.anxiety.7.title": "I felt tense.",
|
|
241
241
|
"survey.asthma(refill).1.title": "Have you been diagnosed with asthma by a doctor?",
|
|
242
242
|
"survey.asthma(refill).10.title": "Are you breastfeeding, pregnant or do you think you might be pregnant?",
|
|
243
243
|
"survey.asthma(refill).11.description": "• Overactive thyroid gland.\n• Heart problems (such as an irregular or fast heartbeat) or angina.\n• High blood pressure.\n• Any serious medical conditions which may require immediate hospitalisation.",
|
|
@@ -363,22 +363,22 @@
|
|
|
363
363
|
"survey.cystitis.7.title": "Please list any and all medications you are currently taking.",
|
|
364
364
|
"survey.cystitis.8.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.",
|
|
365
365
|
"survey.cystitis.8.title": "Do you agree to the following?",
|
|
366
|
-
"survey.depression.1.description": "
|
|
367
|
-
"survey.depression.1.title": "
|
|
368
|
-
"survey.depression.2.description": "
|
|
369
|
-
"survey.depression.2.title": "
|
|
370
|
-
"survey.depression.3.description": "
|
|
371
|
-
"survey.depression.3.title": "
|
|
372
|
-
"survey.depression.4.description": "
|
|
373
|
-
"survey.depression.4.title": "
|
|
374
|
-
"survey.depression.5.description": "
|
|
375
|
-
"survey.depression.5.title": "
|
|
376
|
-
"survey.depression.6.description": "
|
|
377
|
-
"survey.depression.6.title": "
|
|
378
|
-
"survey.depression.7.description": "
|
|
379
|
-
"survey.depression.7.title": "
|
|
380
|
-
"survey.depression.8.description": "
|
|
381
|
-
"survey.depression.8.title": "
|
|
366
|
+
"survey.depression.1.description": "In the past seven (7) days...",
|
|
367
|
+
"survey.depression.1.title": "I felt worthless.",
|
|
368
|
+
"survey.depression.2.description": "In the past seven (7) days...",
|
|
369
|
+
"survey.depression.2.title": "I felt that I had nothing to look forward to.",
|
|
370
|
+
"survey.depression.3.description": "In the past seven (7) days...",
|
|
371
|
+
"survey.depression.3.title": "I felt helpless.",
|
|
372
|
+
"survey.depression.4.description": "In the past seven (7) days...",
|
|
373
|
+
"survey.depression.4.title": "I felt sad.",
|
|
374
|
+
"survey.depression.5.description": "In the past seven (7) days...",
|
|
375
|
+
"survey.depression.5.title": "I felt like a failure.",
|
|
376
|
+
"survey.depression.6.description": "In the past seven (7) days...",
|
|
377
|
+
"survey.depression.6.title": "I felt depressed.",
|
|
378
|
+
"survey.depression.7.description": "In the past seven (7) days...",
|
|
379
|
+
"survey.depression.7.title": "I felt unhappy.",
|
|
380
|
+
"survey.depression.8.description": "In the past seven (7) days...",
|
|
381
|
+
"survey.depression.8.title": "I felt hopeless.",
|
|
382
382
|
"survey.dry_eyes.1.description": "• Scratchy feeling in your eye.\n• Stinging or burning feeling in your eye.\n• Red eyes.\n• Sensitivity to light.\n• Blurred vision.",
|
|
383
383
|
"survey.dry_eyes.1.title": "Do you have any of the following symptoms?",
|
|
384
384
|
"survey.dry_eyes.2.title": "Are you breastfeeding, pregnant or do you think you might be pregnant?",
|
|
@@ -104,20 +104,20 @@
|
|
|
104
104
|
"survey.acne.8.title": "¿Estás de acuerdo con lo siguiente?",
|
|
105
105
|
"survey.acne.9.description": "Confirmas que has respondido a todas las preguntas anteriores con exactitud y veracidad. \n\nReconoces que facilitar información incorrecta o incompleta puede ser perjudicial para tu salud. \n\nTe comprometes a leer el prospecto que acompaña a su medicación. \n\nTe pondrás en contacto con un médico o farmacéutico si sientes molestias o no desaparece algún efecto secundario.",
|
|
106
106
|
"survey.acne.9.title": "¿Estás de acuerdo con lo siguiente?",
|
|
107
|
-
"survey.alcohol.1.description": "
|
|
108
|
-
"survey.alcohol.1.title": "
|
|
109
|
-
"survey.alcohol.2.description": "
|
|
110
|
-
"survey.alcohol.2.title": "
|
|
111
|
-
"survey.alcohol.3.description": "
|
|
112
|
-
"survey.alcohol.3.title": "
|
|
113
|
-
"survey.alcohol.4.description": "
|
|
114
|
-
"survey.alcohol.4.title": "
|
|
115
|
-
"survey.alcohol.5.description": "
|
|
116
|
-
"survey.alcohol.5.title": "
|
|
117
|
-
"survey.alcohol.6.description": "
|
|
118
|
-
"survey.alcohol.6.title": "
|
|
119
|
-
"survey.alcohol.7.description": "
|
|
120
|
-
"survey.alcohol.7.title": "
|
|
107
|
+
"survey.alcohol.1.description": "En los últimos treinta (30) días...",
|
|
108
|
+
"survey.alcohol.1.title": "Pasas demasiado tiempo bebiendo.",
|
|
109
|
+
"survey.alcohol.2.description": "En los últimos treinta (30) días...",
|
|
110
|
+
"survey.alcohol.2.title": "Bebí mucho de una sola vez.",
|
|
111
|
+
"survey.alcohol.3.description": "En los últimos treinta (30) días...",
|
|
112
|
+
"survey.alcohol.3.title": "He bebido demasiado.",
|
|
113
|
+
"survey.alcohol.4.description": "En los últimos treinta (30) días...",
|
|
114
|
+
"survey.alcohol.4.title": "He bebido más de lo previsto.",
|
|
115
|
+
"survey.alcohol.5.description": "En los últimos treinta (30) días...",
|
|
116
|
+
"survey.alcohol.5.title": "He tenido problemas para controlar la bebida.",
|
|
117
|
+
"survey.alcohol.6.description": "En los últimos treinta (30) días...",
|
|
118
|
+
"survey.alcohol.6.title": "Me resultaba difícil dejar de beber después de una o dos copas.",
|
|
119
|
+
"survey.alcohol.7.description": "En los últimos treinta (30) días...",
|
|
120
|
+
"survey.alcohol.7.title": "Me resultaba difícil quitarme de la cabeza la idea de beber.",
|
|
121
121
|
"survey.allergic_conjunctivitis.1.description": "Enrojecimiento, picazón, lagrimeo y/o irritación de los ojos asociados a la temporada de rinitis alérgica.",
|
|
122
122
|
"survey.allergic_conjunctivitis.1.title": "¿Has experimentado alguno de los siguientes?",
|
|
123
123
|
"survey.allergic_conjunctivitis.2.title": "¿Has tenido alguna reacción previa a algún colirio?",
|
|
@@ -160,20 +160,20 @@
|
|
|
160
160
|
"survey.allergies.7.title": "Por favor, lee las siguientes instrucciones:",
|
|
161
161
|
"survey.allergies.8.description": "Confirmas que has respondido a todas las preguntas anteriores con exactitud y veracidad. \n\nReconoces que facilitar información incorrecta o incompleta puede ser perjudicial para tu salud. \n\nTe comprometes a leer el prospecto que acompaña a su medicación. \n\nTe pondrás en contacto con un médico o farmacéutico si sientes molestias o no desaparece algún efecto secundario.",
|
|
162
162
|
"survey.allergies.8.title": "Por favor, lee atentamente:",
|
|
163
|
-
"survey.anxiety.1.description": "
|
|
164
|
-
"survey.anxiety.1.title": "
|
|
165
|
-
"survey.anxiety.2.description": "
|
|
166
|
-
"survey.anxiety.2.title": "
|
|
167
|
-
"survey.anxiety.3.description": "
|
|
168
|
-
"survey.anxiety.3.title": "
|
|
169
|
-
"survey.anxiety.4.description": "
|
|
170
|
-
"survey.anxiety.4.title": "
|
|
171
|
-
"survey.anxiety.5.description": "
|
|
172
|
-
"survey.anxiety.5.title": "
|
|
173
|
-
"survey.anxiety.6.description": "
|
|
174
|
-
"survey.anxiety.6.title": "
|
|
175
|
-
"survey.anxiety.7.description": "
|
|
176
|
-
"survey.anxiety.7.title": "
|
|
163
|
+
"survey.anxiety.1.description": "En los últimos siete (7) días...",
|
|
164
|
+
"survey.anxiety.1.title": "Sentí miedo.",
|
|
165
|
+
"survey.anxiety.2.description": "En los últimos siete (7) días...",
|
|
166
|
+
"survey.anxiety.2.title": "Sentí ansiedad.",
|
|
167
|
+
"survey.anxiety.3.description": "En los últimos siete (7) días...",
|
|
168
|
+
"survey.anxiety.3.title": "Me sentí preocupado/a.",
|
|
169
|
+
"survey.anxiety.4.description": "En los últimos siete (7) días...",
|
|
170
|
+
"survey.anxiety.4.title": "Me resultaba difícil concentrarme en otra cosa que no fuera mi ansiedad.",
|
|
171
|
+
"survey.anxiety.5.description": "En los últimos siete (7) días...",
|
|
172
|
+
"survey.anxiety.5.title": "Me sentía nervioso.",
|
|
173
|
+
"survey.anxiety.6.description": "En los últimos siete (7) días...",
|
|
174
|
+
"survey.anxiety.6.title": "Me sentía intranquilo/a.",
|
|
175
|
+
"survey.anxiety.7.description": "En los últimos siete (7) días...",
|
|
176
|
+
"survey.anxiety.7.title": "Me sentí tenso/a.",
|
|
177
177
|
"survey.asthma(refill).1.title": "¿Te ha diagnosticado asma un médico?",
|
|
178
178
|
"survey.asthma(refill).10.title": "¿Estás amamantando, embarazada o crees que podrías estar embarazada?",
|
|
179
179
|
"survey.asthma(refill).11.description": "- Hiperactividad de la glándula tiroides.\n- Problemas cardíacos (como latidos irregulares o rápidos) o angina de pecho.\n- Hipertensión arterial.\n- Cualquier afección médica grave que pueda requerir hospitalización inmediata.",
|
|
@@ -298,22 +298,22 @@
|
|
|
298
298
|
"survey.cystitis.7.title": "Indica todos los medicamentos que tomas actualmente.",
|
|
299
299
|
"survey.cystitis.8.description": "Confirmas que has respondido a todas las preguntas anteriores con exactitud y veracidad. \n\nReconoces que facilitar información incorrecta o incompleta puede ser perjudicial para tu salud. \n\nTe comprometes a leer el prospecto que acompaña a su medicación. \n\nTe pondrás en contacto con un médico o farmacéutico si sientes molestias o no desaparece algún efecto secundario.",
|
|
300
300
|
"survey.cystitis.8.title": "¿Estás de acuerdo con lo siguiente?",
|
|
301
|
-
"survey.depression.1.description": "
|
|
302
|
-
"survey.depression.1.title": "
|
|
303
|
-
"survey.depression.2.description": "
|
|
304
|
-
"survey.depression.2.title": "
|
|
305
|
-
"survey.depression.3.description": "
|
|
306
|
-
"survey.depression.3.title": "
|
|
307
|
-
"survey.depression.4.description": "
|
|
308
|
-
"survey.depression.4.title": "
|
|
309
|
-
"survey.depression.5.description": "
|
|
310
|
-
"survey.depression.5.title": "
|
|
311
|
-
"survey.depression.6.description": "
|
|
312
|
-
"survey.depression.6.title": "
|
|
313
|
-
"survey.depression.7.description": "
|
|
314
|
-
"survey.depression.7.title": "
|
|
315
|
-
"survey.depression.8.description": "
|
|
316
|
-
"survey.depression.8.title": "
|
|
301
|
+
"survey.depression.1.description": "En los últimos siete (7) días...",
|
|
302
|
+
"survey.depression.1.title": "Me sentía inútil.",
|
|
303
|
+
"survey.depression.2.description": "En los últimos siete (7) días...",
|
|
304
|
+
"survey.depression.2.title": "Sentí que no tenía nada que esperar.",
|
|
305
|
+
"survey.depression.3.description": "En los últimos siete (7) días...",
|
|
306
|
+
"survey.depression.3.title": "Me sentí impotente.",
|
|
307
|
+
"survey.depression.4.description": "En los últimos siete (7) días...",
|
|
308
|
+
"survey.depression.4.title": "Me sentí triste.",
|
|
309
|
+
"survey.depression.5.description": "En los últimos siete (7) días...",
|
|
310
|
+
"survey.depression.5.title": "Me sentí fracasado.",
|
|
311
|
+
"survey.depression.6.description": "En los últimos siete (7) días...",
|
|
312
|
+
"survey.depression.6.title": "Me sentí deprimido.",
|
|
313
|
+
"survey.depression.7.description": "En los últimos siete (7) días...",
|
|
314
|
+
"survey.depression.7.title": "Me sentí infeliz.",
|
|
315
|
+
"survey.depression.8.description": "En los últimos siete (7) días...",
|
|
316
|
+
"survey.depression.8.title": "No tenía esperanzas.",
|
|
317
317
|
"survey.dry_eyes.1.description": "- Sensación de picazón en el ojo.\n- Sensación de picazón o quemazón en el ojo.\n- Ojos rojos.\n- Sensibilidad a la luz.\n- Visión borrosa.",
|
|
318
318
|
"survey.dry_eyes.1.title": "¿Tienes alguno de los siguientes síntomas?",
|
|
319
319
|
"survey.dry_eyes.2.title": "¿Estás en periodo de lactancia, embarazada o crees que podrías estarlo?",
|