@hedia/recommendation-screen 2.2.0-alpha.45 → 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.
Files changed (181) hide show
  1. package/dist/index.js +0 -1
  2. package/dist/src/RecommendationScreen.d.ts +67 -64
  3. package/dist/src/RecommendationScreen.js +145 -157
  4. package/dist/src/assets/assets/activity/Cyclist.png +0 -0
  5. package/dist/src/assets/assets/activity/Other.png +0 -0
  6. package/dist/src/assets/assets/activity/Runner.png +0 -0
  7. package/dist/src/assets/assets/activity/Swimmer.png +0 -0
  8. package/dist/src/assets/assets/activity/Walk.png +0 -0
  9. package/dist/src/assets/assets/fonts/Poppins-Bold.ttf +0 -0
  10. package/dist/src/assets/assets/fonts/Poppins-SemiBold.ttf +0 -0
  11. package/dist/src/assets/assets/icons/Edit.tsx +22 -0
  12. package/dist/src/assets/assets/icons/X.tsx +14 -0
  13. package/dist/src/assets/assets/mood/happy.png +0 -0
  14. package/dist/src/assets/assets/mood/happy_active.png +0 -0
  15. package/dist/src/assets/assets/mood/neutral.png +0 -0
  16. package/dist/src/assets/assets/mood/neutral_active.png +0 -0
  17. package/dist/src/assets/assets/mood/sad.png +0 -0
  18. package/dist/src/assets/assets/mood/sad_active.png +0 -0
  19. package/dist/src/assets/assets/mood/semi_happy.png +0 -0
  20. package/dist/src/assets/assets/mood/semi_happy_active.png +0 -0
  21. package/dist/src/assets/assets/mood/semi_sad.png +0 -0
  22. package/dist/src/assets/assets/mood/semi_sad_active.png +0 -0
  23. package/dist/src/assets/icons/Edit.d.ts +4 -0
  24. package/dist/src/assets/icons/Edit.js +7 -0
  25. package/dist/src/assets/{IconsSVG/Edit.d.ts → icons/X.d.ts} +2 -2
  26. package/dist/src/assets/icons/X.js +6 -0
  27. package/dist/src/components/ForecastInfoBar.d.ts +109 -0
  28. package/dist/src/components/ForecastInfoBar.js +138 -0
  29. package/dist/src/components/Header.d.ts +8 -0
  30. package/dist/src/components/Header.js +54 -0
  31. package/dist/src/components/Icon.d.ts +20 -0
  32. package/dist/src/components/Icon.js +43 -0
  33. package/dist/src/components/InfoBars.d.ts +28 -13
  34. package/dist/src/components/InfoBars.js +63 -33
  35. package/dist/src/components/InvisibleNumberInput.d.ts +3 -8
  36. package/dist/src/components/InvisibleNumberInput.js +20 -22
  37. package/dist/src/components/LimitationMessage.d.ts +14 -0
  38. package/dist/src/components/LimitationMessage.js +30 -0
  39. package/dist/src/components/LineSeparator.d.ts +1 -5
  40. package/dist/src/components/LineSeparator.js +3 -2
  41. package/dist/src/components/RecentInsulin.d.ts +1 -2
  42. package/dist/src/components/RecentInsulin.js +40 -57
  43. package/dist/src/components/RecommendationModal.d.ts +63 -61
  44. package/dist/src/components/RecommendationModal.js +118 -133
  45. package/dist/src/components/RecommendedCarbs.d.ts +0 -2
  46. package/dist/src/components/RecommendedCarbs.js +99 -82
  47. package/dist/src/components/RecommendedInsulin.d.ts +1 -1
  48. package/dist/src/components/RecommendedInsulin.js +72 -56
  49. package/dist/src/components/Remeasure.d.ts +15 -5
  50. package/dist/src/components/Remeasure.js +77 -50
  51. package/dist/src/components/{TransferToLogbook.d.ts → SaveButton.d.ts} +2 -2
  52. package/dist/src/components/{TransferToLogbook.js → SaveButton.js} +30 -27
  53. package/dist/src/components/TwoOptionModal.d.ts +136 -0
  54. package/dist/src/components/TwoOptionModal.js +141 -0
  55. package/dist/src/components/activity/Activity.d.ts +2 -2
  56. package/dist/src/components/activity/Activity.js +49 -58
  57. package/dist/src/components/activity/ActivityIcon.d.ts +7 -7
  58. package/dist/src/components/activity/ActivityIcon.js +29 -37
  59. package/dist/src/components/activity/ActivityIntensity.d.ts +1 -1
  60. package/dist/src/components/activity/ActivityIntensity.js +23 -20
  61. package/dist/src/components/mood/Emotion.d.ts +1 -1
  62. package/dist/src/components/mood/Emotion.js +16 -21
  63. package/dist/src/components/mood/MoodIcon.d.ts +5 -4
  64. package/dist/src/components/mood/MoodIcon.js +23 -28
  65. package/dist/src/components/text/TextBold.d.ts +8 -0
  66. package/dist/src/components/text/TextBold.js +12 -0
  67. package/dist/src/components/text/TextRegular.d.ts +8 -0
  68. package/dist/src/components/text/TextRegular.js +12 -0
  69. package/dist/src/locale/da/messages.js +1 -0
  70. package/dist/src/locale/da/messages.po +353 -0
  71. package/dist/src/locale/de/messages.js +1 -0
  72. package/dist/src/locale/de/messages.po +353 -0
  73. package/dist/src/locale/en/messages.js +1 -0
  74. package/dist/src/locale/en/messages.po +353 -0
  75. package/dist/src/locale/es/messages.js +1 -0
  76. package/dist/src/locale/es/messages.po +353 -0
  77. package/dist/src/locale/fr/messages.js +1 -0
  78. package/dist/src/locale/fr/messages.po +353 -0
  79. package/dist/src/locale/i18nUtils.d.ts +18 -0
  80. package/dist/src/locale/i18nUtils.js +39 -0
  81. package/dist/src/locale/it/messages.js +1 -0
  82. package/dist/src/locale/it/messages.po +353 -0
  83. package/dist/src/types/enum.d.ts +15 -21
  84. package/dist/src/types/enum.js +18 -27
  85. package/dist/src/types/types.js +0 -1
  86. package/dist/src/utils/AttentionMessages.js +24 -29
  87. package/dist/src/utils/Constants.d.ts +3 -17
  88. package/dist/src/utils/Constants.js +1 -16
  89. package/dist/src/utils/RecommendationError.js +24 -26
  90. package/dist/src/utils/RecommendationUtils.js +2 -5
  91. package/dist/src/utils/Translations.js +5 -5
  92. package/dist/src/utils/Utils.d.ts +1 -1
  93. package/dist/src/utils/Utils.js +0 -1
  94. package/dist/src/utils/Validations.d.ts +1 -1
  95. package/dist/src/utils/Validations.js +2 -3
  96. package/package.json +99 -89
  97. package/dist/index.js.map +0 -1
  98. package/dist/src/RecommendationScreen.js.map +0 -1
  99. package/dist/src/assets/IconsSVG/Close.d.ts +0 -4
  100. package/dist/src/assets/IconsSVG/Close.js +0 -7
  101. package/dist/src/assets/IconsSVG/Close.js.map +0 -1
  102. package/dist/src/assets/IconsSVG/CloseOutlined.d.ts +0 -4
  103. package/dist/src/assets/IconsSVG/CloseOutlined.js +0 -9
  104. package/dist/src/assets/IconsSVG/CloseOutlined.js.map +0 -1
  105. package/dist/src/assets/IconsSVG/Edit.js +0 -8
  106. package/dist/src/assets/IconsSVG/Edit.js.map +0 -1
  107. package/dist/src/assets/IconsSVG/activity/Cycling.d.ts +0 -4
  108. package/dist/src/assets/IconsSVG/activity/Cycling.js +0 -12
  109. package/dist/src/assets/IconsSVG/activity/Cycling.js.map +0 -1
  110. package/dist/src/assets/IconsSVG/activity/Running.d.ts +0 -4
  111. package/dist/src/assets/IconsSVG/activity/Running.js +0 -10
  112. package/dist/src/assets/IconsSVG/activity/Running.js.map +0 -1
  113. package/dist/src/assets/IconsSVG/activity/Stretching.d.ts +0 -4
  114. package/dist/src/assets/IconsSVG/activity/Stretching.js +0 -10
  115. package/dist/src/assets/IconsSVG/activity/Stretching.js.map +0 -1
  116. package/dist/src/assets/IconsSVG/activity/Swimming.d.ts +0 -4
  117. package/dist/src/assets/IconsSVG/activity/Swimming.js +0 -13
  118. package/dist/src/assets/IconsSVG/activity/Swimming.js.map +0 -1
  119. package/dist/src/assets/IconsSVG/activity/Walking.d.ts +0 -4
  120. package/dist/src/assets/IconsSVG/activity/Walking.js +0 -11
  121. package/dist/src/assets/IconsSVG/activity/Walking.js.map +0 -1
  122. package/dist/src/assets/IconsSVG/mood/Happy.d.ts +0 -4
  123. package/dist/src/assets/IconsSVG/mood/Happy.js +0 -11
  124. package/dist/src/assets/IconsSVG/mood/Happy.js.map +0 -1
  125. package/dist/src/assets/IconsSVG/mood/Neutral.d.ts +0 -4
  126. package/dist/src/assets/IconsSVG/mood/Neutral.js +0 -11
  127. package/dist/src/assets/IconsSVG/mood/Neutral.js.map +0 -1
  128. package/dist/src/assets/IconsSVG/mood/Sad.d.ts +0 -4
  129. package/dist/src/assets/IconsSVG/mood/Sad.js +0 -11
  130. package/dist/src/assets/IconsSVG/mood/Sad.js.map +0 -1
  131. package/dist/src/assets/IconsSVG/mood/SemiHappy.d.ts +0 -4
  132. package/dist/src/assets/IconsSVG/mood/SemiHappy.js +0 -11
  133. package/dist/src/assets/IconsSVG/mood/SemiHappy.js.map +0 -1
  134. package/dist/src/assets/IconsSVG/mood/SemiSad.d.ts +0 -4
  135. package/dist/src/assets/IconsSVG/mood/SemiSad.js +0 -11
  136. package/dist/src/assets/IconsSVG/mood/SemiSad.js.map +0 -1
  137. package/dist/src/components/ExitModal.d.ts +0 -25
  138. package/dist/src/components/ExitModal.js +0 -91
  139. package/dist/src/components/ExitModal.js.map +0 -1
  140. package/dist/src/components/InfoBars.js.map +0 -1
  141. package/dist/src/components/InvisibleNumberInput.js.map +0 -1
  142. package/dist/src/components/LineSeparator.js.map +0 -1
  143. package/dist/src/components/RecentInsulin.js.map +0 -1
  144. package/dist/src/components/RecommendationModal.js.map +0 -1
  145. package/dist/src/components/RecommendedCarbs.js.map +0 -1
  146. package/dist/src/components/RecommendedInsulin.js.map +0 -1
  147. package/dist/src/components/Remeasure.js.map +0 -1
  148. package/dist/src/components/Text.d.ts +0 -13
  149. package/dist/src/components/Text.js +0 -14
  150. package/dist/src/components/Text.js.map +0 -1
  151. package/dist/src/components/TimeoutModal.d.ts +0 -24
  152. package/dist/src/components/TimeoutModal.js +0 -84
  153. package/dist/src/components/TimeoutModal.js.map +0 -1
  154. package/dist/src/components/TransferToLogbook.js.map +0 -1
  155. package/dist/src/components/activity/Activity.js.map +0 -1
  156. package/dist/src/components/activity/ActivityIcon.js.map +0 -1
  157. package/dist/src/components/activity/ActivityIntensity.js.map +0 -1
  158. package/dist/src/components/mood/Emotion.js.map +0 -1
  159. package/dist/src/components/mood/MoodIcon.js.map +0 -1
  160. package/dist/src/components/styles/fonts.d.ts +0 -143
  161. package/dist/src/components/styles/fonts.js +0 -145
  162. package/dist/src/components/styles/fonts.js.map +0 -1
  163. package/dist/src/locales/da/translations.json +0 -82
  164. package/dist/src/locales/de/translations.json +0 -81
  165. package/dist/src/locales/en/translations.json +0 -84
  166. package/dist/src/locales/es/translations.json +0 -81
  167. package/dist/src/locales/fr/translations.json +0 -81
  168. package/dist/src/locales/it/translations.json +0 -81
  169. package/dist/src/locales/translate.d.ts +0 -19
  170. package/dist/src/locales/translate.js +0 -53
  171. package/dist/src/locales/translate.js.map +0 -1
  172. package/dist/src/types/enum.js.map +0 -1
  173. package/dist/src/types/types.js.map +0 -1
  174. package/dist/src/utils/AttentionMessages.js.map +0 -1
  175. package/dist/src/utils/Constants.js.map +0 -1
  176. package/dist/src/utils/RecommendationError.js.map +0 -1
  177. package/dist/src/utils/RecommendationUtils.js.map +0 -1
  178. package/dist/src/utils/Translations.js.map +0 -1
  179. package/dist/src/utils/Utils.js.map +0 -1
  180. package/dist/src/utils/Validations.js.map +0 -1
  181. package/dist/tsconfig.tsbuildinfo +0 -1
@@ -1 +0,0 @@
1
- {"version":3,"file":"MoodIcon.js","sourceRoot":"","sources":["../../../../src/components/mood/MoodIcon.tsx"],"names":[],"mappings":"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"}
@@ -1,143 +0,0 @@
1
- export declare enum FontFamily {
2
- PoppinsBold = "Poppins-Bold",
3
- PoppinsMedium = "Poppins-Medium",
4
- PoppinsRegular = "Poppins-Regular",
5
- OswaldMedium = "Oswald-Medium"
6
- }
7
- export declare const FONTS: {
8
- Oswald: {
9
- bold_7XL: {
10
- fontFamily: FontFamily;
11
- fontSize: number;
12
- lineHeight: number;
13
- };
14
- };
15
- Poppins: {
16
- bold_4XL: {
17
- fontFamily: FontFamily;
18
- fontSize: number;
19
- lineHeight: number;
20
- };
21
- bold_3XL: {
22
- fontFamily: FontFamily;
23
- fontSize: number;
24
- lineHeight: number;
25
- };
26
- bold_2XL: {
27
- fontFamily: FontFamily;
28
- fontSize: number;
29
- lineHeight: number;
30
- };
31
- bold_XL: {
32
- fontFamily: FontFamily;
33
- fontSize: number;
34
- lineHeight: number;
35
- };
36
- medium_XL: {
37
- fontFamily: FontFamily;
38
- fontSize: number;
39
- lineHeight: number;
40
- };
41
- medium_2XL: {
42
- fontFamily: FontFamily;
43
- fontSize: number;
44
- lineHeight: number;
45
- };
46
- bold_LG: {
47
- fontFamily: FontFamily;
48
- fontSize: number;
49
- lineHeight: number;
50
- };
51
- medium_LG: {
52
- fontFamily: FontFamily;
53
- fontSize: number;
54
- lineHeight: number;
55
- };
56
- regular_LG: {
57
- fontFamily: FontFamily;
58
- fontSize: number;
59
- lineHeight: number;
60
- };
61
- bold_Base: {
62
- fontFamily: FontFamily;
63
- fontSize: number;
64
- lineHeight: number;
65
- };
66
- medium_Base: {
67
- fontFamily: FontFamily;
68
- fontSize: number;
69
- lineHeight: number;
70
- };
71
- regular_Base: {
72
- fontFamily: FontFamily;
73
- fontSize: number;
74
- lineHeight: number;
75
- };
76
- bold_SM: {
77
- fontFamily: FontFamily;
78
- fontSize: number;
79
- lineHeight: number;
80
- };
81
- medium_SM: {
82
- fontFamily: FontFamily;
83
- fontSize: number;
84
- lineHeight: number;
85
- };
86
- regular_SM: {
87
- fontFamily: FontFamily;
88
- fontSize: number;
89
- lineHeight: number;
90
- };
91
- bold_XS: {
92
- fontFamily: FontFamily;
93
- fontSize: number;
94
- lineHeight: number;
95
- };
96
- medium_XS: {
97
- fontFamily: FontFamily;
98
- fontSize: number;
99
- lineHeight: number;
100
- };
101
- regular_XS: {
102
- fontFamily: FontFamily;
103
- fontSize: number;
104
- lineHeight: number;
105
- };
106
- bold_XXS: {
107
- fontFamily: FontFamily;
108
- fontSize: number;
109
- lineHeight: number;
110
- };
111
- medium_XXS: {
112
- fontFamily: FontFamily;
113
- fontSize: number;
114
- lineHeight: number;
115
- };
116
- };
117
- };
118
- export declare const ICONS: {
119
- XXXXL: {
120
- fontSize: number;
121
- };
122
- XXXL: {
123
- fontSize: number;
124
- };
125
- XXL: {
126
- fontSize: number;
127
- };
128
- XL: {
129
- fontSize: number;
130
- };
131
- M: {
132
- fontSize: number;
133
- };
134
- SM: {
135
- fontSize: number;
136
- };
137
- XS: {
138
- fontSize: number;
139
- };
140
- XXS: {
141
- fontSize: number;
142
- };
143
- };
@@ -1,145 +0,0 @@
1
- export var FontFamily;
2
- (function (FontFamily) {
3
- FontFamily["PoppinsBold"] = "Poppins-Bold";
4
- FontFamily["PoppinsMedium"] = "Poppins-Medium";
5
- FontFamily["PoppinsRegular"] = "Poppins-Regular";
6
- FontFamily["OswaldMedium"] = "Oswald-Medium";
7
- })(FontFamily || (FontFamily = {}));
8
- export const FONTS = {
9
- Oswald: {
10
- bold_7XL: {
11
- fontFamily: FontFamily.OswaldMedium,
12
- fontSize: 80,
13
- lineHeight: 120,
14
- },
15
- },
16
- Poppins: {
17
- bold_4XL: {
18
- fontFamily: FontFamily.PoppinsBold,
19
- fontSize: 36,
20
- lineHeight: 40,
21
- },
22
- bold_3XL: {
23
- fontFamily: FontFamily.PoppinsBold,
24
- fontSize: 30,
25
- lineHeight: 36,
26
- },
27
- bold_2XL: {
28
- fontFamily: FontFamily.PoppinsBold,
29
- fontSize: 24,
30
- lineHeight: 32,
31
- },
32
- bold_XL: {
33
- fontFamily: FontFamily.PoppinsBold,
34
- fontSize: 20,
35
- lineHeight: 28,
36
- },
37
- medium_XL: {
38
- fontFamily: FontFamily.PoppinsMedium,
39
- fontSize: 20,
40
- lineHeight: 28,
41
- },
42
- medium_2XL: {
43
- fontFamily: FontFamily.PoppinsMedium,
44
- fontSize: 24,
45
- lineHeight: 32,
46
- },
47
- bold_LG: {
48
- fontFamily: FontFamily.PoppinsBold,
49
- fontSize: 18,
50
- lineHeight: 28,
51
- },
52
- medium_LG: {
53
- fontFamily: FontFamily.PoppinsMedium,
54
- fontSize: 18,
55
- lineHeight: 28,
56
- },
57
- regular_LG: {
58
- fontFamily: FontFamily.PoppinsRegular,
59
- fontSize: 18,
60
- lineHeight: 28,
61
- },
62
- bold_Base: {
63
- fontFamily: FontFamily.PoppinsBold,
64
- fontSize: 16,
65
- lineHeight: 24,
66
- },
67
- medium_Base: {
68
- fontFamily: FontFamily.PoppinsMedium,
69
- fontSize: 16,
70
- lineHeight: 24,
71
- },
72
- regular_Base: {
73
- fontFamily: FontFamily.PoppinsRegular,
74
- fontSize: 16,
75
- lineHeight: 24,
76
- },
77
- bold_SM: {
78
- fontFamily: FontFamily.PoppinsBold,
79
- fontSize: 14,
80
- lineHeight: 21,
81
- },
82
- medium_SM: {
83
- fontFamily: FontFamily.PoppinsMedium,
84
- fontSize: 14,
85
- lineHeight: 21,
86
- },
87
- regular_SM: {
88
- fontFamily: FontFamily.PoppinsRegular,
89
- fontSize: 14,
90
- lineHeight: 21,
91
- },
92
- bold_XS: {
93
- fontFamily: FontFamily.PoppinsBold,
94
- fontSize: 12,
95
- lineHeight: 16,
96
- },
97
- medium_XS: {
98
- fontFamily: FontFamily.PoppinsMedium,
99
- fontSize: 12,
100
- lineHeight: 16,
101
- },
102
- regular_XS: {
103
- fontFamily: FontFamily.PoppinsRegular,
104
- fontSize: 12,
105
- lineHeight: 18,
106
- },
107
- bold_XXS: {
108
- fontFamily: FontFamily.PoppinsBold,
109
- fontSize: 9,
110
- lineHeight: 13,
111
- },
112
- medium_XXS: {
113
- fontFamily: FontFamily.PoppinsMedium,
114
- fontSize: 9,
115
- lineHeight: 13,
116
- },
117
- },
118
- };
119
- export const ICONS = {
120
- XXXXL: {
121
- fontSize: 36,
122
- },
123
- XXXL: {
124
- fontSize: 30,
125
- },
126
- XXL: {
127
- fontSize: 24,
128
- },
129
- XL: {
130
- fontSize: 20,
131
- },
132
- M: {
133
- fontSize: 16,
134
- },
135
- SM: {
136
- fontSize: 14,
137
- },
138
- XS: {
139
- fontSize: 12,
140
- },
141
- XXS: {
142
- fontSize: 10,
143
- },
144
- };
145
- //# sourceMappingURL=fonts.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"fonts.js","sourceRoot":"","sources":["../../../../src/components/styles/fonts.ts"],"names":[],"mappings":"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"}
@@ -1,82 +0,0 @@
1
- {
2
- "Active Insulin": "Aktiv insulin",
3
- "Activity": "Aktivitet",
4
- "Additional": "Supplerende",
5
- "Attention": "OBS",
6
- "Based on the selected activity your insulin recommendation is reduced by:": "Baseret på din valgte aktivitet er din insulin anbefaling reduceret med:",
7
- "Blood Glucose Level": "Blodsukker",
8
- "Blood Ketone Level": "Blodketonniveau",
9
- "Carbohydrates": "Kulhydrater",
10
- "Close calculation": "Luk beregning",
11
- "Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.": "Dit blodsukker ligger udenfor de anbefalede grænser for blodsukker før en aktivitet. Du bør overveje at udskyde fysisk aktivitet.",
12
- "Enter Manually": "Indtast manuelt",
13
- "Entered": "Indtastet",
14
- "Error. Hedia Calculator does not support an insulin dose greater than {SAFETY_INSULIN_LIMIT} units": "Ups! Hedia kan ikke anbefale mere end {SAFETY_INSULIN_LIMIT} enheder hurtigtvirkende insulin i én dosis",
15
- "Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours": "Ups! Indtast kun de hurtigtvirkende insulindoser der er under 4 timer gamle, så tager Hedia højde for aktiv insulin",
16
- "Error. Hedia Calculator does not support your activity intensity value": "Ups! Hedia har lavet en fejl. Vælg venligst intensitet for aktivitet igen",
17
- "Error. Hedia Calculator does not support your activity type value": "Ups! Der er sket en fejl ved den valgte aktivitetstype. Gå venligst til “aktivitet” og indtast type igen",
18
- "Error. Hedia Calculator does not support your current blood glucose level.": "Ups! Hedia har lavet en fejl. Indtast venligst en blodsukkerværdi indenfor Hedia’s definerede grænser for blodsukker",
19
- "Error. Hedia Calculator does not support your current blood glucose unit.": "Ups! Gå venligst til indstillinger blodsukker og opdater blodsukker enhed til mmol/L eller mg/dL",
20
- "Error. Hedia Calculator does not support your current blood ketone level.": "Fejl. Hedia beregneren understøtter ikke dit nuværende blodketonniveau.",
21
- "Error. Hedia Calculator does not support your current blood ketone unit.": "Fejl. Hedia beregneren understøtter ikke din nuværende blodketon enhed.",
22
- "Error. Hedia Calculator does not support your current language.": "Ups! Gå venligst til indstillinger for sprog og vælg dansk eller engelsk",
23
- "Error. Hedia Calculator does not support your injection method.": "Ups! Gå venligst til indstillinger for insulinberegner og vælg behandlingstype",
24
- "Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.": "Ups! Hedia har lavet en fejl. Indtast venligst en aktivitet på max 60 minutters varighed",
25
- "Error. Please verify that your activity settings are set up correctly.": "Ups! Gå venligst til indstillinger for aktivitet og bekræft at de er korrekte",
26
- "Error. Please verify that your activity target blood glucose value is correct.": "Ups! Gå venligst til indstillinger for aktivitet og bekræft at dit ønskede blodsukker er korrekt",
27
- "Error. Please verify that your insulin sensitivity value is correct.": "Ups! Gå venligst til insulinindstillinger under indstillinger for insulinberegner og bekræft at din insulin sensitivitet er korrekt",
28
- "Error. Please verify that your insulin to carb ratio value is correct.": "Ups! Gå venligst til insulinindstillinger under indstillinger for insulinberegner og bekræft at din kulhydrat-insulinratio er korrekt",
29
- "Error. Please verify that your target blood glucose value is correct.": "Ups! Gå venligst til indstillinger for blodsukker og bekræft at dit ønskede blodsukker er indstillet efter dine personlige mål",
30
- "Error. Please verify your notifications settings.": "Ups! Gå venligst til indstillinger for notifikationer og bekræft at notifikationer er indstillet korrekt",
31
- "Error. Your blood ketone settings are invalid.": "Fejl. Dine blodketonindstillinger er ugyldige.",
32
- "Food": "Mad",
33
- "grams": "gram",
34
- "grams of carbohydrates": "gram kulhydrater",
35
- "Hard": "Hård",
36
- "Have you taken insulin within the last 4 hours?": "Har du taget insulin inden for de sidste 4 timer?",
37
- "Hedia Calculator does not support activities that finished more than 4 hours ago.": "Ups! Det lader til at du bruger en gammel version af Hedia. Det er ikke længere muligt at indtaste tidligere aktiviter i Hedia.",
38
- "Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.": "Ups! Hedia har lavet en fejl. Indtast venligst en værdi mellem 0 og 300 gram",
39
- "Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.": "Hedia understøtter maksimalt {SAFETY_INSULIN_LIMIT} enheder af insulin per beregning",
40
- "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 understøtter maksimalt {SAFETY_INSULIN_LIMIT} enheder af insulin per beregning men på grund af den fysiske aktivitet du har indtastet, er grænsen reduceret med yderligere {0}% til {1} enheder for denne beregning.",
41
- "hours": "timer",
42
- "How are you feeling?": "Hvordan har du det?",
43
- "If it is possible, postpone your planned exercise.": "Hvis det er muligt, udsæt din planlagte træning.",
44
- "Instead of taking insulin": "I stedet for at tage insulin",
45
- "Insulin recommendation": "Insulin anbefaling",
46
- "Light": "Let",
47
- "min": "min",
48
- "Moderate": "Moderat",
49
- "More than 15 minutes has passed since this calculation was started.": "Der er gået mere end 15 minutter siden udregningen blev startet.",
50
- "NO": "NEJ",
51
- "No": "Nej",
52
- "No, return to dashboard": "Nej, tilbage til dashboard",
53
- "OFF": "OFF",
54
- "OK": "OK",
55
- "Please go through the calculation steps with new measurements to ensure a safe recommendation.": "Gå venligst gennem udregningstrinnene igen med nye målinger for at sikre en sikker anbefaling.",
56
- "Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?": "Hedia's anbefaling fra {day} kl. {time} blev ikke overført til din logbog.{0}Brugte du anbefalingen?",
57
- "Recommended": "Anbefalet",
58
- "Recommended amount of insulin": "Anbefalet enhed(er) af insulin",
59
- "Remind me to remeasure in": "Påmind mig at genmåle om",
60
- "Return to dashboard": "Tilbage til dashboard",
61
- "Save data before closing?": "Vil du gemme din indtastning?",
62
- "Save to logbook": "Gem i logbog",
63
- "Start new calculation": "Start ny beregning",
64
- "Total": "Sum",
65
- "Transfer to logbook": "Overfør til logbog",
66
- "Transferred to logbook": "Overført til logbog",
67
- "Units": "Enheder",
68
- "units": "enheder",
69
- "Untitled Activity": "Unavngivet aktivitet",
70
- "We recommend eating an additional:": "Vi anbefaler at spise yderligere:",
71
- "Would you like to add this to your current calculation?": "Vil du gerne tilføje dette til din nuværende beregning?",
72
- "Yes": "Ja",
73
- "Yes, save to logbook": "Ja, gem i logbogen",
74
- "You have a high blood glucose level.": "Du har højt blodsukker.",
75
- "You should take rapid-acting insulin and measure ketones.": "Du burde tage hurtigtvirkende insulin og måle ketoner.",
76
- "You will be reminded to measure your blood glucose level in 15 min.": "Du vil få en påmindelse om at måle dit blodsukker om 15 minutter.",
77
- "Your blood glucose level is very low.": "Dit blodsukker er meget lavt.",
78
- "Your blood glucose level is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention.": "Dit blodsukker er meget lavt. Tag glukagon eller spis kulhydrater, hvis det er muligt. Søg lægehjælp.",
79
- "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}.": "Din anbefaling ville have været højere end {0} enheder af insulin men den er blevet begrænset af sikkerhedshensyn.{1} Hedia anbefaler aldrig mere end {SAFETY_INSULIN_LIMIT} enheder af insulin per beregning men på grund af den fysiske aktivitet du har indtastet er grænsen reduceret med yderligere {2}% til {3}.",
80
- "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.": "Din anbefaling ville have været højere end {SAFETY_INSULIN_LIMIT} enheder af insulin men den er blevet begrænset af sikkerhedshensyn. Hedia anbefaler aldrig mere end {SAFETY_INSULIN_LIMIT} enheder af insulin per beregning.",
81
- "Your saved data will be used for future calculations.": "Dine gemte indtastninger vil blive brugt til fremtidige beregninger."
82
- }
@@ -1,81 +0,0 @@
1
- {
2
- "Active Insulin": "Aktives Insulin",
3
- "Activity": "Aktivität",
4
- "Additional": "Zusätzlich",
5
- "Attention": "Achtung",
6
- "Based on the selected activity your insulin recommendation is reduced by:": "Aufgrund der gewählten Aktivität wird Ihre Insulinempfehlung reduziert um:",
7
- "Blood Glucose Level": "Blutzucker",
8
- "Blood Ketone Level": "Blutketonspiegel",
9
- "Carbohydrates": "Kohlenhydrate",
10
- "Close calculation": "Berechnung schließen",
11
- "Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.": "Betätigen Sie sich erst dann körperlich, wenn Ihr Blutzucker vor der körperlichen Aktivität innerhalb des empfohlenen Wertebereichs liegt.",
12
- "Enter Manually": "Manuell eingeben",
13
- "Entered": "Eingegeben",
14
- "Error. Hedia Calculator does not support an insulin dose greater than {SAFETY_INSULIN_LIMIT} units": "Fehler. Der Hedia-Rechner unterstützt keine Insulindosis, die mehr als {SAFETY_INSULIN_LIMIT} Einheiten hat.",
15
- "Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours": "Fehler. Der Hedia-Rechner unterstützt keine Insulinempfehlungen mit Boli, die älter als 4 Stunden sind.",
16
- "Error. Hedia Calculator does not support your activity intensity value": "Fehler. Der Hedia-Rechner unterstützt den Wert Ihrer Aktivitätsintensität nicht.",
17
- "Error. Hedia Calculator does not support your activity type value": "Fehler. Der Hedia-Rechner unterstützt den Wert des Aktivitätstyps nicht.",
18
- "Error. Hedia Calculator does not support your current blood glucose level.": "Fehler. Der Hedia-Rechner unterstützt Ihren aktuellen Blutzucker nicht.",
19
- "Error. Hedia Calculator does not support your current blood glucose unit.": "Fehler. Der Hedia-Rechner unterstützt Ihre aktuelle Blutzuckereinheit nicht.",
20
- "Error. Hedia Calculator does not support your current blood ketone level.": "Fehler. Der Hedia-Rechner unterstützt Ihren aktuellen Blutketonspiegel nicht.",
21
- "Error. Hedia Calculator does not support your current blood ketone unit.": "Fehler. Der Hedia-Rechner unterstützt Ihre aktuelle Messeinheit für Blutketone nicht.",
22
- "Error. Hedia Calculator does not support your current language.": "Fehler. Der Hedia-Rechner unterstützt Ihre aktuelle Spracheinstellung nicht.",
23
- "Error. Hedia Calculator does not support your injection method.": "Fehler. Der Hedia-Rechner unterstützt Ihre Injektionsmethode nicht.",
24
- "Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.": "Fehler. Der Hedia-Rechner unterstützt nur Aktivitäten mit einer Dauer von maximal 60 Minuten.",
25
- "Error. Please verify that your activity settings are set up correctly.": "Fehler. Bitte überprüfen Sie, ob Ihre Aktivitätseinstellungen korrekt eingestellt sind.",
26
- "Error. Please verify that your activity target blood glucose value is correct.": "Fehler. Bitte überprüfen Sie, ob Ihr gewünschter Blutzuckerwert für Aktivitäten korrekt ist.",
27
- "Error. Please verify that your insulin sensitivity value is correct.": "Fehler. Bitte überprüfen Sie, ob Ihr Insulinintensitätswert korrekt ist.",
28
- "Error. Please verify that your insulin to carb ratio value is correct.": "Fehler. Bitte überprüfen Sie, ob der Wert von Ihrem Insulin-Kohlenhydrat-Verhältnis korrekt ist.",
29
- "Error. Please verify that your target blood glucose value is correct.": "Fehler. Bitte überprüfen Sie, ob Ihr gewünschter Blutzuckerwert korrekt ist.",
30
- "Error. Please verify your notifications settings.": "Fehler. Bitte überprüfen Sie Ihre Benachrichtigungseinstellungen.",
31
- "Food": "Lebensmittel",
32
- "grams": "Gramm",
33
- "grams of carbohydrates": "Gramm Kohlenhydrate",
34
- "Hard": "Hart",
35
- "Have you taken insulin within the last 4 hours?": "Haben Sie innerhalb der letzten 4 Stunden Insulin eingenommen?",
36
- "Hedia Calculator does not support activities that finished more than 4 hours ago.": "Der Hedia-Rechner unterstützt keine Aktivitäten, die vor über 4 Stunden beendet wurden.",
37
- "Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.": "Der Hedia-Rechner unterstützt keine Insulinempfehlungen, die mehr als 300 Gramm Kohlenhydrate enthalten.",
38
- "Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.": "Hedia unterstützt nicht mehr als {SAFETY_INSULIN_LIMIT} Einheiten Insulin pro Berechnung.",
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 unterstützt nicht mehr als {SAFETY_INSULIN_LIMIT} Einheiten Insulin pro Berechnung, aber aufgrund der von Ihnen eingegebenen körperlichen Aktivität wurden sie bei dieser Berechnung um {0}% auf {1} Einheiten weiter reduziert.",
40
- "hours": "Stunden",
41
- "How are you feeling?": "Wie fühlen Sie sich?",
42
- "If it is possible, postpone your planned exercise.": "Wenn möglich, verschieben Sie Ihr geplantes Training.",
43
- "Instead of taking insulin": "Statt der Einnahme von Insulin",
44
- "Insulin recommendation": "Insulin empfehlung",
45
- "Light": "Leicht",
46
- "min": "Minuten",
47
- "Moderate": "Moderat",
48
- "More than 15 minutes has passed since this calculation was started.": "Seit Beginn dieser Berechnung sind mehr als 15 Minuten vergangen.",
49
- "NO": "NEIN",
50
- "No": "Nein",
51
- "No, return to dashboard": "Nein, zurück zum Dashboard",
52
- "OFF": "AUS",
53
- "OK": "OK",
54
- "Please go through the calculation steps with new measurements to ensure a safe recommendation.": "Bitte führen Sie die Berechnungsschritte mit neuen Messungen durch, um eine sichere Empfehlung zu erstellen.",
55
- "Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?": "Die Empfehlung von {day} um {time} wurden nicht in Ihr Tagebuch eingetragen.{0}Haben Sie sich an die Empfehlung gehalten?",
56
- "Recommended": "Empfohlen",
57
- "Recommended amount of insulin": "Empfohlene Insulinmenge",
58
- "Remind me to remeasure in": "Ich wünsche eine Erinnerung an eine erneute Messung in",
59
- "Return to dashboard": "Zurück zum Dashboard",
60
- "Save data before closing?": "Änderungen vor dem Schließen speichern?",
61
- "Save to logbook": "Im Tagebuch speichern",
62
- "Start new calculation": "Neue Berechnung starten",
63
- "Total": "Gesamt",
64
- "Transfer to logbook": "Übertragung ins Tagebuch",
65
- "Transferred to logbook": "Ins Tagebuch übertragen",
66
- "Units": "Einheiten",
67
- "units": "Einheiten",
68
- "Untitled Activity": "Unbenannte Aktivität",
69
- "We recommend eating an additional:": "Wir empfehlen Ihnen, zusätzlich Folgendes zu essen:",
70
- "Would you like to add this to your current calculation?": "Möchten Sie dies zu Ihrer aktuellen Berechnung hinzufügen?",
71
- "Yes": "Ja",
72
- "Yes, save to logbook": "Ja, im Tagebuch speichern",
73
- "You have a high blood glucose level.": "Sie haben einen hohen Blutzucker.",
74
- "You should take rapid-acting insulin and measure ketones.": "Sie sollten schnell wirkendes Insulin einnehmen und die Ketone messen.",
75
- "You will be reminded to measure your blood glucose level in 15 min.": "Bitte messen Sie Ihren Blutzucker in 15 Minuten.",
76
- "Your blood glucose level is very low.": "Ihr Blutzucker ist sehr niedrig.",
77
- "Your blood glucose level is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention.": "Ihr Blutzucker ist sehr niedrig. Nehmen Sie Glucagon ein oder essen Sie, wenn möglich, Kohlenhydrate. Suchen Sie einen Arzt auf.",
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}.": "Ihre Empfehlung wäre höher als {0} Einheiten Insulin gewesen, aber sie wurde aus Sicherheitsgründen begrenzt.{1} Hedia empfiehlt nie mehr als {SAFETY_INSULIN_LIMIT} Einheiten Insulin pro Berechnung, aber aufgrund der von Ihnen eingegebenen körperlichen Aktivität wurden sie um {2}% auf {3} weiter reduziert.",
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.": "Ihre Empfehlung wäre höher als {SAFETY_INSULIN_LIMIT} Einheiten Insulin gewesen, aber sie wurde aus Sicherheitsgründen begrenzt. Hedia empfiehlt nie mehr als {SAFETY_INSULIN_LIMIT} Einheiten Insulin pro Berechnung.",
80
- "Your saved data will be used for future calculations.": "Ihre gespeicherten Daten werden für zukünftige Berechnungen verwendet."
81
- }
@@ -1,84 +0,0 @@
1
- {
2
- "Active Insulin": "Active insulin",
3
- "Activity": "Activity",
4
- "Additional": "Additional",
5
- "Attention": "Attention",
6
- "Based on the selected activity your insulin recommendation is reduced by:": "Based on the selected activity your insulin recommendation is reduced by:",
7
- "Blood Glucose Level": "Blood glucose",
8
- "Blood Ketone Level": "Blood ketone level",
9
- "Carbohydrates": "Carbohydrates",
10
- "Close calculation": "Close calculation",
11
- "Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.": "Consider not to initiate physical activity before your blood glucose is within the recommended ranges prior to physical activity.",
12
- "Enter Manually": "Enter Manually",
13
- "Entered": "Entered",
14
- "Error. Hedia Calculator could not find your recent boluses": "Error. Hedia Calculator could not find your recent boluses",
15
- "Error. Hedia Calculator does not support an insulin dose greater than {SAFETY_INSULIN_LIMIT} units": "Error. Hedia Calculator does not support an insulin dose greater than {SAFETY_INSULIN_LIMIT} units",
16
- "Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours": "Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours",
17
- "Error. Hedia Calculator does not support the blood glucose level of your latest logbook entry from the last 6 hours.": "Error. Hedia Calculator does not support the blood glucose level of your latest logbook entry from the last 6 hours.",
18
- "Error. Hedia Calculator does not support your activity intensity value": "Error. Hedia Calculator does not support your activity intensity value",
19
- "Error. Hedia Calculator does not support your activity type value": "Error. Hedia Calculator does not support your activity type value",
20
- "Error. Hedia Calculator does not support your current blood glucose level.": "Error. Hedia Calculator does not support your current blood glucose.",
21
- "Error. Hedia Calculator does not support your current blood glucose unit.": "Error. Hedia Calculator does not support your current blood glucose unit.",
22
- "Error. Hedia Calculator does not support your current blood ketone level.": "Error. Hedia Calculator does not support your current blood ketone level.",
23
- "Error. Hedia Calculator does not support your current blood ketone unit.": "Error. Hedia Calculator does not support your current blood ketone unit.",
24
- "Error. Hedia Calculator does not support your current language.": "Error. Hedia Calculator does not support your current language.",
25
- "Error. Hedia Calculator does not support your injection method.": "Error. Hedia Calculator does not support your injection method.",
26
- "Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.": "Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.",
27
- "Error. Please verify that your activity settings are set up correctly.": "Error. Please verify that your activity settings are set up correctly.",
28
- "Error. Please verify that your activity target blood glucose value is correct.": "Error. Please verify that your desired blood glucose during activity is correct.",
29
- "Error. Please verify that your insulin sensitivity value is correct.": "Error. Please verify that your insulin sensitivity value is correct.",
30
- "Error. Please verify that your insulin to carb ratio value is correct.": "Error. Please verify that your insulin to carb ratio value is correct.",
31
- "Error. Please verify that your target blood glucose value is correct.": "Error. Please verify that your target blood glucose is correct.",
32
- "Error. Please verify your notifications settings.": "Error. Please verify your notifications settings.",
33
- "Error. Your blood ketone settings are invalid.": "Error. Your blood ketone settings are invalid.",
34
- "Food": "Food",
35
- "grams": "grams",
36
- "grams of carbohydrates": "grams of carbohydrates",
37
- "Hard": "Hard",
38
- "Have you taken insulin within the last 4 hours?": "Have you taken insulin within the last 4 hours?",
39
- "Hedia Calculator does not support activities that finished more than 4 hours ago.": "Hedia Calculator does not support activities that finished more than 4 hours ago.",
40
- "Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.": "Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.",
41
- "Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.": "Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.",
42
- "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 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.",
43
- "hours": "hours",
44
- "How are you feeling?": "How are you feeling?",
45
- "If it is possible, postpone your planned exercise.": "If it is possible, postpone your planned exercise.",
46
- "Instead of taking insulin": "Instead of taking insulin",
47
- "Insulin recommendation": "Insulin recommendation",
48
- "Light": "Light",
49
- "min": "min",
50
- "Moderate": "Moderate",
51
- "More than 15 minutes has passed since this calculation was started.": "More than 15 minutes has passed since this calculation was started.",
52
- "NO": "NO",
53
- "No": "No",
54
- "No, return to dashboard": "No, return to dashboard",
55
- "OFF": "OFF",
56
- "OK": "OK",
57
- "Please go through the calculation steps with new measurements to ensure a safe recommendation.": "Please go through the calculation steps with new measurements to ensure a safe recommendation.",
58
- "Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?": "Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?",
59
- "Recommended": "Recommended",
60
- "Recommended amount of insulin": "Recommended amount of insulin",
61
- "Remind me to remeasure in": "Remind me to remeasure in",
62
- "Return to dashboard": "Return to dashboard",
63
- "Save data before closing?": "Save data before closing?",
64
- "Save to logbook": "Save to logbook",
65
- "Start new calculation": "Start new calculation",
66
- "Total": "Total",
67
- "Transfer to logbook": "Transfer to logbook",
68
- "Transferred to logbook": "Transferred to logbook",
69
- "Units": "Units",
70
- "units": "units",
71
- "Untitled Activity": "Untitled activity",
72
- "We recommend eating an additional:": "We recommend eating an additional:",
73
- "Would you like to add this to your current calculation?": "Would you like to add this to your current calculation?",
74
- "Yes": "Yes",
75
- "Yes, save to logbook": "Yes, save to logbook",
76
- "You have a high blood glucose level.": "You have high blood glucose.",
77
- "You should take rapid-acting insulin and measure ketones.": "You should take rapid-acting insulin and measure ketones.",
78
- "You will be reminded to measure your blood glucose level in 15 min.": "You will be reminded to measure your blood glucose in 15 min.",
79
- "Your blood glucose level is very low.": "Your blood glucose is very low.",
80
- "Your blood glucose level is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention.": "Your blood glucose is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention.",
81
- "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}.": "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}.",
82
- "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.": "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.",
83
- "Your saved data will be used for future calculations.": "Your saved data will be used for future calculations."
84
- }