@hedia/recommendation-screen 2.2.0-alpha.44 → 2.2.0-alpha.5
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/dist/index.js +0 -1
- package/dist/src/RecommendationScreen.d.ts +67 -64
- package/dist/src/RecommendationScreen.js +145 -157
- package/dist/src/assets/assets/activity/Cyclist.png +0 -0
- package/dist/src/assets/assets/activity/Other.png +0 -0
- package/dist/src/assets/assets/activity/Runner.png +0 -0
- package/dist/src/assets/assets/activity/Swimmer.png +0 -0
- package/dist/src/assets/assets/activity/Walk.png +0 -0
- package/dist/src/assets/assets/fonts/Poppins-Bold.ttf +0 -0
- package/dist/src/assets/assets/fonts/Poppins-SemiBold.ttf +0 -0
- package/dist/src/assets/assets/icons/Edit.tsx +22 -0
- package/dist/src/assets/assets/icons/X.tsx +14 -0
- package/dist/src/assets/assets/mood/happy.png +0 -0
- package/dist/src/assets/assets/mood/happy_active.png +0 -0
- package/dist/src/assets/assets/mood/neutral.png +0 -0
- package/dist/src/assets/assets/mood/neutral_active.png +0 -0
- package/dist/src/assets/assets/mood/sad.png +0 -0
- package/dist/src/assets/assets/mood/sad_active.png +0 -0
- package/dist/src/assets/assets/mood/semi_happy.png +0 -0
- package/dist/src/assets/assets/mood/semi_happy_active.png +0 -0
- package/dist/src/assets/assets/mood/semi_sad.png +0 -0
- package/dist/src/assets/assets/mood/semi_sad_active.png +0 -0
- package/dist/src/assets/icons/Edit.d.ts +4 -0
- package/dist/src/assets/icons/Edit.js +7 -0
- package/dist/src/assets/{IconsSVG/Edit.d.ts → icons/X.d.ts} +2 -2
- package/dist/src/assets/icons/X.js +6 -0
- package/dist/src/components/ForecastInfoBar.d.ts +109 -0
- package/dist/src/components/ForecastInfoBar.js +138 -0
- package/dist/src/components/Header.d.ts +8 -0
- package/dist/src/components/Header.js +54 -0
- package/dist/src/components/Icon.d.ts +20 -0
- package/dist/src/components/Icon.js +43 -0
- package/dist/src/components/InfoBars.d.ts +28 -13
- package/dist/src/components/InfoBars.js +63 -33
- package/dist/src/components/InvisibleNumberInput.d.ts +3 -8
- package/dist/src/components/InvisibleNumberInput.js +20 -22
- package/dist/src/components/LimitationMessage.d.ts +14 -0
- package/dist/src/components/LimitationMessage.js +30 -0
- package/dist/src/components/LineSeparator.d.ts +1 -5
- package/dist/src/components/LineSeparator.js +3 -2
- package/dist/src/components/RecentInsulin.d.ts +1 -2
- package/dist/src/components/RecentInsulin.js +40 -57
- package/dist/src/components/RecommendationModal.d.ts +63 -61
- package/dist/src/components/RecommendationModal.js +118 -133
- package/dist/src/components/RecommendedCarbs.d.ts +0 -2
- package/dist/src/components/RecommendedCarbs.js +99 -82
- package/dist/src/components/RecommendedInsulin.d.ts +1 -1
- package/dist/src/components/RecommendedInsulin.js +72 -56
- package/dist/src/components/Remeasure.d.ts +15 -5
- package/dist/src/components/Remeasure.js +77 -50
- package/dist/src/components/{TransferToLogbook.d.ts → SaveButton.d.ts} +2 -2
- package/dist/src/components/{TransferToLogbook.js → SaveButton.js} +30 -27
- package/dist/src/components/TwoOptionModal.d.ts +136 -0
- package/dist/src/components/TwoOptionModal.js +141 -0
- package/dist/src/components/activity/Activity.d.ts +2 -2
- package/dist/src/components/activity/Activity.js +49 -58
- package/dist/src/components/activity/ActivityIcon.d.ts +7 -7
- package/dist/src/components/activity/ActivityIcon.js +29 -37
- package/dist/src/components/activity/ActivityIntensity.d.ts +1 -1
- package/dist/src/components/activity/ActivityIntensity.js +23 -20
- package/dist/src/components/mood/Emotion.d.ts +1 -1
- package/dist/src/components/mood/Emotion.js +16 -21
- package/dist/src/components/mood/MoodIcon.d.ts +5 -4
- package/dist/src/components/mood/MoodIcon.js +23 -28
- package/dist/src/components/text/TextBold.d.ts +8 -0
- package/dist/src/components/text/TextBold.js +12 -0
- package/dist/src/components/text/TextRegular.d.ts +8 -0
- package/dist/src/components/text/TextRegular.js +12 -0
- package/dist/src/locale/da/messages.js +1 -0
- package/dist/src/locale/da/messages.po +353 -0
- package/dist/src/locale/de/messages.js +1 -0
- package/dist/src/locale/de/messages.po +353 -0
- package/dist/src/locale/en/messages.js +1 -0
- package/dist/src/locale/en/messages.po +353 -0
- package/dist/src/locale/es/messages.js +1 -0
- package/dist/src/locale/es/messages.po +353 -0
- package/dist/src/locale/fr/messages.js +1 -0
- package/dist/src/locale/fr/messages.po +353 -0
- package/dist/src/locale/i18nUtils.d.ts +18 -0
- package/dist/src/locale/i18nUtils.js +39 -0
- package/dist/src/locale/it/messages.js +1 -0
- package/dist/src/locale/it/messages.po +353 -0
- package/dist/src/types/enum.d.ts +15 -21
- package/dist/src/types/enum.js +18 -27
- package/dist/src/types/types.js +0 -1
- package/dist/src/utils/AttentionMessages.js +24 -29
- package/dist/src/utils/Constants.d.ts +3 -17
- package/dist/src/utils/Constants.js +1 -16
- package/dist/src/utils/RecommendationError.js +24 -26
- package/dist/src/utils/RecommendationUtils.js +2 -5
- package/dist/src/utils/Translations.js +5 -5
- package/dist/src/utils/Utils.d.ts +1 -1
- package/dist/src/utils/Utils.js +0 -1
- package/dist/src/utils/Validations.d.ts +1 -1
- package/dist/src/utils/Validations.js +2 -3
- package/package.json +99 -89
- package/dist/index.js.map +0 -1
- package/dist/src/RecommendationScreen.js.map +0 -1
- package/dist/src/assets/IconsSVG/Close.d.ts +0 -4
- package/dist/src/assets/IconsSVG/Close.js +0 -7
- package/dist/src/assets/IconsSVG/Close.js.map +0 -1
- package/dist/src/assets/IconsSVG/CloseOutlined.d.ts +0 -4
- package/dist/src/assets/IconsSVG/CloseOutlined.js +0 -9
- package/dist/src/assets/IconsSVG/CloseOutlined.js.map +0 -1
- package/dist/src/assets/IconsSVG/Edit.js +0 -8
- package/dist/src/assets/IconsSVG/Edit.js.map +0 -1
- package/dist/src/assets/IconsSVG/activity/Cycling.d.ts +0 -4
- package/dist/src/assets/IconsSVG/activity/Cycling.js +0 -12
- package/dist/src/assets/IconsSVG/activity/Cycling.js.map +0 -1
- package/dist/src/assets/IconsSVG/activity/Running.d.ts +0 -4
- package/dist/src/assets/IconsSVG/activity/Running.js +0 -10
- package/dist/src/assets/IconsSVG/activity/Running.js.map +0 -1
- package/dist/src/assets/IconsSVG/activity/Stretching.d.ts +0 -4
- package/dist/src/assets/IconsSVG/activity/Stretching.js +0 -10
- package/dist/src/assets/IconsSVG/activity/Stretching.js.map +0 -1
- package/dist/src/assets/IconsSVG/activity/Swimming.d.ts +0 -4
- package/dist/src/assets/IconsSVG/activity/Swimming.js +0 -13
- package/dist/src/assets/IconsSVG/activity/Swimming.js.map +0 -1
- package/dist/src/assets/IconsSVG/activity/Walking.d.ts +0 -4
- package/dist/src/assets/IconsSVG/activity/Walking.js +0 -11
- package/dist/src/assets/IconsSVG/activity/Walking.js.map +0 -1
- package/dist/src/assets/IconsSVG/mood/Happy.d.ts +0 -4
- package/dist/src/assets/IconsSVG/mood/Happy.js +0 -11
- package/dist/src/assets/IconsSVG/mood/Happy.js.map +0 -1
- package/dist/src/assets/IconsSVG/mood/Neutral.d.ts +0 -4
- package/dist/src/assets/IconsSVG/mood/Neutral.js +0 -11
- package/dist/src/assets/IconsSVG/mood/Neutral.js.map +0 -1
- package/dist/src/assets/IconsSVG/mood/Sad.d.ts +0 -4
- package/dist/src/assets/IconsSVG/mood/Sad.js +0 -11
- package/dist/src/assets/IconsSVG/mood/Sad.js.map +0 -1
- package/dist/src/assets/IconsSVG/mood/SemiHappy.d.ts +0 -4
- package/dist/src/assets/IconsSVG/mood/SemiHappy.js +0 -11
- package/dist/src/assets/IconsSVG/mood/SemiHappy.js.map +0 -1
- package/dist/src/assets/IconsSVG/mood/SemiSad.d.ts +0 -4
- package/dist/src/assets/IconsSVG/mood/SemiSad.js +0 -11
- package/dist/src/assets/IconsSVG/mood/SemiSad.js.map +0 -1
- package/dist/src/components/ExitModal.d.ts +0 -25
- package/dist/src/components/ExitModal.js +0 -91
- package/dist/src/components/ExitModal.js.map +0 -1
- package/dist/src/components/InfoBars.js.map +0 -1
- package/dist/src/components/InvisibleNumberInput.js.map +0 -1
- package/dist/src/components/LineSeparator.js.map +0 -1
- package/dist/src/components/RecentInsulin.js.map +0 -1
- package/dist/src/components/RecommendationModal.js.map +0 -1
- package/dist/src/components/RecommendedCarbs.js.map +0 -1
- package/dist/src/components/RecommendedInsulin.js.map +0 -1
- package/dist/src/components/Remeasure.js.map +0 -1
- package/dist/src/components/Text.d.ts +0 -13
- package/dist/src/components/Text.js +0 -14
- package/dist/src/components/Text.js.map +0 -1
- package/dist/src/components/TimeoutModal.d.ts +0 -24
- package/dist/src/components/TimeoutModal.js +0 -84
- package/dist/src/components/TimeoutModal.js.map +0 -1
- package/dist/src/components/TransferToLogbook.js.map +0 -1
- package/dist/src/components/activity/Activity.js.map +0 -1
- package/dist/src/components/activity/ActivityIcon.js.map +0 -1
- package/dist/src/components/activity/ActivityIntensity.js.map +0 -1
- package/dist/src/components/mood/Emotion.js.map +0 -1
- package/dist/src/components/mood/MoodIcon.js.map +0 -1
- package/dist/src/components/styles/fonts.d.ts +0 -143
- package/dist/src/components/styles/fonts.js +0 -145
- package/dist/src/components/styles/fonts.js.map +0 -1
- package/dist/src/locales/da/translations.json +0 -82
- package/dist/src/locales/de/translations.json +0 -81
- package/dist/src/locales/en/translations.json +0 -84
- package/dist/src/locales/es/translations.json +0 -81
- package/dist/src/locales/fr/translations.json +0 -81
- package/dist/src/locales/it/translations.json +0 -81
- package/dist/src/locales/translate.d.ts +0 -19
- package/dist/src/locales/translate.js +0 -53
- package/dist/src/locales/translate.js.map +0 -1
- package/dist/src/types/enum.js.map +0 -1
- package/dist/src/types/types.js.map +0 -1
- package/dist/src/utils/AttentionMessages.js.map +0 -1
- package/dist/src/utils/Constants.js.map +0 -1
- package/dist/src/utils/RecommendationError.js.map +0 -1
- package/dist/src/utils/RecommendationUtils.js.map +0 -1
- package/dist/src/utils/Translations.js.map +0 -1
- package/dist/src/utils/Utils.js.map +0 -1
- package/dist/src/utils/Validations.js.map +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"Active Insulin": "Insulina activa",
|
|
3
|
-
"Activity": "Actividad",
|
|
4
|
-
"Additional": "Adicional",
|
|
5
|
-
"Attention": "Atención",
|
|
6
|
-
"Based on the selected activity your insulin recommendation is reduced by:": "Según la actividad seleccionada, su recomendación de insulina se reduce en un:",
|
|
7
|
-
"Blood Glucose Level": "Glucosa en sangre",
|
|
8
|
-
"Blood Ketone Level": "Nivel de cetonas en sangre",
|
|
9
|
-
"Carbohydrates": "Hidratos de carbono",
|
|
10
|
-
"Close calculation": "Cerrar calculación",
|
|
11
|
-
"Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.": "Contemple no iniciar ninguna actividad física antes de que su nivel de glucosa en sangre se encuentre dentro del rango recomendado antes de una actividad física.",
|
|
12
|
-
"Enter Manually": "Introducción manual",
|
|
13
|
-
"Entered": "Introducido",
|
|
14
|
-
"Error. Hedia Calculator does not support an insulin dose greater than {SAFETY_INSULIN_LIMIT} units": "Error. La calculadora de Hedia no admite una dosis de insulina superior a {SAFETY_INSULIN_LIMIT} unidades.",
|
|
15
|
-
"Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours": "Error. La calculadora de Hedia no admite recomendaciones de insulina con bolos anteriores a 4 horas.",
|
|
16
|
-
"Error. Hedia Calculator does not support your activity intensity value": "Error. La calculadora de Hedia no admite su valor de intensidad de actividad.",
|
|
17
|
-
"Error. Hedia Calculator does not support your activity type value": "Error. La calculadora de Hedia no admite su valor de tipo de actividad.",
|
|
18
|
-
"Error. Hedia Calculator does not support your current blood glucose level.": "Error. La calculadora de Hedia no admite tu glucosa en sangre actual.",
|
|
19
|
-
"Error. Hedia Calculator does not support your current blood glucose unit.": "Error. La calculadora de Hedia no admite su unidad de glucosa en sangre actual.",
|
|
20
|
-
"Error. Hedia Calculator does not support your current blood ketone level.": "Error. La calculadora de Hedia no admite su nivel de cetonas en sangre actual.",
|
|
21
|
-
"Error. Hedia Calculator does not support your current blood ketone unit.": "Error. La calculadora de Hedia no admite su unidad de cetonas en sangre actual.",
|
|
22
|
-
"Error. Hedia Calculator does not support your current language.": "Error. La calculadora de Hedia no admite su idioma actual.",
|
|
23
|
-
"Error. Hedia Calculator does not support your injection method.": "Error. La calculadora de Hedia no admite su método de inyección.",
|
|
24
|
-
"Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.": "Error. La calculadora de Hedia solo admite actividades con una duración máxima de 60 minutos.",
|
|
25
|
-
"Error. Please verify that your activity settings are set up correctly.": "Error. Compruebe si la configuración de su actividad es correcta.",
|
|
26
|
-
"Error. Please verify that your activity target blood glucose value is correct.": "Error. Compruebe si el valor deseado de glucosa en sangre de su actividad es correcto.",
|
|
27
|
-
"Error. Please verify that your insulin sensitivity value is correct.": "Error. Compruebe si el valor de su sensibilidad a la insulina es correcto.",
|
|
28
|
-
"Error. Please verify that your insulin to carb ratio value is correct.": "Error. Compruebe si el valor de su proporción insulina-carbohidratos es correcto.",
|
|
29
|
-
"Error. Please verify that your target blood glucose value is correct.": "Error. Compruebe si el valor deseado de glucosa en sangre es correcto.",
|
|
30
|
-
"Error. Please verify your notifications settings.": "Error. Compruebe la configuración de las notificaciones.",
|
|
31
|
-
"Food": "Comida",
|
|
32
|
-
"grams": "gramos",
|
|
33
|
-
"grams of carbohydrates": "gramos de hidratos de carbono",
|
|
34
|
-
"Hard": "Intensa",
|
|
35
|
-
"Have you taken insulin within the last 4 hours?": "¿Ha tomado insulina en las últimas 4 horas?",
|
|
36
|
-
"Hedia Calculator does not support activities that finished more than 4 hours ago.": "La calculadora de Hedia no admite actividades que finalizaron hace más de 4 horas.",
|
|
37
|
-
"Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.": "La calculadora de Hedia no admite recomendaciones de insulina con más de 300 gramos de hidratos de carbono presentes.",
|
|
38
|
-
"Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.": "Hedia no admite más de {SAFETY_INSULIN_LIMIT} unidades de insulina por calculación.",
|
|
39
|
-
"Hedia doesn't support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation, but because of the physical activity you entered it has been further reduced by {0}% to {1} units for this calculation.": "Hedia no admite más de {SAFETY_INSULIN_LIMIT} unidades de insulina por calculación, pero debido a la actividad física que ha introducido, se ha reducido adicionalmente en un {0}% a {1} unidades para esta calculación.",
|
|
40
|
-
"hours": "horas",
|
|
41
|
-
"How are you feeling?": "¿Qué tal te encuentras?",
|
|
42
|
-
"If it is possible, postpone your planned exercise.": "Si es posible, posponga el ejercicio que tenía previsto hacer.",
|
|
43
|
-
"Instead of taking insulin": "En lugar de tomar insulina",
|
|
44
|
-
"Insulin recommendation": "Recomendación de insulina",
|
|
45
|
-
"Light": "Ligera",
|
|
46
|
-
"min": "min",
|
|
47
|
-
"Moderate": "Moderada",
|
|
48
|
-
"More than 15 minutes has passed since this calculation was started.": "Han pasado más de 15 minutos desde que comenzó la calculación.",
|
|
49
|
-
"NO": "NO",
|
|
50
|
-
"No": "No",
|
|
51
|
-
"No, return to dashboard": "No, volver al panel",
|
|
52
|
-
"OFF": "APAGADO",
|
|
53
|
-
"OK": "ACEPTAR",
|
|
54
|
-
"Please go through the calculation steps with new measurements to ensure a safe recommendation.": "Por favor, repita los pasos de la calculación con nuevas mediciones para garantizar una recomendación segura.",
|
|
55
|
-
"Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?": "La recomendación del {day} a las {time} no se ha transferido a su diario.{0}¿Utilizó la recomendación?",
|
|
56
|
-
"Recommended": "Recomendado",
|
|
57
|
-
"Recommended amount of insulin": "Cantidad recomendada de insulina",
|
|
58
|
-
"Remind me to remeasure in": "Recordar hacer una nueva medición en",
|
|
59
|
-
"Return to dashboard": "Volver al panel",
|
|
60
|
-
"Save data before closing?": "¿Guardar los datos antes de cerrar?",
|
|
61
|
-
"Save to logbook": "Guardar en el diario",
|
|
62
|
-
"Start new calculation": "Iniciar nueva calculación",
|
|
63
|
-
"Total": "Total",
|
|
64
|
-
"Transfer to logbook": "Transferir al diario",
|
|
65
|
-
"Transferred to logbook": "Transferido al diario",
|
|
66
|
-
"Units": "Unidades",
|
|
67
|
-
"units": "unidades",
|
|
68
|
-
"Untitled Activity": "Actividad sin nombre",
|
|
69
|
-
"We recommend eating an additional:": "Recomendamos comer adicionalmente:",
|
|
70
|
-
"Would you like to add this to your current calculation?": "¿Quiere añadirlo a su calculación actual?",
|
|
71
|
-
"Yes": "Sí",
|
|
72
|
-
"Yes, save to logbook": "Sí, guardar en el diario",
|
|
73
|
-
"You have a high blood glucose level.": "Tiene una glucosa en sangre alta.",
|
|
74
|
-
"You should take rapid-acting insulin and measure ketones.": "Debe tomar insulina de acción rápida y realizar una medición de cetonas.",
|
|
75
|
-
"You will be reminded to measure your blood glucose level in 15 min.": "Se le recordará que mida su glucosa en sangre en 15 minutos.",
|
|
76
|
-
"Your blood glucose level is very low.": "Su glucosa en sangre es muy baja.",
|
|
77
|
-
"Your blood glucose level is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention.": "Su glucosa en sangre es muy baja. Tome glucagón o ingiera carbohidratos si es posible. Busque atención médica.",
|
|
78
|
-
"Your recommendation would have been higher than {0} units of insulin, but it has been limited for safety reasons.{1} Hedia never recommends more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation, but because of the physical activity you entered it has been further reduced by {2}% to {3}.": "Su recomendación habría sido superior a {0} unidades de insulina, pero se ha limitado por razones de seguridad.{1} Hedia nunca recomienda más de {SAFETY_INSULIN_LIMIT} unidades de insulina por calculación, pero debido a la actividad física que ha introducido, se ha reducido adicionalmente en un {2}% a {3}.",
|
|
79
|
-
"Your recommendation would have been higher than {SAFETY_INSULIN_LIMIT} units of insulin, but it has been limited for safety reasons. Hedia never recommends more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.": "Su recomendación habría sido superior a {SAFETY_INSULIN_LIMIT} unidades de insulina, pero se ha limitado por razones de seguridad. Hedia nunca recomienda más de {SAFETY_INSULIN_LIMIT} unidades de insulina por calculación.",
|
|
80
|
-
"Your saved data will be used for future calculations.": "Los datos guardados se utilizarán para futuras calculaciones."
|
|
81
|
-
}
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"Active Insulin": "Insuline active",
|
|
3
|
-
"Activity": "Activité",
|
|
4
|
-
"Additional": "Supplémentaire",
|
|
5
|
-
"Attention": "Attention",
|
|
6
|
-
"Based on the selected activity your insulin recommendation is reduced by:": "Sur la base de l’activité sélectionnée, votre recommandation d’insuline est réduite de :",
|
|
7
|
-
"Blood Glucose Level": "Glycémie",
|
|
8
|
-
"Blood Ketone Level": "Taux de cétonémie",
|
|
9
|
-
"Carbohydrates": "Glucides",
|
|
10
|
-
"Close calculation": "Fermer le calcul",
|
|
11
|
-
"Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.": "Envisagez de ne pas commencer d’activité physique avant que votre taux de glycémie ne soit dans la plage recommandée avant l’activité physique.",
|
|
12
|
-
"Enter Manually": "Saisir manuellement",
|
|
13
|
-
"Entered": "Saisi",
|
|
14
|
-
"Error. Hedia Calculator does not support an insulin dose greater than {SAFETY_INSULIN_LIMIT} units": "Erreur. La calculatrice Hedia ne prend pas en charge une dose d’insuline supérieure à {SAFETY_INSULIN_LIMIT} unités",
|
|
15
|
-
"Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours": "Erreur. La calculatrice Hedia ne prend pas en charge des recommandations d’insuline avec des bolus plus anciens que 4 heures",
|
|
16
|
-
"Error. Hedia Calculator does not support your activity intensity value": "Erreur. La calculatrice Hedia ne prend pas en charge votre valeur d’intensité d’activité",
|
|
17
|
-
"Error. Hedia Calculator does not support your activity type value": "Erreur. La calculatrice Hedia ne prend pas en charge votre valeur de type d’activité",
|
|
18
|
-
"Error. Hedia Calculator does not support your current blood glucose level.": "Erreur. La calculatrice Hedia ne prend pas en charge votre glycémie actuelle.",
|
|
19
|
-
"Error. Hedia Calculator does not support your current blood glucose unit.": "Erreur. La calculatrice Hedia ne prend pas en charge votre unité de glycémie actuelle.",
|
|
20
|
-
"Error. Hedia Calculator does not support your current blood ketone level.": "Erreur. La calculatrice Hedia ne prend pas en charge votre taux de cétonémie actuel.",
|
|
21
|
-
"Error. Hedia Calculator does not support your current blood ketone unit.": "Erreur. La calculatrice Hedia ne prend pas en charge votre unité de cétonémie actuelle.",
|
|
22
|
-
"Error. Hedia Calculator does not support your current language.": "Erreur. La calculatrice Hedia ne prend pas en charge votre langue actuelle.",
|
|
23
|
-
"Error. Hedia Calculator does not support your injection method.": "Erreur. La calculatrice Hedia ne prend pas en charge votre méthode d’injection.",
|
|
24
|
-
"Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.": "Erreur. La calculatrice Hedia ne prend en charge que des activités d’une durée maximale de 60 minutes.",
|
|
25
|
-
"Error. Please verify that your activity settings are set up correctly.": "Erreur. Veuillez vérifier que vos paramètres d’activité sont correctement paramétrés.",
|
|
26
|
-
"Error. Please verify that your activity target blood glucose value is correct.": "Erreur. Veuillez vérifier que votre glycémie désirée pendant l’activité est correct.",
|
|
27
|
-
"Error. Please verify that your insulin sensitivity value is correct.": "Erreur. Veuillez vérifier que votre valeur de sensibilité à l’insuline est correcte.",
|
|
28
|
-
"Error. Please verify that your insulin to carb ratio value is correct.": "Erreur. Veuillez vérifier que votre valeur de rapport insuline/glucides est correcte.",
|
|
29
|
-
"Error. Please verify that your target blood glucose value is correct.": "Erreur. Veuillez vérifier que votre glycémie cible est correct.",
|
|
30
|
-
"Error. Please verify your notifications settings.": "Erreur. Veuillez vérifier vos paramètres de notification.",
|
|
31
|
-
"Food": "Aliments",
|
|
32
|
-
"grams": "grammes",
|
|
33
|
-
"grams of carbohydrates": "grammes de glucides",
|
|
34
|
-
"Hard": "Difficile",
|
|
35
|
-
"Have you taken insulin within the last 4 hours?": "Avez-vous pris de l’insuline au cours des 4 dernières heures ?",
|
|
36
|
-
"Hedia Calculator does not support activities that finished more than 4 hours ago.": "La calculatrice Hedia ne prend pas en charge des activités terminées il y a plus de 4 heures.",
|
|
37
|
-
"Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.": "La calculatrice Hedia ne prend pas en charge des recommandations d’insuline avec plus de 300 grammes de glucides présents.",
|
|
38
|
-
"Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.": "Hedia ne prend pas en charge plus de {SAFETY_INSULIN_LIMIT} unités d’insuline par calcul.",
|
|
39
|
-
"Hedia doesn't support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation, but because of the physical activity you entered it has been further reduced by {0}% to {1} units for this calculation.": "Hedia ne prend pas en charge plus de {SAFETY_INSULIN_LIMIT} unités d’insuline par calcul, mais en raison de l’activité physique que vous avez saisie, ce chiffre a été encore réduit de {0} % à {1} unités pour ce calcul.",
|
|
40
|
-
"hours": "heures",
|
|
41
|
-
"How are you feeling?": "Comment vous sentez-vous ?",
|
|
42
|
-
"If it is possible, postpone your planned exercise.": "Si possible, reportez votre activité prévu.",
|
|
43
|
-
"Instead of taking insulin": "Au lieu de prendre de l’insuline",
|
|
44
|
-
"Insulin recommendation": "Recommandation d’insuline",
|
|
45
|
-
"Light": "Légère",
|
|
46
|
-
"min": "min",
|
|
47
|
-
"Moderate": "Modérée",
|
|
48
|
-
"More than 15 minutes has passed since this calculation was started.": "Plus de 15 minutes se sont écoulées depuis le début de ce calcul.",
|
|
49
|
-
"NO": "NON",
|
|
50
|
-
"No": "Non",
|
|
51
|
-
"No, return to dashboard": "Non, retour au tableau de bord",
|
|
52
|
-
"OFF": "DÉSACTIVÉ",
|
|
53
|
-
"OK": "OK",
|
|
54
|
-
"Please go through the calculation steps with new measurements to ensure a safe recommendation.": "Veuillez suivre les étapes de calcul avec de nouvelles mesures pour vous assurer d’obtenir une recommandation sûre.",
|
|
55
|
-
"Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?": "La recommandation du {day} à {time} n’a pas été transférée à votre journal de bord.{0}Avez-vous suivi la recommandation ?",
|
|
56
|
-
"Recommended": "Recommandé",
|
|
57
|
-
"Recommended amount of insulin": "Dose recommandée d’insuline",
|
|
58
|
-
"Remind me to remeasure in": "Rappelez-moi de mesurer ma glycémie dans",
|
|
59
|
-
"Return to dashboard": "Retour au tableau de bord",
|
|
60
|
-
"Save data before closing?": "Enregistrer les données avant de fermer ?",
|
|
61
|
-
"Save to logbook": "Enregistrer dans le journal de bord",
|
|
62
|
-
"Start new calculation": "Commencer un nouveau calcul",
|
|
63
|
-
"Total": "Total",
|
|
64
|
-
"Transfer to logbook": "Transfert au journal de bord",
|
|
65
|
-
"Transferred to logbook": "Transféré au journal de bord",
|
|
66
|
-
"Units": "Unités",
|
|
67
|
-
"units": "unités",
|
|
68
|
-
"Untitled Activity": "Activité sans titre",
|
|
69
|
-
"We recommend eating an additional:": "Nous vous recommandons de manger en plus :",
|
|
70
|
-
"Would you like to add this to your current calculation?": "Souhaitez-vous ajouter cela à votre calcul actuel ?",
|
|
71
|
-
"Yes": "Oui",
|
|
72
|
-
"Yes, save to logbook": "Oui, enregistrer dans le journal de bord",
|
|
73
|
-
"You have a high blood glucose level.": "Vous avez une valeur de glycémie élevée.",
|
|
74
|
-
"You should take rapid-acting insulin and measure ketones.": "Vous devriez prendre de l’insuline à action rapide et mesurer les cétones.",
|
|
75
|
-
"You will be reminded to measure your blood glucose level in 15 min.": "Il vous sera rappelé de mesurer votre valeur de glycémie dans 15 mn.",
|
|
76
|
-
"Your blood glucose level is very low.": "Votre valeur de glycémie est très faible.",
|
|
77
|
-
"Your blood glucose level is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention.": "Votre valeur de glycémie est très faible. Prenez du glucagon ou mangez des glucides si possible. Consultez un médecin.",
|
|
78
|
-
"Your recommendation would have been higher than {0} units of insulin, but it has been limited for safety reasons.{1} Hedia never recommends more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation, but because of the physical activity you entered it has been further reduced by {2}% to {3}.": "Votre recommandation aurait été supérieure à {0} unités d’insuline, mais elle a été limitée pour des raisons de sécurité.{1} Hedia ne recommande jamais plus de {SAFETY_INSULIN_LIMIT} unités d’insuline par calcul, mais en raison de l’activité physique saisie, elle a été réduite de {2}% à {3}.",
|
|
79
|
-
"Your recommendation would have been higher than {SAFETY_INSULIN_LIMIT} units of insulin, but it has been limited for safety reasons. Hedia never recommends more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.": "Votre recommandation aurait été supérieure à {SAFETY_INSULIN_LIMIT} unités d’insuline, mais elle a été limitée pour des raisons de sécurité. Hedia ne recommande jamais plus de {SAFETY_INSULIN_LIMIT} unités d’insuline par calcul.",
|
|
80
|
-
"Your saved data will be used for future calculations.": "Vos données enregistrées seront utilisées pour des calculs ultérieurs."
|
|
81
|
-
}
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"Active Insulin": "Insulina attiva",
|
|
3
|
-
"Activity": "Attività fisica",
|
|
4
|
-
"Additional": "Ulteriori",
|
|
5
|
-
"Attention": "Attenzione",
|
|
6
|
-
"Based on the selected activity your insulin recommendation is reduced by:": "In base all'attività selezionata, la prescrizione per l'insulina è ridotta di:",
|
|
7
|
-
"Blood Glucose Level": "Indice glicemico",
|
|
8
|
-
"Blood Ketone Level": "Livello di chetoni nel sangue",
|
|
9
|
-
"Carbohydrates": "Carboidrati",
|
|
10
|
-
"Close calculation": "Chiudi calcolo",
|
|
11
|
-
"Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.": "Ricorda di non iniziare l'attività fisica prima che il livello di glucosio nel sangue non sia rientrato negli intervalli raccomandati prima dell'attività fisica.",
|
|
12
|
-
"Enter Manually": "Immetti manualmente",
|
|
13
|
-
"Entered": "Inserito",
|
|
14
|
-
"Error. Hedia Calculator does not support an insulin dose greater than {SAFETY_INSULIN_LIMIT} units": "Errore. Hedia Calculator non supporta una dose di insulina superiore a {SAFETY_INSULIN_LIMIT} unità",
|
|
15
|
-
"Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours": "Errore. Hedia Calculator non supporta le raccomandazioni di insulina con boli più vecchi di 4 ore",
|
|
16
|
-
"Error. Hedia Calculator does not support your activity intensity value": "Errore. Hedia Calculator non supporta il valore dell'intensità dell'attività",
|
|
17
|
-
"Error. Hedia Calculator does not support your activity type value": "Errore. Hedia Calculator non supporta il valore del tipo di attività",
|
|
18
|
-
"Error. Hedia Calculator does not support your current blood glucose level.": "Errore. Hedia Calculator non supporta la tua glicemia attuale.",
|
|
19
|
-
"Error. Hedia Calculator does not support your current blood glucose unit.": "Errore. Hedia Calculator non supporta l'attuale unità misura di glucosio nel sangue.",
|
|
20
|
-
"Error. Hedia Calculator does not support your current blood ketone level.": "Errore. Hedia Calculator non supporta l'attuale livello di chetoni nel sangue.",
|
|
21
|
-
"Error. Hedia Calculator does not support your current blood ketone unit.": "Errore. Hedia Calculator non supporta l'attuale unità di misura di chetoni del sangue.",
|
|
22
|
-
"Error. Hedia Calculator does not support your current language.": "Errore. Hedia Calculator non supporta la lingua corrente.",
|
|
23
|
-
"Error. Hedia Calculator does not support your injection method.": "Errore. Hedia Calculator non supporta il metodo di iniezione.",
|
|
24
|
-
"Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.": "Errore. Hedia Calculator supporta solo attività della durata massima di 60 minuti.",
|
|
25
|
-
"Error. Please verify that your activity settings are set up correctly.": "Errore. Verificare che le impostazioni delle attività siano impostate correttamente.",
|
|
26
|
-
"Error. Please verify that your activity target blood glucose value is correct.": "Errore. Verificare che il indice glicemico desiderato durante l’attività sia corretto.",
|
|
27
|
-
"Error. Please verify that your insulin sensitivity value is correct.": "Errore. Verificare che il valore della sensibilità all'insulina sia corretto.",
|
|
28
|
-
"Error. Please verify that your insulin to carb ratio value is correct.": "Errore. Verificare che il valore del rapporto insulina/carboidrati sia corretto.",
|
|
29
|
-
"Error. Please verify that your target blood glucose value is correct.": "Errore. Verificare che il valore obiettivo della glicemia sia corretto.",
|
|
30
|
-
"Error. Please verify your notifications settings.": "Errore. Verificare le impostazioni di notifica.",
|
|
31
|
-
"Food": "Cibo",
|
|
32
|
-
"grams": "grammi",
|
|
33
|
-
"grams of carbohydrates": "grammi di carboidrati",
|
|
34
|
-
"Hard": "Intensa",
|
|
35
|
-
"Have you taken insulin within the last 4 hours?": "Hai assunto insulina nelle ultime 4 ore?",
|
|
36
|
-
"Hedia Calculator does not support activities that finished more than 4 hours ago.": "Hedia Calculator non supporta attività che siano terminate più di 4 ore fa.",
|
|
37
|
-
"Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.": "Hedia Calculator non supporta le prescrizioni di insulina con più di 300 grammi di carboidrati presenti.",
|
|
38
|
-
"Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.": "Hedia non supporta più di {SAFETY_INSULIN_LIMIT} unità di insulina per ogni calcolo.",
|
|
39
|
-
"Hedia doesn't support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation, but because of the physical activity you entered it has been further reduced by {0}% to {1} units for this calculation.": "Hedia non supporta più di {SAFETY_INSULIN_LIMIT} unità di insulina per ogni calcolo, ma, a seguito dell'attività fisica che hai inserito, è stata ulteriormente ridotta del {0}% a {1} unità per questo calcolo.",
|
|
40
|
-
"hours": "ore",
|
|
41
|
-
"How are you feeling?": "Come ti senti?",
|
|
42
|
-
"If it is possible, postpone your planned exercise.": "Se possibile, posticipa l'allenamento pianificato.",
|
|
43
|
-
"Instead of taking insulin": "Invece di assumere insulina",
|
|
44
|
-
"Insulin recommendation": "Prescrizione di insulina",
|
|
45
|
-
"Light": "Leggera",
|
|
46
|
-
"min": "min",
|
|
47
|
-
"Moderate": "Moderata",
|
|
48
|
-
"More than 15 minutes has passed since this calculation was started.": "Sono passati più di 15 minuti dall'inizio di questo calcolo.",
|
|
49
|
-
"NO": "NO",
|
|
50
|
-
"No": "No",
|
|
51
|
-
"No, return to dashboard": "No, torna al pannello di controllo",
|
|
52
|
-
"OFF": "SPENTO",
|
|
53
|
-
"OK": "OK",
|
|
54
|
-
"Please go through the calculation steps with new measurements to ensure a safe recommendation.": "Completa tutte le fasi del calcolo con nuove misurazioni per assicurare una prescrizione sicura.",
|
|
55
|
-
"Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?": "La prescrizione del {day} alle {time} non è stata trasferita nel tuo diario.{0} Hai usato la prescrizione?",
|
|
56
|
-
"Recommended": "Prescritta",
|
|
57
|
-
"Recommended amount of insulin": "Quantità prescritta di insulina",
|
|
58
|
-
"Remind me to remeasure in": "Ricordami di misurare nuovamente tra",
|
|
59
|
-
"Return to dashboard": "Torna al pannello di controllo",
|
|
60
|
-
"Save data before closing?": "Salvare i dati prima della chiusura?",
|
|
61
|
-
"Save to logbook": "Salva nel diario",
|
|
62
|
-
"Start new calculation": "Inizia il nuovo calcolo",
|
|
63
|
-
"Total": "Totale",
|
|
64
|
-
"Transfer to logbook": "Trasferisci al diario",
|
|
65
|
-
"Transferred to logbook": "Trasferito al diario",
|
|
66
|
-
"Units": "Unità",
|
|
67
|
-
"units": "unità",
|
|
68
|
-
"Untitled Activity": "Attività senza titolo",
|
|
69
|
-
"We recommend eating an additional:": "Consigliamo di ingerire una quantità supplementare:",
|
|
70
|
-
"Would you like to add this to your current calculation?": "Vuoi aggiungere questo al tuo calcolo corrente?",
|
|
71
|
-
"Yes": "Sì",
|
|
72
|
-
"Yes, save to logbook": "Sì, salva nel diario",
|
|
73
|
-
"You have a high blood glucose level.": "Hai un alto indice glicemico.",
|
|
74
|
-
"You should take rapid-acting insulin and measure ketones.": "Devi assumere insulina ad azione rapida e misurare i chetoni.",
|
|
75
|
-
"You will be reminded to measure your blood glucose level in 15 min.": "Ti verrà ricordato di misurare il indice glicemico tra 15 min.",
|
|
76
|
-
"Your blood glucose level is very low.": "Il indice glicemico è molto basso.",
|
|
77
|
-
"Your blood glucose level is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention.": "Il indice glicemico è molto basso. Assumi glucagon o ingerisci carboidrati, se possibile. Rivolgiti a un medico.",
|
|
78
|
-
"Your recommendation would have been higher than {0} units of insulin, but it has been limited for safety reasons.{1} Hedia never recommends more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation, but because of the physical activity you entered it has been further reduced by {2}% to {3}.": "La tua prescrizione sarebbe stata superiore a {0} unità di insulina, ma è stata limitata per motivi di sicurezza.{1} Hedia non prescrive mai più di {SAFETY_INSULIN_LIMIT} unità di insulina per calcolo, ma a seguito dell'attività fisica che hai inserito, questa è stata ulteriormente ridotta del {2}% a {3}.",
|
|
79
|
-
"Your recommendation would have been higher than {SAFETY_INSULIN_LIMIT} units of insulin, but it has been limited for safety reasons. Hedia never recommends more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.": "La tua prescrizione sarebbe stata superiore a {SAFETY_INSULIN_LIMIT} unità di insulina, ma è stata limitata per motivi di sicurezza. Hedia non prescrive mai più di {SAFETY_INSULIN_LIMIT} unità di insulina per calcolo.",
|
|
80
|
-
"Your saved data will be used for future calculations.": "I dati salvati saranno utilizzati per calcoli futuri."
|
|
81
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import "moment/min/locales";
|
|
2
|
-
import { Languages } from "@hedia/types";
|
|
3
|
-
/**
|
|
4
|
-
* Change the language that is used to display text on the recommendation screen.
|
|
5
|
-
*
|
|
6
|
-
* Steps:
|
|
7
|
-
* 1. Set the locale for the date-time library
|
|
8
|
-
* 2. Load the desired language in the memory
|
|
9
|
-
* @param language The language to switch to.
|
|
10
|
-
*/
|
|
11
|
-
export declare const changeLocale: (language: keyof typeof Languages) => void;
|
|
12
|
-
/**
|
|
13
|
-
* Get the translation in the language that was initialised by the changeLocale function.
|
|
14
|
-
*
|
|
15
|
-
* @param textKeys The key for the desired translation.
|
|
16
|
-
* @param values The parameters to be introduced in the translations.
|
|
17
|
-
*/
|
|
18
|
-
declare const translate: (textKeys: string, values?: Record<string, unknown>) => string;
|
|
19
|
-
export { translate as t };
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import "moment/min/locales";
|
|
2
|
-
import moment from "moment";
|
|
3
|
-
/** Internalisation object containing the translations. Call changeLanguage in order to change the language. */
|
|
4
|
-
const languageMap = {
|
|
5
|
-
da: require(`./da/translations.json`),
|
|
6
|
-
en: require(`./en/translations.json`),
|
|
7
|
-
de: require(`./de/translations.json`),
|
|
8
|
-
es: require(`./es/translations.json`),
|
|
9
|
-
fr: require(`./fr/translations.json`),
|
|
10
|
-
it: require(`./it/translations.json`),
|
|
11
|
-
};
|
|
12
|
-
let toLocaleTexts;
|
|
13
|
-
/**
|
|
14
|
-
* Change the language that is used to display text on the recommendation screen.
|
|
15
|
-
*
|
|
16
|
-
* Steps:
|
|
17
|
-
* 1. Set the locale for the date-time library
|
|
18
|
-
* 2. Load the desired language in the memory
|
|
19
|
-
* @param language The language to switch to.
|
|
20
|
-
*/
|
|
21
|
-
export const changeLocale = (language) => {
|
|
22
|
-
moment.locale(language === `en` ? `en-gb` : language);
|
|
23
|
-
toLocaleTexts = languageMap[language];
|
|
24
|
-
};
|
|
25
|
-
/**
|
|
26
|
-
* Get the translation in the language that was initialised by the changeLocale function.
|
|
27
|
-
*
|
|
28
|
-
* @param textKeys The key for the desired translation.
|
|
29
|
-
* @param values The parameters to be introduced in the translations.
|
|
30
|
-
*/
|
|
31
|
-
const translate = (textKeys, values) => {
|
|
32
|
-
const englishTexts = languageMap[`en`];
|
|
33
|
-
const englishText = englishTexts[textKeys];
|
|
34
|
-
const translatedText = toLocaleTexts?.[textKeys];
|
|
35
|
-
if (!englishText && !translatedText) {
|
|
36
|
-
console.warn(`No text/key with value ${textKeys} was found`);
|
|
37
|
-
return textKeys;
|
|
38
|
-
}
|
|
39
|
-
if (!values) {
|
|
40
|
-
return translatedText ?? englishText;
|
|
41
|
-
}
|
|
42
|
-
let translatedTextWithValues = translatedText;
|
|
43
|
-
let englishTextsWithValues = englishText;
|
|
44
|
-
const valuesKeys = Object.keys(values);
|
|
45
|
-
for (const k of valuesKeys) {
|
|
46
|
-
const re = new RegExp(`\\{${k}\\}`, "g");
|
|
47
|
-
translatedTextWithValues = translatedTextWithValues?.replace(re, `${values[k]}`);
|
|
48
|
-
englishTextsWithValues = englishTextsWithValues.replace(re, `${values[k]}`);
|
|
49
|
-
}
|
|
50
|
-
return translatedTextWithValues ?? englishTextsWithValues;
|
|
51
|
-
};
|
|
52
|
-
export { translate as t };
|
|
53
|
-
//# sourceMappingURL=translate.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"translate.js","sourceRoot":"","sources":["../../../src/locales/translate.ts"],"names":[],"mappings":"AAAA,OAAO,oBAAoB,CAAC;AAE5B,OAAO,MAAM,MAAM,QAAQ,CAAC;AAI5B,+GAA+G;AAC/G,MAAM,WAAW,GAA2D;IAC3E,EAAE,EAAE,OAAO,CAAC,wBAAwB,CAAC;IACrC,EAAE,EAAE,OAAO,CAAC,wBAAwB,CAAC;IACrC,EAAE,EAAE,OAAO,CAAC,wBAAwB,CAAC;IACrC,EAAE,EAAE,OAAO,CAAC,wBAAwB,CAAC;IACrC,EAAE,EAAE,OAAO,CAAC,wBAAwB,CAAC;IACrC,EAAE,EAAE,OAAO,CAAC,wBAAwB,CAAC;CACrC,CAAC;AACF,IAAI,aAAqC,CAAC;AAE1C;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,QAAgC,EAAE,EAAE;IAChE,MAAM,CAAC,MAAM,CAAC,QAAQ,KAAK,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC;IACtD,aAAa,GAAG,WAAW,CAAC,QAAQ,CAAC,CAAC;AACvC,CAAC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,SAAS,GAAG,CAAC,QAAgB,EAAE,MAAgC,EAAE,EAAE;IACxE,MAAM,YAAY,GAAG,WAAW,CAAC,IAAI,CAAC,CAAC;IACvC,MAAM,WAAW,GAAW,YAAY,CAAC,QAAQ,CAAC,CAAC;IACnD,MAAM,cAAc,GAAW,aAAa,EAAE,CAAC,QAAQ,CAAC,CAAC;IAEzD,IAAI,CAAC,WAAW,IAAI,CAAC,cAAc,EAAE;QACpC,OAAO,CAAC,IAAI,CAAC,0BAA0B,QAAQ,YAAY,CAAC,CAAC;QAC7D,OAAO,QAAQ,CAAC;KAChB;IAED,IAAI,CAAC,MAAM,EAAE;QACZ,OAAO,cAAc,IAAI,WAAW,CAAC;KACrC;IAED,IAAI,wBAAwB,GAAG,cAAc,CAAC;IAC9C,IAAI,sBAAsB,GAAG,WAAW,CAAC;IACzC,MAAM,UAAU,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IACvC,KAAK,MAAM,CAAC,IAAI,UAAU,EAAE;QAC3B,MAAM,EAAE,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;QACzC,wBAAwB,GAAG,wBAAwB,EAAE,OAAO,CAAC,EAAE,EAAE,GAAG,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;QACjF,sBAAsB,GAAG,sBAAsB,CAAC,OAAO,CAAC,EAAE,EAAE,GAAG,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;KAC5E;IACD,OAAO,wBAAwB,IAAI,sBAAsB,CAAC;AAC3D,CAAC,CAAC;AAEF,OAAO,EAAE,SAAS,IAAI,CAAC,EAAE,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"enum.js","sourceRoot":"","sources":["../../../src/types/enum.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/types/types.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AttentionMessages.js","sourceRoot":"","sources":["../../../src/utils/AttentionMessages.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Constants.js","sourceRoot":"","sources":["../../../src/utils/Constants.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RecommendationError.js","sourceRoot":"","sources":["../../../src/utils/RecommendationError.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,OAAO,EAAE,CAAC,EAAE,MAAM,sBAAsB,CAAC;AACzC,OAAO,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAC;AAExD,MAAM,oBAAoB,GAAG,eAAe,CAAC,SAAS,CAAC,oBAAoB,CAAC;AAE5E;;;;;;GAMG;AACH,MAAM,OAAO,mBAAoB,SAAQ,KAAK;IAC7B,IAAI,CAA0B;IAE9C,YAAY,OAAe,EAAE,IAA6B;QACzD,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IAClB,CAAC;CACD;AAED,+CAA+C;AAC/C,MAAM,CAAC,MAAM,qBAAqB,GAAG,GAAwB,EAAE,CAC9D,IAAI,mBAAmB,CACtB,CAAC,CAAC,wEAAwE,CAAC,EAC3E,uBAAuB,CAAC,gBAAgB,CACxC,CAAC;AAEH,qDAAqD;AACrD,MAAM,CAAC,MAAM,qBAAqB,GAAG,GAAwB,EAAE,CAC9D,IAAI,mBAAmB,CACtB,CAAC,CAAC,yFAAyF,CAAC,EAC5F,uBAAuB,CAAC,gBAAgB,CACxC,CAAC;AAEH,uDAAuD;AACvD,MAAM,CAAC,MAAM,iBAAiB,GAAG,GAAwB,EAAE,CAC1D,IAAI,mBAAmB,CACtB,CAAC,CAAC,mFAAmF,CAAC,EACtF,uBAAuB,CAAC,YAAY,CACpC,CAAC;AAEH,sDAAsD;AACtD,MAAM,CAAC,MAAM,sBAAsB,GAAG,GAAwB,EAAE,CAC/D,IAAI,mBAAmB,CACtB,CAAC,CAAC,wEAAwE,CAAC,EAC3E,uBAAuB,CAAC,iBAAiB,CACzC,CAAC;AAEH,6CAA6C;AAC7C,MAAM,CAAC,MAAM,iBAAiB,GAAG,GAAwB,EAAE,CAC1D,IAAI,mBAAmB,CACtB,CAAC,CAAC,mEAAmE,CAAC,EACtE,uBAAuB,CAAC,YAAY,CACpC,CAAC;AAEH,yDAAyD;AACzD,MAAM,CAAC,MAAM,sBAAsB,GAAG,GAAwB,EAAE,CAC/D,IAAI,mBAAmB,CACtB,CAAC,CAAC,gFAAgF,CAAC,EACnF,uBAAuB,CAAC,iBAAiB,CACzC,CAAC;AAEH,6CAA6C;AAC7C,MAAM,CAAC,MAAM,sBAAsB,GAAG,GAAwB,EAAE,CAC/D,IAAI,mBAAmB,CACtB,CAAC,CACA,8GAA8G,CAC9G,EACD,uBAAuB,CAAC,iBAAiB,CACzC,CAAC;AAEH,4EAA4E;AAC5E,MAAM,CAAC,MAAM,uBAAuB,GAAG,GAAwB,EAAE,CAChE,IAAI,mBAAmB,CACtB,CAAC,CAAC,sEAAsE,CAAC,EACzE,uBAAuB,CAAC,kBAAkB,CAC1C,CAAC;AAEH,+EAA+E;AAC/E,MAAM,CAAC,MAAM,wBAAwB,GAAG,GAAwB,EAAE,CACjE,IAAI,mBAAmB,CACtB,CAAC,CAAC,wEAAwE,CAAC,EAC3E,uBAAuB,CAAC,mBAAmB,CAC3C,CAAC;AAEH,6EAA6E;AAC7E,MAAM,CAAC,MAAM,eAAe,GAAG,GAAwB,EAAE,CACxD,IAAI,mBAAmB,CACtB,CAAC,CAAC,4EAA4E,CAAC,EAC/E,uBAAuB,CAAC,UAAU,CAClC,CAAC;AAEH,+GAA+G;AAC/G,MAAM,CAAC,MAAM,2BAA2B,GAAG,GAAwB,EAAE,CACpE,IAAI,mBAAmB,CACtB,CAAC,CACA,sHAAsH,CACtH,EACD,uBAAuB,CAAC,sBAAsB,CAC9C,CAAC;AAEH,qFAAqF;AACrF,MAAM,CAAC,MAAM,eAAe,GAAG,GAAwB,EAAE,CACxD,IAAI,mBAAmB,CACtB,CAAC,CAAC,2EAA2E,CAAC,EAC9E,uBAAuB,CAAC,UAAU,CAClC,CAAC;AAEH,mEAAmE;AACnE,MAAM,CAAC,MAAM,cAAc,GAAG,GAAwB,EAAE,CACvD,IAAI,mBAAmB,CACtB,CAAC,CAAC,uEAAuE,CAAC,EAC1E,uBAAuB,CAAC,SAAS,CACjC,CAAC;AAEH,gJAAgJ;AAChJ,MAAM,CAAC,MAAM,qBAAqB,GAAG,GAAwB,EAAE,CAC9D,IAAI,mBAAmB,CACtB,CAAC,CAAC,oGAAoG,EAAE;IACvG,oBAAoB;CACpB,CAAC,EACF,uBAAuB,CAAC,gBAAgB,CACxC,CAAC;AAEH,wFAAwF;AACxF,MAAM,CAAC,MAAM,8BAA8B,GAAG,GAAwB,EAAE,CACvE,IAAI,mBAAmB,CACtB,CAAC,CAAC,kGAAkG,CAAC,EACrG,uBAAuB,CAAC,yBAAyB,CACjD,CAAC;AAEH,uEAAuE;AACvE,MAAM,CAAC,MAAM,gBAAgB,GAAG,GAAwB,EAAE,CACzD,IAAI,mBAAmB,CACtB,CAAC,CAAC,4DAA4D,CAAC,EAC/D,uBAAuB,CAAC,WAAW,CACnC,CAAC;AAEH,kFAAkF;AAClF,MAAM,CAAC,MAAM,iBAAiB,GAAG,GAAwB,EAAE,CAC1D,IAAI,mBAAmB,CACtB,CAAC,CAAC,mDAAmD,CAAC,EACtD,uBAAuB,CAAC,YAAY,CACpC,CAAC;AAEH,8DAA8D;AAC9D,MAAM,CAAC,MAAM,oBAAoB,GAAG,GAAwB,EAAE,CAC7D,IAAI,mBAAmB,CACtB,CAAC,CAAC,iEAAiE,CAAC,EACpE,uBAAuB,CAAC,eAAe,CACvC,CAAC;AAEH,uGAAuG;AACvG,MAAM,CAAC,MAAM,aAAa,GAAG,GAAwB,EAAE,CACtD,IAAI,mBAAmB,CACtB,CAAC,CAAC,iEAAiE,CAAC,EACpE,uBAAuB,CAAC,QAAQ,CAChC,CAAC;AAEH,wDAAwD;AACxD,MAAM,CAAC,MAAM,oBAAoB,GAAG,GAAwB,EAAE,CAC7D,IAAI,mBAAmB,CACtB,CAAC,CAAC,0EAA0E,CAAC,EAC7E,uBAAuB,CAAC,eAAe,CACvC,CAAC;AAEH,wEAAwE;AACxE,MAAM,CAAC,MAAM,qBAAqB,GAAG,GAAwB,EAAE,CAC9D,IAAI,mBAAmB,CACtB,CAAC,CAAC,2EAA2E,CAAC,EAC9E,uBAAuB,CAAC,gBAAgB,CACxC,CAAC;AAEH,sGAAsG;AACtG,MAAM,CAAC,MAAM,qBAAqB,GAAG,GAAwB,EAAE,CAC9D,IAAI,mBAAmB,CACtB,CAAC,CAAC,gDAAgD,CAAC,EACnD,uBAAuB,CAAC,gBAAgB,CACxC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RecommendationUtils.js","sourceRoot":"","sources":["../../../src/utils/RecommendationUtils.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Translations.js","sourceRoot":"","sources":["../../../src/utils/Translations.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,OAAO,EAAE,CAAC,EAAE,MAAM,sBAAsB,CAAC;AAEzC;;GAEG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAA2D;IACpG,KAAK,EAAE,GAAW,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC;IAC/B,QAAQ,EAAE,GAAW,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC;IACrC,IAAI,EAAE,GAAW,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC;CAC7B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Utils.js","sourceRoot":"","sources":["../../../src/utils/Utils.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Validations.js","sourceRoot":"","sources":["../../../src/utils/Validations.ts"],"names":[],"mappings":"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"}
|