@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
@@ -0,0 +1,353 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "POT-Creation-Date: 2020-07-02 10:25+0200\n"
4
+ "Mime-Version: 1.0\n"
5
+ "Content-Type: text/plain; charset=utf-8\n"
6
+ "Content-Transfer-Encoding: 8bit\n"
7
+ "X-Generator: @lingui/cli\n"
8
+ "Language: en\n"
9
+ "Project-Id-Version: \n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "PO-Revision-Date: \n"
12
+ "Last-Translator: \n"
13
+ "Language-Team: \n"
14
+ "Plural-Forms: \n"
15
+
16
+ #: src/RecommendationScreen.tsx:453
17
+ msgid "Active Insulin"
18
+ msgstr "Aktives Insulin"
19
+
20
+ #: src/components/activity/Activity.tsx:34
21
+ msgid "Activity"
22
+ msgstr "Aktivität"
23
+
24
+ #: src/components/RecommendedCarbs.tsx:104
25
+ msgid "Additional"
26
+ msgstr "Zusätzlich"
27
+
28
+ #: src/components/LimitationMessage.tsx:21
29
+ #: src/components/RecommendationModal.tsx:104
30
+ #: src/components/RecommendedCarbs.tsx:66
31
+ #: src/components/RecommendedInsulin.tsx:76
32
+ msgid "Attention"
33
+ msgstr "Achtung"
34
+
35
+ #: src/components/activity/Activity.tsx:51
36
+ msgid "Based on the selected activity your insulin recommendation is reduced by:"
37
+ msgstr "Aufgrund der gewählten Aktivität wird Ihre Insulinempfehlung reduziert um:"
38
+
39
+ #: src/RecommendationScreen.tsx:454
40
+ msgid "Blood Glucose Level"
41
+ msgstr "Blutzucker"
42
+
43
+ #: src/RecommendationScreen.tsx:455
44
+ msgid "Blood Ketone Level"
45
+ msgstr "Blutketonspiegel"
46
+
47
+ #: src/components/RecommendedCarbs.tsx:169
48
+ msgid "Carbohydrates"
49
+ msgstr "Kohlenhydrate"
50
+
51
+ #: src/RecommendationScreen.tsx:471
52
+ msgid "Close calculation"
53
+ msgstr "Berechnung schließen"
54
+
55
+ #: src/utils/AttentionMessages.tsx:86
56
+ msgid "Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity."
57
+ msgstr "Betätigen Sie sich erst dann körperlich, wenn Ihr Blutzucker vor der körperlichen Aktivität innerhalb des empfohlenen Wertebereichs liegt."
58
+
59
+ #: src/components/RecommendedInsulin.tsx:108
60
+ msgid "Edit"
61
+ msgstr ""
62
+
63
+ #: src/components/RecommendedCarbs.tsx:173
64
+ msgid "Entered"
65
+ msgstr "Eingegeben"
66
+
67
+ #: src/utils/RecommendationError.tsx:50
68
+ msgid "Error. Hedia Calculator could not find your recent boluses"
69
+ msgstr ""
70
+
71
+ #: src/utils/RecommendationError.tsx:46
72
+ msgid "Error. Hedia Calculator does not support an insulin dose greater than {SAFETY_INSULIN_LIMIT} units"
73
+ msgstr "Fehler. Der Hedia-Rechner unterstützt keine Insulindosis, die mehr als {SAFETY_INSULIN_LIMIT} Einheiten hat."
74
+
75
+ #: src/utils/RecommendationError.tsx:48
76
+ msgid "Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours"
77
+ msgstr "Fehler. Der Hedia-Rechner unterstützt keine Insulinempfehlungen mit Boli, die älter als 4 Stunden sind."
78
+
79
+ #: src/utils/RecommendationError.tsx:40
80
+ msgid "Error. Hedia Calculator does not support the blood glucose level of your latest logbook entry from the last 6 hours."
81
+ msgstr ""
82
+
83
+ #: src/utils/RecommendationError.tsx:26
84
+ msgid "Error. Hedia Calculator does not support your activity intensity value"
85
+ msgstr "Fehler. Der Hedia-Rechner unterstützt den Wert Ihrer Aktivitätsintensität nicht."
86
+
87
+ #: src/utils/RecommendationError.tsx:28
88
+ msgid "Error. Hedia Calculator does not support your activity type value"
89
+ msgstr "Fehler. Der Hedia-Rechner unterstützt den Wert des Aktivitätstyps nicht."
90
+
91
+ #: src/utils/RecommendationError.tsx:38
92
+ msgid "Error. Hedia Calculator does not support your current blood glucose level."
93
+ msgstr "Fehler. Der Hedia-Rechner unterstützt Ihren aktuellen Blutzucker nicht."
94
+
95
+ #: src/utils/RecommendationError.tsx:60
96
+ msgid "Error. Hedia Calculator does not support your current blood glucose unit."
97
+ msgstr "Fehler. Der Hedia-Rechner unterstützt Ihre aktuelle Blutzuckereinheit nicht."
98
+
99
+ #: src/utils/RecommendationError.tsx:42
100
+ msgid "Error. Hedia Calculator does not support your current blood ketone level."
101
+ msgstr "Fehler. Der Hedia-Rechner unterstützt Ihren aktuellen Blutketonspiegel nicht."
102
+
103
+ #: src/utils/RecommendationError.tsx:58
104
+ msgid "Error. Hedia Calculator does not support your current blood ketone unit."
105
+ msgstr "Fehler. Der Hedia-Rechner unterstützt Ihre aktuelle Messeinheit für Blutketone nicht."
106
+
107
+ #: src/utils/RecommendationError.tsx:56
108
+ msgid "Error. Hedia Calculator does not support your current language."
109
+ msgstr "Fehler. Der Hedia-Rechner unterstützt Ihre aktuelle Spracheinstellung nicht."
110
+
111
+ #: src/utils/RecommendationError.tsx:54
112
+ msgid "Error. Hedia Calculator does not support your injection method."
113
+ msgstr "Fehler. Der Hedia-Rechner unterstützt Ihre Injektionsmethode nicht."
114
+
115
+ #: src/utils/RecommendationError.tsx:22
116
+ msgid "Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes."
117
+ msgstr "Fehler. Der Hedia-Rechner unterstützt nur Aktivitäten mit einer Dauer von maximal 60 Minuten."
118
+
119
+ #: src/utils/RecommendationError.tsx:20
120
+ msgid "Error. Please verify that your activity settings are set up correctly."
121
+ msgstr "Fehler. Bitte überprüfen Sie, ob Ihre Aktivitätseinstellungen korrekt eingestellt sind."
122
+
123
+ #: src/utils/RecommendationError.tsx:30
124
+ msgid "Error. Please verify that your activity target blood glucose value is correct."
125
+ msgstr "Fehler. Bitte überprüfen Sie, ob Ihr gewünschter Blutzuckerwert für Aktivitäten korrekt ist."
126
+
127
+ #: src/utils/RecommendationError.tsx:34
128
+ msgid "Error. Please verify that your insulin sensitivity value is correct."
129
+ msgstr "Fehler. Bitte überprüfen Sie, ob Ihr Insulinintensitätswert korrekt ist."
130
+
131
+ #: src/utils/RecommendationError.tsx:36
132
+ msgid "Error. Please verify that your insulin to carb ratio value is correct."
133
+ msgstr "Fehler. Bitte überprüfen Sie, ob der Wert von Ihrem Insulin-Kohlenhydrat-Verhältnis korrekt ist."
134
+
135
+ #: src/utils/RecommendationError.tsx:44
136
+ msgid "Error. Please verify that your target blood glucose value is correct."
137
+ msgstr "Fehler. Bitte überprüfen Sie, ob Ihr gewünschter Blutzuckerwert korrekt ist."
138
+
139
+ #: src/utils/RecommendationError.tsx:52
140
+ msgid "Error. Please verify your notifications settings."
141
+ msgstr "Fehler. Bitte überprüfen Sie Ihre Benachrichtigungseinstellungen."
142
+
143
+ #: src/utils/RecommendationError.tsx:62
144
+ msgid "Error. Your blood ketone settings are invalid."
145
+ msgstr ""
146
+
147
+ #: src/components/RecommendedCarbs.tsx:167
148
+ msgid "Food"
149
+ msgstr "Lebensmittel"
150
+
151
+ #: src/RecommendationScreen.tsx:454
152
+ msgid "Forecasted Glucose"
153
+ msgstr ""
154
+
155
+ #: src/components/ForecastInfoBar.tsx:54
156
+ msgid "Forecasted time:"
157
+ msgstr ""
158
+
159
+ #: src/utils/Translations.ts:13
160
+ msgid "Hard"
161
+ msgstr "Hart"
162
+
163
+ #: src/components/RecentInsulin.tsx:24
164
+ msgid "Have you taken rapid-acting insulin within the last 4 hours?"
165
+ msgstr ""
166
+
167
+ #: src/utils/RecommendationError.tsx:24
168
+ msgid "Hedia Calculator does not support activities that finished more than 4 hours ago."
169
+ msgstr "Der Hedia-Rechner unterstützt keine Aktivitäten, die vor über 4 Stunden beendet wurden."
170
+
171
+ #: src/utils/RecommendationError.tsx:32
172
+ msgid "Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present."
173
+ msgstr "Der Hedia-Rechner unterstützt keine Insulinempfehlungen, die mehr als 300 Gramm Kohlenhydrate enthalten."
174
+
175
+ #: src/utils/AttentionMessages.tsx:105
176
+ msgid "Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation."
177
+ msgstr "Hedia unterstützt nicht mehr als {SAFETY_INSULIN_LIMIT} Einheiten Insulin pro Berechnung."
178
+
179
+ #: src/utils/AttentionMessages.tsx:103
180
+ msgid "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."
181
+ msgstr "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."
182
+
183
+ #: src/components/mood/Emotion.tsx:46
184
+ msgid "How are you feeling?"
185
+ msgstr "Wie fühlen Sie sich?"
186
+
187
+ #: src/utils/AttentionMessages.tsx:84
188
+ msgid "If it is possible, postpone your planned exercise."
189
+ msgstr "Wenn möglich, verschieben Sie Ihr geplantes Training."
190
+
191
+ #: src/components/RecommendationModal.tsx:83
192
+ msgid "Instead of taking insulin"
193
+ msgstr "Statt der Einnahme von Insulin"
194
+
195
+ #: src/components/Header.tsx:19
196
+ msgid "Insulin recommendation"
197
+ msgstr "Insulin empfehlung"
198
+
199
+ #: src/utils/Translations.ts:11
200
+ msgid "Light"
201
+ msgstr "Leicht"
202
+
203
+ #: src/utils/Translations.ts:12
204
+ msgid "Moderate"
205
+ msgstr "Moderat"
206
+
207
+ #: src/utils/AttentionMessages.tsx:107
208
+ msgid "More than 15 minutes has passed since this calculation was started."
209
+ msgstr "Seit Beginn dieser Berechnung sind mehr als 15 Minuten vergangen."
210
+
211
+ #: src/components/RecommendationModal.tsx:53
212
+ msgid "NO"
213
+ msgstr "NEIN"
214
+
215
+ #: src/components/RecentInsulin.tsx:32
216
+ msgid "No"
217
+ msgstr "Nein"
218
+
219
+ #: src/RecommendationScreen.tsx:476
220
+ msgid "No, return to dashboard"
221
+ msgstr "Nein, zurück zum Dashboard"
222
+
223
+ #: src/components/Remeasure.tsx:74
224
+ msgid "OFF"
225
+ msgstr "AUS"
226
+
227
+ #: src/components/LimitationMessage.tsx:27
228
+ #: src/components/RecommendationModal.tsx:50
229
+ #: src/components/RecommendationModal.tsx:111
230
+ #: src/components/RecommendedCarbs.tsx:68
231
+ #: src/components/RecommendedInsulin.tsx:78
232
+ msgid "OK"
233
+ msgstr "OK"
234
+
235
+ #: src/utils/AttentionMessages.tsx:112
236
+ msgid "Please go through the calculation steps with new measurements to ensure a safe recommendation."
237
+ msgstr "Bitte führen Sie die Berechnungsschritte mit neuen Messungen durch, um eine sichere Empfehlung zu erstellen."
238
+
239
+ #: src/utils/AttentionMessages.tsx:117
240
+ msgid "Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?"
241
+ msgstr "Die Empfehlung von {day} um {time} wurden nicht in Ihr Tagebuch eingetragen.{0}Haben Sie sich an die Empfehlung gehalten?"
242
+
243
+ #: src/components/RecommendedCarbs.tsx:99
244
+ msgid "Recommended"
245
+ msgstr "Empfohlen"
246
+
247
+ #: src/components/RecommendedInsulin.tsx:97
248
+ msgid "Recommended amount of rapid-acting insulin for immidiate injection based on forecasted glucose"
249
+ msgstr ""
250
+
251
+ #: src/components/Remeasure.tsx:68
252
+ msgid "Remind me to remeasure in"
253
+ msgstr "Ich wünsche eine Erinnerung an eine erneute Messung in"
254
+
255
+ #: src/RecommendationScreen.tsx:476
256
+ msgid "Return to dashboard"
257
+ msgstr "Zurück zum Dashboard"
258
+
259
+ #: src/RecommendationScreen.tsx:471
260
+ msgid "Save data before closing?"
261
+ msgstr "Änderungen vor dem Schließen speichern?"
262
+
263
+ #: src/RecommendationScreen.tsx:471
264
+ #: src/components/SaveButton.tsx:45
265
+ msgid "Save to logbook"
266
+ msgstr "Im Tagebuch speichern"
267
+
268
+ #: src/RecommendationScreen.tsx:476
269
+ msgid "Start new calculation"
270
+ msgstr "Neue Berechnung starten"
271
+
272
+ #: src/components/RecommendedCarbs.tsx:126
273
+ msgid "Total"
274
+ msgstr "Gesamt"
275
+
276
+ #: src/components/RecommendedInsulin.tsx:104
277
+ msgid "Units"
278
+ msgstr "Einheiten"
279
+
280
+ #: src/components/activity/ActivityIcon.tsx:42
281
+ msgid "Untitled Activity"
282
+ msgstr "Unbenannte Aktivität"
283
+
284
+ #: src/components/RecommendationModal.tsx:68
285
+ msgid "We recommend eating an additional:"
286
+ msgstr "Wir empfehlen Ihnen, zusätzlich Folgendes zu essen:"
287
+
288
+ #: src/components/RecommendationModal.tsx:89
289
+ msgid "Would you like to add this to your current calculation?"
290
+ msgstr "Möchten Sie dies zu Ihrer aktuellen Berechnung hinzufügen?"
291
+
292
+ #: src/components/RecentInsulin.tsx:29
293
+ msgid "Yes"
294
+ msgstr "Ja"
295
+
296
+ #: src/RecommendationScreen.tsx:476
297
+ msgid "Yes, save to logbook"
298
+ msgstr "Ja, im Tagebuch speichern"
299
+
300
+ #: src/utils/AttentionMessages.tsx:88
301
+ msgid "You have a high blood glucose level."
302
+ msgstr "Sie haben einen hohen Blutzucker."
303
+
304
+ #: src/utils/AttentionMessages.tsx:90
305
+ msgid "You should take rapid-acting insulin and measure ketones."
306
+ msgstr "Sie sollten schnell wirkendes Insulin einnehmen und die Ketone messen."
307
+
308
+ #: src/utils/AttentionMessages.tsx:82
309
+ msgid "You will be reminded to measure your blood glucose level in 15 min."
310
+ msgstr "Bitte messen Sie Ihren Blutzucker in 15 Minuten."
311
+
312
+ #: src/utils/AttentionMessages.tsx:80
313
+ msgid "Your blood glucose level is very low."
314
+ msgstr "Ihr Blutzucker ist sehr niedrig."
315
+
316
+ #: src/utils/AttentionMessages.tsx:78
317
+ msgid "Your blood glucose level is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention."
318
+ msgstr "Ihr Blutzucker ist sehr niedrig. Nehmen Sie Glucagon ein oder essen Sie, wenn möglich, Kohlenhydrate. Suchen Sie einen Arzt auf."
319
+
320
+ #: src/utils/AttentionMessages.tsx:95
321
+ msgid "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}."
322
+ msgstr "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."
323
+
324
+ #: src/utils/AttentionMessages.tsx:92
325
+ msgid "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."
326
+ msgstr "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."
327
+
328
+ #: src/RecommendationScreen.tsx:471
329
+ msgid "Your saved data will be used for future calculations."
330
+ msgstr "Ihre gespeicherten Daten werden für zukünftige Berechnungen verwendet."
331
+
332
+ #: src/components/RecommendedCarbs.tsx:118
333
+ #: src/components/RecommendedCarbs.tsx:128
334
+ #: src/components/RecommendedCarbs.tsx:175
335
+ msgid "grams"
336
+ msgstr "Gramm"
337
+
338
+ #: src/components/RecommendationModal.tsx:77
339
+ msgid "grams of carbohydrates"
340
+ msgstr "Gramm Kohlenhydrate"
341
+
342
+ #: src/components/Remeasure.tsx:78
343
+ msgid "hours"
344
+ msgstr "Stunden"
345
+
346
+ #: src/components/activity/Activity.tsx:43
347
+ msgid "min"
348
+ msgstr "Minuten"
349
+
350
+ #: src/RecommendationScreen.tsx:453
351
+ #: src/components/InfoBars.tsx:43
352
+ msgid "units"
353
+ msgstr "Einheiten"
@@ -0,0 +1 @@
1
+ /* eslint-disable */module.exports={languageData:{"plurals":function(n,ord){var s=String(n).split("."),v0=!s[1],t0=Number(s[0])==n,n10=t0&&s[0].slice(-1),n100=t0&&s[0].slice(-2);if(ord)return n10==1&&n100!=11?"one":n10==2&&n100!=12?"two":n10==3&&n100!=13?"few":"other";return n==1&&v0?"one":"other"}},messages:{"Active Insulin":"Active insulin","Activity":"Activity","Additional":"Additional","Attention":"Attention","Based on the selected activity your insulin recommendation is reduced by:":"Based on the selected activity your insulin recommendation is reduced by:","Blood Glucose Level":"Blood glucose","Blood Ketone Level":"Blood ketone level","Carbohydrates":"Carbohydrates","Close calculation":"Close calculation","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.","Edit":"Edit","Entered":"Entered","Error. Hedia Calculator could not find your recent boluses":"Error. Hedia Calculator could not find your recent boluses","Error. Hedia Calculator does not support an insulin dose greater than {SAFETY_INSULIN_LIMIT} units":function(a){return["Error. Hedia Calculator does not support an insulin dose greater than ",a("SAFETY_INSULIN_LIMIT")," units"]},"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","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.","Error. Hedia Calculator does not support your activity intensity value":"Error. Hedia Calculator does not support your activity intensity value","Error. Hedia Calculator does not support your activity type value":"Error. Hedia Calculator does not support your activity type value","Error. Hedia Calculator does not support your current blood glucose level.":"Error. Hedia Calculator does not support your current blood glucose.","Error. Hedia Calculator does not support your current blood glucose unit.":"Error. Hedia Calculator does not support your current blood glucose unit.","Error. Hedia Calculator does not support your current blood ketone level.":"Error. Hedia Calculator does not support your current blood ketone level.","Error. Hedia Calculator does not support your current blood ketone unit.":"Error. Hedia Calculator does not support your current blood ketone unit.","Error. Hedia Calculator does not support your current language.":"Error. Hedia Calculator does not support your current language.","Error. Hedia Calculator does not support your injection method.":"Error. Hedia Calculator does not support your injection method.","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.","Error. Please verify that your activity settings are set up correctly.":"Error. Please verify that your activity settings are set up correctly.","Error. Please verify that your activity target blood glucose value is correct.":"Error. Please verify that your desired blood glucose during activity is correct.","Error. Please verify that your insulin sensitivity value is correct.":"Error. Please verify that your insulin sensitivity value is correct.","Error. Please verify that your insulin to carb ratio value is correct.":"Error. Please verify that your insulin to carb ratio value is correct.","Error. Please verify that your target blood glucose value is correct.":"Error. Please verify that your target blood glucose is correct.","Error. Please verify your notifications settings.":"Error. Please verify your notifications settings.","Error. Your blood ketone settings are invalid.":"Error. Your blood ketone settings are invalid.","Food":"Food","Forecasted Glucose":"Forecasted Glucose","Forecasted time:":"Forecasted time:","Hard":"Hard","Have you taken rapid-acting insulin within the last 4 hours?":"Have you taken rapid-acting insulin within the last 4 hours?","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.","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.","Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.":function(a){return["Hedia does not support more than ",a("SAFETY_INSULIN_LIMIT")," units of insulin per 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.":function(a){return["Hedia doesn't support more than ",a("SAFETY_INSULIN_LIMIT")," units of insulin per calculation, but because of the physical activity you entered it has been further reduced by ",a("0"),"% to ",a("1")," units for this calculation."]},"How are you feeling?":"How are you feeling?","If it is possible, postpone your planned exercise.":"If it is possible, postpone your planned exercise.","Instead of taking insulin":"Instead of taking insulin","Insulin recommendation":"Insulin recommendation","Light":"Light","Moderate":"Moderate","More than 15 minutes has passed since this calculation was started.":"More than 15 minutes has passed since this calculation was started.","NO":"NO","No":"No","No, return to dashboard":"No, return to dashboard","OFF":"OFF","OK":"OK","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.","Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?":function(a){return["Recommendation from ",a("day")," at ",a("time")," was not transfered to your logbook.",a("0"),"Did you use the recommendation?"]},"Recommended":"Recommended","Recommended amount of rapid-acting insulin for immidiate injection based on forecasted glucose":"Recommended amount of rapid-acting insulin for immidiate injection based on forecasted glucose","Remind me to remeasure in":"Remind me to remeasure in","Return to dashboard":"Return to dashboard","Save data before closing?":"Save data before closing?","Save to logbook":"Save to logbook","Start new calculation":"Start new calculation","Total":"Total","Units":"Units","Untitled Activity":"Untitled activity","We recommend eating an additional:":"We recommend eating an additional:","Would you like to add this to your current calculation?":"Would you like to add this to your current calculation?","Yes":"Yes","Yes, save to logbook":"Yes, save to logbook","You have a high blood glucose level.":"You have high blood glucose.","You should take rapid-acting insulin and measure ketones.":"You should take rapid-acting insulin and measure ketones.","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.","Your blood glucose level is very low.":"Your blood glucose is very low.","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.","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}.":function(a){return["Your recommendation would have been higher than ",a("0")," units of insulin, but it has been limited for safety reasons.",a("1")," Hedia never recommends more than ",a("SAFETY_INSULIN_LIMIT")," units of insulin per calculation, but because of the physical activity you entered it has been further reduced by ",a("2"),"% to ",a("3"),"."]},"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.":function(a){return["Your recommendation would have been higher than ",a("SAFETY_INSULIN_LIMIT")," units of insulin, but it has been limited for safety reasons. Hedia never recommends more than ",a("SAFETY_INSULIN_LIMIT")," units of insulin per calculation."]},"Your saved data will be used for future calculations.":"Your saved data will be used for future calculations.","grams":"grams","grams of carbohydrates":"grams of carbohydrates","hours":"hours","min":"min","units":"units"}};