@hedia/recommendation-screen 2.1.47 → 2.1.48-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/RecommendationScreen.d.ts +8 -0
- package/dist/src/RecommendationScreen.js +42 -39
- package/dist/src/assets/fonts/Poppins-Bold.ttf +0 -0
- package/dist/src/assets/fonts/Poppins-SemiBold.ttf +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/icons/Edit.tsx +22 -0
- package/dist/src/assets/icons/X.d.ts +4 -0
- package/dist/src/assets/icons/X.js +6 -0
- package/dist/src/assets/icons/X.tsx +14 -0
- package/dist/src/components/ForecastInfoBar.d.ts +117 -0
- package/dist/src/components/ForecastInfoBar.js +150 -0
- package/dist/src/components/Header.d.ts +3 -5
- package/dist/src/components/Header.js +38 -59
- package/dist/src/components/InfoBars.d.ts +3 -2
- package/dist/src/components/InfoBars.js +10 -8
- package/dist/src/components/RecentInsulin.d.ts +1 -1
- package/dist/src/components/RecentInsulin.js +34 -54
- package/dist/src/components/RecommendationModal.d.ts +1 -2
- package/dist/src/components/RecommendationModal.js +15 -10
- package/dist/src/components/RecommendedCarbs.js +21 -25
- package/dist/src/components/RecommendedInsulin.d.ts +2 -0
- package/dist/src/components/RecommendedInsulin.js +51 -41
- package/dist/src/components/Remeasure.js +4 -3
- package/dist/src/components/{TransferToLogbook.d.ts → SaveButton.d.ts} +1 -1
- package/dist/src/components/SaveButton.js +71 -0
- package/dist/src/components/TwoOptionModal.d.ts +1 -0
- package/dist/src/components/TwoOptionModal.js +10 -9
- package/dist/src/components/mood/Emotion.js +3 -1
- package/dist/src/components/mood/MoodIcon.js +3 -3
- package/dist/src/locale/da/messages.js +1 -1
- package/dist/src/locale/da/messages.po +81 -65
- package/dist/src/locale/de/messages.js +1 -1
- package/dist/src/locale/de/messages.po +81 -65
- package/dist/src/locale/en/messages.js +1 -1
- package/dist/src/locale/en/messages.po +81 -65
- package/dist/src/locale/es/messages.js +1 -1
- package/dist/src/locale/es/messages.po +81 -65
- package/dist/src/locale/fr/messages.js +1 -1
- package/dist/src/locale/fr/messages.po +81 -65
- package/dist/src/locale/it/messages.js +1 -1
- package/dist/src/locale/it/messages.po +81 -65
- package/dist/src/types/enum.d.ts +6 -3
- package/dist/src/types/enum.js +3 -0
- package/dist/src/utils/Constants.d.ts +12 -6
- package/dist/src/utils/Constants.js +12 -6
- package/package.json +5 -3
- package/dist/src/components/TransferToLogbook.js +0 -92
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Dimensions, StyleSheet, TouchableOpacity, View } from "react-native";
|
|
3
|
+
import { t } from "@lingui/macro";
|
|
4
|
+
import { i18n } from "../locale/i18nUtils";
|
|
5
|
+
import { Testing } from "../types/enum";
|
|
6
|
+
import { colors } from "../utils/Constants";
|
|
7
|
+
import TextBold from "./text/TextBold";
|
|
8
|
+
/**
|
|
9
|
+
* Render a button for transferring the recommendation to a logbook entry.
|
|
10
|
+
* The button has a visually distinct pressed state to signal to the user that the button was actually activated before returning to the dashboard screen.
|
|
11
|
+
*/
|
|
12
|
+
export default class SaveButton extends React.Component {
|
|
13
|
+
/** Initialise the state pressed variable with false */
|
|
14
|
+
state = {
|
|
15
|
+
pressed: false,
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Handle what happens when the button is pressed.
|
|
19
|
+
*
|
|
20
|
+
* Steps:
|
|
21
|
+
* 1. Toggle the pressed state to the opposite of its current value.
|
|
22
|
+
* 2. Call the transfer prop callback function.
|
|
23
|
+
*/
|
|
24
|
+
handlePress = () => {
|
|
25
|
+
this.setState({
|
|
26
|
+
pressed: !this.state.pressed,
|
|
27
|
+
});
|
|
28
|
+
this.props.transfer();
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* Steps:
|
|
32
|
+
* 1. If the visible prop is false, display an empty space to keep the correct margins in the screen.
|
|
33
|
+
* 2. Return a JSX element to display a touchable button (that is disabled when the pressed state is true)
|
|
34
|
+
* @returns JSX element for displaying the transfer button
|
|
35
|
+
*/
|
|
36
|
+
render() {
|
|
37
|
+
if (!this.props.visible) {
|
|
38
|
+
return <View style={styles.marginContainer}/>;
|
|
39
|
+
}
|
|
40
|
+
return (<View style={styles.wrapper}>
|
|
41
|
+
<TouchableOpacity testID={Testing.Id.TransferToLogbookTestIds.TransferButton} onPress={this.handlePress} disabled={this.state.pressed} style={styles.button}>
|
|
42
|
+
<TextBold style={styles.text}>{i18n._(t `Save to logbook`)}</TextBold>
|
|
43
|
+
</TouchableOpacity>
|
|
44
|
+
</View>);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
const { width } = Dimensions.get(`screen`);
|
|
48
|
+
const styles = StyleSheet.create({
|
|
49
|
+
marginContainer: {
|
|
50
|
+
marginVertical: `3%`,
|
|
51
|
+
},
|
|
52
|
+
wrapper: {
|
|
53
|
+
flexDirection: `row`,
|
|
54
|
+
alignSelf: `center`,
|
|
55
|
+
},
|
|
56
|
+
button: {
|
|
57
|
+
backgroundColor: colors.teal,
|
|
58
|
+
borderRadius: 40,
|
|
59
|
+
marginTop: width / 5,
|
|
60
|
+
marginBottom: width / 18,
|
|
61
|
+
},
|
|
62
|
+
text: {
|
|
63
|
+
fontFamily: `Poppins-Bold`,
|
|
64
|
+
paddingVertical: width / 26,
|
|
65
|
+
paddingHorizontal: width / 10,
|
|
66
|
+
textAlign: `center`,
|
|
67
|
+
color: colors.semiDarkBlue,
|
|
68
|
+
fontSize: width / 22,
|
|
69
|
+
lineHeight: width / 16,
|
|
70
|
+
},
|
|
71
|
+
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { Dimensions, StatusBar, StyleSheet, TouchableOpacity, View } from "react-native";
|
|
3
3
|
import { Testing } from "../types/enum";
|
|
4
|
-
import {
|
|
4
|
+
import { colors } from "../utils/Constants";
|
|
5
5
|
import Icon from "./Icon";
|
|
6
6
|
import { stylesModal } from "./RecommendationModal";
|
|
7
7
|
import TextBold from "./text/TextBold";
|
|
@@ -48,10 +48,11 @@ export const modalStyle = StyleSheet.create({
|
|
|
48
48
|
...StyleSheet.absoluteFillObject,
|
|
49
49
|
justifyContent: `center`,
|
|
50
50
|
backgroundColor: `rgba(0, 0, 0, 0.9)`,
|
|
51
|
+
height,
|
|
51
52
|
},
|
|
52
53
|
modalContainer: {
|
|
53
54
|
margin: `4%`,
|
|
54
|
-
backgroundColor:
|
|
55
|
+
backgroundColor: colors.darkBlue,
|
|
55
56
|
borderRadius: width / 25,
|
|
56
57
|
},
|
|
57
58
|
iconWrapper: {
|
|
@@ -60,7 +61,7 @@ export const modalStyle = StyleSheet.create({
|
|
|
60
61
|
marginTop: `3%`,
|
|
61
62
|
},
|
|
62
63
|
icon: {
|
|
63
|
-
color:
|
|
64
|
+
color: colors.mistBlue,
|
|
64
65
|
fontSize: width / 12,
|
|
65
66
|
},
|
|
66
67
|
textContainer: {
|
|
@@ -75,19 +76,19 @@ export const modalStyle = StyleSheet.create({
|
|
|
75
76
|
alignSelf: `flex-start`,
|
|
76
77
|
},
|
|
77
78
|
titleRowLayout: {
|
|
78
|
-
color:
|
|
79
|
+
color: colors.fadeBlue,
|
|
79
80
|
fontSize: width / 17,
|
|
80
81
|
textAlign: `center`,
|
|
81
82
|
marginBottom: `10%`,
|
|
82
83
|
},
|
|
83
84
|
titleColumnLayout: {
|
|
84
|
-
color:
|
|
85
|
+
color: colors.fadeBlue,
|
|
85
86
|
fontSize: width / 17,
|
|
86
87
|
textAlign: `center`,
|
|
87
88
|
marginBottom: `5%`,
|
|
88
89
|
},
|
|
89
90
|
message: {
|
|
90
|
-
color: `
|
|
91
|
+
color: `white`,
|
|
91
92
|
fontSize: width / 22,
|
|
92
93
|
textAlign: `center`,
|
|
93
94
|
},
|
|
@@ -112,7 +113,7 @@ export const modalStyle = StyleSheet.create({
|
|
|
112
113
|
height: height / 18,
|
|
113
114
|
width: width / 1.5,
|
|
114
115
|
marginTop: 0,
|
|
115
|
-
backgroundColor:
|
|
116
|
+
backgroundColor: colors.teal,
|
|
116
117
|
},
|
|
117
118
|
secondButtonColumn: {
|
|
118
119
|
alignSelf: `center`,
|
|
@@ -130,11 +131,11 @@ export const modalStyle = StyleSheet.create({
|
|
|
130
131
|
textAlign: `center`,
|
|
131
132
|
fontSize: width / 22,
|
|
132
133
|
paddingHorizontal: 15,
|
|
133
|
-
color:
|
|
134
|
+
color: colors.semiDarkBlue,
|
|
134
135
|
},
|
|
135
136
|
textSecondButtonColumn: {
|
|
136
137
|
textAlign: `center`,
|
|
137
138
|
fontSize: width / 26,
|
|
138
|
-
color:
|
|
139
|
+
color: colors.teal,
|
|
139
140
|
},
|
|
140
141
|
});
|
|
@@ -46,9 +46,11 @@ export default class Emotion extends React.Component {
|
|
|
46
46
|
</View>);
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
|
+
const { width } = Dimensions.get(`screen`);
|
|
49
50
|
const emotionStyles = StyleSheet.create({
|
|
50
51
|
container: {
|
|
51
52
|
flex: 1,
|
|
53
|
+
marginTop: width / 20,
|
|
52
54
|
},
|
|
53
55
|
feelingContainer: {
|
|
54
56
|
marginVertical: `3%`,
|
|
@@ -56,7 +58,7 @@ const emotionStyles = StyleSheet.create({
|
|
|
56
58
|
feelingText: {
|
|
57
59
|
textAlign: `center`,
|
|
58
60
|
color: `white`,
|
|
59
|
-
fontSize:
|
|
61
|
+
fontSize: width / 26,
|
|
60
62
|
},
|
|
61
63
|
moodIconContainer: { flex: 1, flexDirection: `row`, justifyContent: `center` },
|
|
62
64
|
});
|
|
@@ -54,10 +54,10 @@ export default class MoodIcon extends React.Component {
|
|
|
54
54
|
}
|
|
55
55
|
const moodIconStyles = StyleSheet.create({
|
|
56
56
|
container: {
|
|
57
|
-
marginHorizontal: `1%`,
|
|
57
|
+
marginHorizontal: `1.5%`,
|
|
58
58
|
},
|
|
59
59
|
icon: {
|
|
60
|
-
width: Dimensions.get(`screen`).width /
|
|
61
|
-
height: Dimensions.get(`screen`).width /
|
|
60
|
+
width: Dimensions.get(`screen`).width / 11,
|
|
61
|
+
height: Dimensions.get(`screen`).width / 11,
|
|
62
62
|
},
|
|
63
63
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/* eslint-disable */module.exports={languageData:{"plurals":function(n,ord){var s=String(n).split("."),i=s[0],t0=Number(s[0])==n;if(ord)return"other";return n==1||!t0&&(i==0||i==1)?"one":"other"}},messages:{"Active Insulin":"Aktiv insulin","Activity":"Aktivitet","Additional":"Supplerende","Attention":"OBS","Based on the selected activity your insulin recommendation is reduced by:":"Baseret p\xE5 din valgte aktivitet er din insulin anbefaling reduceret med:","Blood Glucose Level":"Blodsukker","Blood Ketone Level":"Blodketonniveau","Carbohydrates":"Kulhydrater","Close calculation":"Luk beregning","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\xE6nser for blodsukker f\xF8r en aktivitet. Du b\xF8r overveje at udskyde fysisk aktivitet.","Entered":"Indtastet","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["Ups! Hedia kan ikke anbefale mere end ",a("SAFETY_INSULIN_LIMIT")," enheder hurtigtvirkende insulin i \xE9n dosis"]},"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\xE5 tager Hedia h\xF8jde for aktiv insulin","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":"Ups! Hedia har lavet en fejl. V\xE6lg venligst intensitet for aktivitet igen","Error. Hedia Calculator does not support your activity type value":"Ups! Der er sket en fejl ved den valgte aktivitetstype. G\xE5 venligst til \u201Caktivitet\u201D og indtast type igen","Error. Hedia Calculator does not support your current blood glucose level.":"Ups! Hedia har lavet en fejl. Indtast venligst en blodsukkerv\xE6rdi indenfor Hedia\u2019s definerede gr\xE6nser for blodsukker","Error. Hedia Calculator does not support your current blood glucose unit.":"Ups! G\xE5 venligst til indstillinger blodsukker og opdater blodsukker enhed til mmol/L eller mg/dL","Error. Hedia Calculator does not support your current blood ketone level.":"Fejl. Hedia beregneren underst\xF8tter ikke dit nuv\xE6rende blodketonniveau.","Error. Hedia Calculator does not support your current blood ketone unit.":"Fejl. Hedia beregneren underst\xF8tter ikke din nuv\xE6rende blodketon enhed.","Error. Hedia Calculator does not support your current language.":"Ups! G\xE5 venligst til indstillinger for sprog og v\xE6lg dansk eller engelsk","Error. Hedia Calculator does not support your injection method.":"Ups! G\xE5 venligst til indstillinger for insulinberegner og v\xE6lg behandlingstype","Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.":"Ups! Hedia har lavet en fejl. Indtast venligst en aktivitet p\xE5 max 60 minutters varighed","Error. Please verify that your activity settings are set up correctly.":"Ups! G\xE5 venligst til indstillinger for aktivitet og bekr\xE6ft at de er korrekte","Error. Please verify that your activity target blood glucose value is correct.":"Ups! G\xE5 venligst til indstillinger for aktivitet og bekr\xE6ft at dit \xF8nskede blodsukker er korrekt","Error. Please verify that your insulin sensitivity value is correct.":"Ups! G\xE5 venligst til insulinindstillinger under indstillinger for insulinberegner og bekr\xE6ft at din insulin sensitivitet er korrekt","Error. Please verify that your insulin to carb ratio value is correct.":"Ups! G\xE5 venligst til insulinindstillinger under indstillinger for insulinberegner og bekr\xE6ft at din kulhydrat-insulinratio er korrekt","Error. Please verify that your target blood glucose value is correct.":"Ups! G\xE5 venligst til indstillinger for blodsukker og bekr\xE6ft at dit \xF8nskede blodsukker er indstillet efter dine personlige m\xE5l","Error. Please verify your notifications settings.":"Ups! G\xE5 venligst til indstillinger for notifikationer og bekr\xE6ft at notifikationer er indstillet korrekt","Error. Your blood ketone settings are invalid.":"Error. Your blood ketone settings are invalid.","Food":"Mad","Hard":"H\xE5rd","Have you taken insulin within the last 4 hours?":"Har du taget insulin inden for de sidste 4 timer?","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\xE6ngere muligt at indtaste tidligere aktiviter i Hedia.","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\xE6rdi mellem 0 og 300 gram","Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.":function(a){return["Hedia underst\xF8tter maksimalt ",a("SAFETY_INSULIN_LIMIT")," enheder af insulin per beregning"]},"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 underst\xF8tter maksimalt ",a("SAFETY_INSULIN_LIMIT")," enheder af insulin per beregning men p\xE5 grund af den fysiske aktivitet du har indtastet, er gr\xE6nsen reduceret med yderligere ",a("0"),"% til ",a("1")," enheder for denne beregning."]},"How are you feeling?":"Hvordan har du det?","INSULIN{0}RECOMMENDATION":function(a){return["INSULIN",a("0"),"ANBEFALING"]},"If it is possible, postpone your planned exercise.":"Hvis det er muligt, uds\xE6t din planlagte tr\xE6ning.","Instead of taking insulin":"I stedet for at tage insulin","Light":"Let","Moderate":"Moderat","More than 15 minutes has passed since this calculation was started.":"Der er g\xE5et mere end 15 minutter siden udregningen blev startet.","NO":"NEJ","No":"Nej","No, return to dashboard":"Nej, tilbage til dashboard","OFF":"OFF","OK":"OK","Please go through the calculation steps with new measurements to ensure a safe recommendation.":"G\xE5 venligst gennem udregningstrinnene igen med nye m\xE5linger for at sikre en sikker anbefaling.","Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?":function(a){return["Hedia's anbefaling fra ",a("day")," kl. ",a("time")," blev ikke overf\xF8rt til din logbog.",a("0"),"Brugte du anbefalingen?"]},"Recommended":"Anbefalet","Recommended amount of insulin":"Anbefalet enhed(er) af insulin","Remind me to remeasure in":"P\xE5mind mig at genm\xE5le om","Return to dashboard":"Tilbage til dashboard","Save data before closing?":"Vil du gemme din indtastning?","Save to logbook":"Gem i logbog","Start new calculation":"Start ny beregning","Total":"Sum","Transfer to logbook":"Overf\xF8r til logbog","Transferred to logbook":"Overf\xF8rt til logbog","Units":"Enheder","Untitled Activity":"Unavngivet aktivitet","We recommend eating an additional:":"Vi anbefaler at spise yderligere:","Would you like to add this to your current calculation?":"Vil du gerne tilf\xF8je dette til din nuv\xE6rende beregning?","Yes":"Ja","Yes, save to logbook":"Ja, gem i logbogen","You have a high blood glucose level.":"Du har h\xF8jt blodsukker.","You should take rapid-acting insulin and measure ketones.":"Du burde tage hurtigtvirkende insulin og m\xE5le ketoner.","You will be reminded to measure your blood glucose level in 15 min.":"Du vil f\xE5 en p\xE5mindelse om at m\xE5le dit blodsukker om 15 minutter.","Your blood glucose level is very low.":"Dit blodsukker er meget lavt.","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\xF8g l\xE6gehj\xE6lp.","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["Din anbefaling ville have v\xE6ret h\xF8jere end ",a("0")," enheder af insulin men den er blevet begr\xE6nset af sikkerhedshensyn.",a("1")," Hedia anbefaler aldrig mere end ",a("SAFETY_INSULIN_LIMIT")," enheder af insulin per beregning men p\xE5 grund af den fysiske aktivitet du har indtastet er gr\xE6nsen reduceret med yderligere ",a("2"),"% til ",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["Din anbefaling ville have v\xE6ret h\xF8jere end ",a("SAFETY_INSULIN_LIMIT")," enheder af insulin men den er blevet begr\xE6nset af sikkerhedshensyn. Hedia anbefaler aldrig mere end ",a("SAFETY_INSULIN_LIMIT")," enheder af insulin per beregning."]},"Your saved data will be used for future calculations.":"Dine gemte indtastninger vil blive brugt til fremtidige beregninger.","grams":"gram","grams of carbohydrates":"gram kulhydrater","hours":"timer","min":"min","units":"enheder"}};
|
|
1
|
+
/* eslint-disable */module.exports={languageData:{"plurals":function(n,ord){var s=String(n).split("."),i=s[0],t0=Number(s[0])==n;if(ord)return"other";return n==1||!t0&&(i==0||i==1)?"one":"other"}},messages:{"Active Insulin":"Aktiv insulin","Activity":"Aktivitet","Additional":"Supplerende","Attention":"OBS","Based on the selected activity your insulin recommendation is reduced by:":"Baseret p\xE5 din valgte aktivitet er din insulin anbefaling reduceret med:","Blood Glucose Level":"Blodsukker","Blood Ketone Level":"Blodketonniveau","Carbohydrates":"Kulhydrater","Close calculation":"Luk beregning","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\xE6nser for blodsukker f\xF8r en aktivitet. Du b\xF8r overveje at udskyde fysisk aktivitet.","Current glucose: {0} mmol/L":function(a){return["Current glucose: ",a("0")," mmol/L"]},"Current glucose: {latestCGMReading} {0}":function(a){return["Current glucose: ",a("latestCGMReading")," ",a("0")]},"Edit":"Edit","Entered":"Indtastet","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["Ups! Hedia kan ikke anbefale mere end ",a("SAFETY_INSULIN_LIMIT")," enheder hurtigtvirkende insulin i \xE9n dosis"]},"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\xE5 tager Hedia h\xF8jde for aktiv insulin","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":"Ups! Hedia har lavet en fejl. V\xE6lg venligst intensitet for aktivitet igen","Error. Hedia Calculator does not support your activity type value":"Ups! Der er sket en fejl ved den valgte aktivitetstype. G\xE5 venligst til \u201Caktivitet\u201D og indtast type igen","Error. Hedia Calculator does not support your current blood glucose level.":"Ups! Hedia har lavet en fejl. Indtast venligst en blodsukkerv\xE6rdi indenfor Hedia\u2019s definerede gr\xE6nser for blodsukker","Error. Hedia Calculator does not support your current blood glucose unit.":"Ups! G\xE5 venligst til indstillinger blodsukker og opdater blodsukker enhed til mmol/L eller mg/dL","Error. Hedia Calculator does not support your current blood ketone level.":"Fejl. Hedia beregneren underst\xF8tter ikke dit nuv\xE6rende blodketonniveau.","Error. Hedia Calculator does not support your current blood ketone unit.":"Fejl. Hedia beregneren underst\xF8tter ikke din nuv\xE6rende blodketon enhed.","Error. Hedia Calculator does not support your current language.":"Ups! G\xE5 venligst til indstillinger for sprog og v\xE6lg dansk eller engelsk","Error. Hedia Calculator does not support your injection method.":"Ups! G\xE5 venligst til indstillinger for insulinberegner og v\xE6lg behandlingstype","Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.":"Ups! Hedia har lavet en fejl. Indtast venligst en aktivitet p\xE5 max 60 minutters varighed","Error. Please verify that your activity settings are set up correctly.":"Ups! G\xE5 venligst til indstillinger for aktivitet og bekr\xE6ft at de er korrekte","Error. Please verify that your activity target blood glucose value is correct.":"Ups! G\xE5 venligst til indstillinger for aktivitet og bekr\xE6ft at dit \xF8nskede blodsukker er korrekt","Error. Please verify that your insulin sensitivity value is correct.":"Ups! G\xE5 venligst til insulinindstillinger under indstillinger for insulinberegner og bekr\xE6ft at din insulin sensitivitet er korrekt","Error. Please verify that your insulin to carb ratio value is correct.":"Ups! G\xE5 venligst til insulinindstillinger under indstillinger for insulinberegner og bekr\xE6ft at din kulhydrat-insulinratio er korrekt","Error. Please verify that your target blood glucose value is correct.":"Ups! G\xE5 venligst til indstillinger for blodsukker og bekr\xE6ft at dit \xF8nskede blodsukker er indstillet efter dine personlige m\xE5l","Error. Please verify your notifications settings.":"Ups! G\xE5 venligst til indstillinger for notifikationer og bekr\xE6ft at notifikationer er indstillet korrekt","Error. Your blood ketone settings are invalid.":"Error. Your blood ketone settings are invalid.","Food":"Mad","Forecast time:":"Forecast time:","Forecasted Glucose":"Forecasted Glucose","Hard":"H\xE5rd","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.":"Ups! Det lader til at du bruger en gammel version af Hedia. Det er ikke l\xE6ngere muligt at indtaste tidligere aktiviter i Hedia.","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\xE6rdi mellem 0 og 300 gram","Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.":function(a){return["Hedia underst\xF8tter maksimalt ",a("SAFETY_INSULIN_LIMIT")," enheder af insulin per beregning"]},"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 underst\xF8tter maksimalt ",a("SAFETY_INSULIN_LIMIT")," enheder af insulin per beregning men p\xE5 grund af den fysiske aktivitet du har indtastet, er gr\xE6nsen reduceret med yderligere ",a("0"),"% til ",a("1")," enheder for denne beregning."]},"How are you feeling?":"Hvordan har du det?","If it is possible, postpone your planned exercise.":"Hvis det er muligt, uds\xE6t din planlagte tr\xE6ning.","Instead of taking insulin":"I stedet for at tage insulin","Insulin recommendation":"Insulin anbefaling","Light":"Let","Moderate":"Moderat","More than 15 minutes has passed since this calculation was started.":"Der er g\xE5et mere end 15 minutter siden udregningen blev startet.","NO":"NEJ","No":"Nej","No, return to dashboard":"Nej, tilbage til dashboard","OFF":"OFF","OK":"OK","Please go through the calculation steps with new measurements to ensure a safe recommendation.":"G\xE5 venligst gennem udregningstrinnene igen med nye m\xE5linger for at sikre en sikker anbefaling.","Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?":function(a){return["Hedia's anbefaling fra ",a("day")," kl. ",a("time")," blev ikke overf\xF8rt til din logbog.",a("0"),"Brugte du anbefalingen?"]},"Recommended":"Anbefalet","Recommended amount of rapid-acting insulin for immidiate injection":"Recommended amount of rapid-acting insulin for immidiate injection","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":"P\xE5mind mig at genm\xE5le om","Return to dashboard":"Tilbage til dashboard","Save data before closing?":"Vil du gemme din indtastning?","Save to logbook":"Gem i logbog","Start new calculation":"Start ny beregning","Total":"Sum","Units":"Enheder","Untitled Activity":"Unavngivet aktivitet","We recommend eating an additional:":"Vi anbefaler at spise yderligere:","Would you like to add this to your current calculation?":"Vil du gerne tilf\xF8je dette til din nuv\xE6rende beregning?","Yes":"Ja","Yes, save to logbook":"Ja, gem i logbogen","You have a high blood glucose level.":"Du har h\xF8jt blodsukker.","You should take rapid-acting insulin and measure ketones.":"Du burde tage hurtigtvirkende insulin og m\xE5le ketoner.","You will be reminded to measure your blood glucose level in 15 min.":"Du vil f\xE5 en p\xE5mindelse om at m\xE5le dit blodsukker om 15 minutter.","Your blood glucose level is very low.":"Dit blodsukker er meget lavt.","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\xF8g l\xE6gehj\xE6lp.","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["Din anbefaling ville have v\xE6ret h\xF8jere end ",a("0")," enheder af insulin men den er blevet begr\xE6nset af sikkerhedshensyn.",a("1")," Hedia anbefaler aldrig mere end ",a("SAFETY_INSULIN_LIMIT")," enheder af insulin per beregning men p\xE5 grund af den fysiske aktivitet du har indtastet er gr\xE6nsen reduceret med yderligere ",a("2"),"% til ",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["Din anbefaling ville have v\xE6ret h\xF8jere end ",a("SAFETY_INSULIN_LIMIT")," enheder af insulin men den er blevet begr\xE6nset af sikkerhedshensyn. Hedia anbefaler aldrig mere end ",a("SAFETY_INSULIN_LIMIT")," enheder af insulin per beregning."]},"Your saved data will be used for future calculations.":"Dine gemte indtastninger vil blive brugt til fremtidige beregninger.","grams":"gram","grams of carbohydrates":"gram kulhydrater","hours":"timer","min":"min","units":"enheder"}};
|
|
@@ -13,42 +13,42 @@ msgstr ""
|
|
|
13
13
|
"Language-Team: \n"
|
|
14
14
|
"Plural-Forms: \n"
|
|
15
15
|
|
|
16
|
-
#: src/RecommendationScreen.tsx:
|
|
16
|
+
#: src/RecommendationScreen.tsx:453
|
|
17
17
|
msgid "Active Insulin"
|
|
18
18
|
msgstr "Aktiv insulin"
|
|
19
19
|
|
|
20
|
-
#: src/components/activity/Activity.tsx:
|
|
20
|
+
#: src/components/activity/Activity.tsx:34
|
|
21
21
|
msgid "Activity"
|
|
22
22
|
msgstr "Aktivitet"
|
|
23
23
|
|
|
24
|
-
#: src/components/RecommendedCarbs.tsx:
|
|
24
|
+
#: src/components/RecommendedCarbs.tsx:104
|
|
25
25
|
msgid "Additional"
|
|
26
26
|
msgstr "Supplerende"
|
|
27
27
|
|
|
28
|
-
#: src/components/LimitationMessage.tsx:
|
|
29
|
-
#: src/components/RecommendationModal.tsx:
|
|
30
|
-
#: src/components/RecommendedCarbs.tsx:
|
|
31
|
-
#: src/components/RecommendedInsulin.tsx:
|
|
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
32
|
msgid "Attention"
|
|
33
33
|
msgstr "OBS"
|
|
34
34
|
|
|
35
|
-
#: src/components/activity/Activity.tsx:
|
|
35
|
+
#: src/components/activity/Activity.tsx:51
|
|
36
36
|
msgid "Based on the selected activity your insulin recommendation is reduced by:"
|
|
37
37
|
msgstr "Baseret på din valgte aktivitet er din insulin anbefaling reduceret med:"
|
|
38
38
|
|
|
39
|
-
#: src/RecommendationScreen.tsx:
|
|
39
|
+
#: src/RecommendationScreen.tsx:454
|
|
40
40
|
msgid "Blood Glucose Level"
|
|
41
41
|
msgstr "Blodsukker"
|
|
42
42
|
|
|
43
|
-
#: src/RecommendationScreen.tsx:
|
|
43
|
+
#: src/RecommendationScreen.tsx:455
|
|
44
44
|
msgid "Blood Ketone Level"
|
|
45
45
|
msgstr "Blodketonniveau"
|
|
46
46
|
|
|
47
|
-
#: src/components/RecommendedCarbs.tsx:
|
|
47
|
+
#: src/components/RecommendedCarbs.tsx:169
|
|
48
48
|
msgid "Carbohydrates"
|
|
49
49
|
msgstr "Kulhydrater"
|
|
50
50
|
|
|
51
|
-
#: src/RecommendationScreen.tsx:
|
|
51
|
+
#: src/RecommendationScreen.tsx:471
|
|
52
52
|
msgid "Close calculation"
|
|
53
53
|
msgstr "Luk beregning"
|
|
54
54
|
|
|
@@ -56,7 +56,19 @@ msgstr "Luk beregning"
|
|
|
56
56
|
msgid "Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity."
|
|
57
57
|
msgstr "Dit blodsukker ligger udenfor de anbefalede grænser for blodsukker før en aktivitet. Du bør overveje at udskyde fysisk aktivitet."
|
|
58
58
|
|
|
59
|
-
#: src/components/
|
|
59
|
+
#: src/__tests__/components/ForecastInfoBar.test.tsx:24
|
|
60
|
+
msgid "Current glucose: {0} mmol/L"
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
63
|
+
#: src/components/ForecastInfoBar.tsx:61
|
|
64
|
+
msgid "Current glucose: {latestCGMReading} {0}"
|
|
65
|
+
msgstr ""
|
|
66
|
+
|
|
67
|
+
#: src/components/RecommendedInsulin.tsx:109
|
|
68
|
+
msgid "Edit"
|
|
69
|
+
msgstr ""
|
|
70
|
+
|
|
71
|
+
#: src/components/RecommendedCarbs.tsx:173
|
|
60
72
|
msgid "Entered"
|
|
61
73
|
msgstr "Indtastet"
|
|
62
74
|
|
|
@@ -140,17 +152,25 @@ msgstr "Ups! Gå venligst til indstillinger for notifikationer og bekræft at no
|
|
|
140
152
|
msgid "Error. Your blood ketone settings are invalid."
|
|
141
153
|
msgstr ""
|
|
142
154
|
|
|
143
|
-
#: src/components/RecommendedCarbs.tsx:
|
|
155
|
+
#: src/components/RecommendedCarbs.tsx:167
|
|
144
156
|
msgid "Food"
|
|
145
157
|
msgstr "Mad"
|
|
146
158
|
|
|
159
|
+
#: src/components/ForecastInfoBar.tsx:54
|
|
160
|
+
msgid "Forecast time:"
|
|
161
|
+
msgstr ""
|
|
162
|
+
|
|
163
|
+
#: src/RecommendationScreen.tsx:454
|
|
164
|
+
msgid "Forecasted Glucose"
|
|
165
|
+
msgstr ""
|
|
166
|
+
|
|
147
167
|
#: src/utils/Translations.ts:13
|
|
148
168
|
msgid "Hard"
|
|
149
169
|
msgstr "Hård"
|
|
150
170
|
|
|
151
171
|
#: src/components/RecentInsulin.tsx:24
|
|
152
|
-
msgid "Have you taken insulin within the last 4 hours?"
|
|
153
|
-
msgstr "
|
|
172
|
+
msgid "Have you taken rapid-acting insulin within the last 4 hours?"
|
|
173
|
+
msgstr ""
|
|
154
174
|
|
|
155
175
|
#: src/utils/RecommendationError.tsx:24
|
|
156
176
|
msgid "Hedia Calculator does not support activities that finished more than 4 hours ago."
|
|
@@ -168,22 +188,22 @@ msgstr "Hedia understøtter maksimalt {SAFETY_INSULIN_LIMIT} enheder af insulin
|
|
|
168
188
|
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."
|
|
169
189
|
msgstr "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."
|
|
170
190
|
|
|
171
|
-
#: src/components/mood/Emotion.tsx:
|
|
191
|
+
#: src/components/mood/Emotion.tsx:46
|
|
172
192
|
msgid "How are you feeling?"
|
|
173
193
|
msgstr "Hvordan har du det?"
|
|
174
194
|
|
|
175
|
-
#: src/components/Header.tsx:26
|
|
176
|
-
msgid "INSULIN{0}RECOMMENDATION"
|
|
177
|
-
msgstr "INSULIN{0}ANBEFALING"
|
|
178
|
-
|
|
179
195
|
#: src/utils/AttentionMessages.tsx:84
|
|
180
196
|
msgid "If it is possible, postpone your planned exercise."
|
|
181
197
|
msgstr "Hvis det er muligt, udsæt din planlagte træning."
|
|
182
198
|
|
|
183
|
-
#: src/components/RecommendationModal.tsx:
|
|
199
|
+
#: src/components/RecommendationModal.tsx:83
|
|
184
200
|
msgid "Instead of taking insulin"
|
|
185
201
|
msgstr "I stedet for at tage insulin"
|
|
186
202
|
|
|
203
|
+
#: src/components/Header.tsx:19
|
|
204
|
+
msgid "Insulin recommendation"
|
|
205
|
+
msgstr "Insulin anbefaling"
|
|
206
|
+
|
|
187
207
|
#: src/utils/Translations.ts:11
|
|
188
208
|
msgid "Light"
|
|
189
209
|
msgstr "Let"
|
|
@@ -196,27 +216,27 @@ msgstr "Moderat"
|
|
|
196
216
|
msgid "More than 15 minutes has passed since this calculation was started."
|
|
197
217
|
msgstr "Der er gået mere end 15 minutter siden udregningen blev startet."
|
|
198
218
|
|
|
199
|
-
#: src/components/RecommendationModal.tsx:
|
|
219
|
+
#: src/components/RecommendationModal.tsx:53
|
|
200
220
|
msgid "NO"
|
|
201
221
|
msgstr "NEJ"
|
|
202
222
|
|
|
203
|
-
#: src/components/RecentInsulin.tsx:
|
|
223
|
+
#: src/components/RecentInsulin.tsx:32
|
|
204
224
|
msgid "No"
|
|
205
225
|
msgstr "Nej"
|
|
206
226
|
|
|
207
|
-
#: src/RecommendationScreen.tsx:
|
|
227
|
+
#: src/RecommendationScreen.tsx:476
|
|
208
228
|
msgid "No, return to dashboard"
|
|
209
229
|
msgstr "Nej, tilbage til dashboard"
|
|
210
230
|
|
|
211
|
-
#: src/components/Remeasure.tsx:
|
|
231
|
+
#: src/components/Remeasure.tsx:74
|
|
212
232
|
msgid "OFF"
|
|
213
233
|
msgstr "OFF"
|
|
214
234
|
|
|
215
|
-
#: src/components/LimitationMessage.tsx:
|
|
216
|
-
#: src/components/RecommendationModal.tsx:
|
|
217
|
-
#: src/components/RecommendationModal.tsx:
|
|
218
|
-
#: src/components/RecommendedCarbs.tsx:
|
|
219
|
-
#: src/components/RecommendedInsulin.tsx:
|
|
235
|
+
#: src/components/LimitationMessage.tsx:27
|
|
236
|
+
#: src/components/RecommendationModal.tsx:50
|
|
237
|
+
#: src/components/RecommendationModal.tsx:111
|
|
238
|
+
#: src/components/RecommendedCarbs.tsx:68
|
|
239
|
+
#: src/components/RecommendedInsulin.tsx:78
|
|
220
240
|
msgid "OK"
|
|
221
241
|
msgstr "OK"
|
|
222
242
|
|
|
@@ -228,68 +248,64 @@ msgstr "Gå venligst gennem udregningstrinnene igen med nye målinger for at sik
|
|
|
228
248
|
msgid "Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?"
|
|
229
249
|
msgstr "Hedia's anbefaling fra {day} kl. {time} blev ikke overført til din logbog.{0}Brugte du anbefalingen?"
|
|
230
250
|
|
|
231
|
-
#: src/components/RecommendedCarbs.tsx:
|
|
251
|
+
#: src/components/RecommendedCarbs.tsx:99
|
|
232
252
|
msgid "Recommended"
|
|
233
253
|
msgstr "Anbefalet"
|
|
234
254
|
|
|
235
|
-
#: src/components/
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
255
|
+
#: src/components/RecommendedInsulin.tsx:94
|
|
256
|
+
msgid "Recommended amount of rapid-acting insulin for immidiate injection"
|
|
257
|
+
msgstr ""
|
|
258
|
+
|
|
259
|
+
#: src/components/RecommendedInsulin.tsx:95
|
|
260
|
+
msgid "Recommended amount of rapid-acting insulin for immidiate injection based on forecasted glucose"
|
|
261
|
+
msgstr ""
|
|
239
262
|
|
|
240
|
-
#: src/components/Remeasure.tsx:
|
|
263
|
+
#: src/components/Remeasure.tsx:68
|
|
241
264
|
msgid "Remind me to remeasure in"
|
|
242
265
|
msgstr "Påmind mig at genmåle om"
|
|
243
266
|
|
|
244
|
-
#: src/RecommendationScreen.tsx:
|
|
267
|
+
#: src/RecommendationScreen.tsx:476
|
|
245
268
|
msgid "Return to dashboard"
|
|
246
269
|
msgstr "Tilbage til dashboard"
|
|
247
270
|
|
|
248
|
-
#: src/RecommendationScreen.tsx:
|
|
271
|
+
#: src/RecommendationScreen.tsx:471
|
|
249
272
|
msgid "Save data before closing?"
|
|
250
273
|
msgstr "Vil du gemme din indtastning?"
|
|
251
274
|
|
|
252
|
-
#: src/RecommendationScreen.tsx:
|
|
275
|
+
#: src/RecommendationScreen.tsx:471
|
|
276
|
+
#: src/components/SaveButton.tsx:45
|
|
253
277
|
msgid "Save to logbook"
|
|
254
278
|
msgstr "Gem i logbog"
|
|
255
279
|
|
|
256
|
-
#: src/RecommendationScreen.tsx:
|
|
280
|
+
#: src/RecommendationScreen.tsx:476
|
|
257
281
|
msgid "Start new calculation"
|
|
258
282
|
msgstr "Start ny beregning"
|
|
259
283
|
|
|
260
|
-
#: src/components/RecommendedCarbs.tsx:
|
|
284
|
+
#: src/components/RecommendedCarbs.tsx:126
|
|
261
285
|
msgid "Total"
|
|
262
286
|
msgstr "Sum"
|
|
263
287
|
|
|
264
|
-
#: src/components/
|
|
265
|
-
msgid "Transfer to logbook"
|
|
266
|
-
msgstr "Overfør til logbog"
|
|
267
|
-
|
|
268
|
-
#: src/components/TransferToLogbook.tsx:47
|
|
269
|
-
msgid "Transferred to logbook"
|
|
270
|
-
msgstr "Overført til logbog"
|
|
271
|
-
|
|
272
|
-
#: src/components/RecommendedInsulin.tsx:104
|
|
288
|
+
#: src/components/RecommendedInsulin.tsx:105
|
|
273
289
|
msgid "Units"
|
|
274
290
|
msgstr "Enheder"
|
|
275
291
|
|
|
276
|
-
#: src/components/activity/ActivityIcon.tsx:
|
|
292
|
+
#: src/components/activity/ActivityIcon.tsx:42
|
|
277
293
|
msgid "Untitled Activity"
|
|
278
294
|
msgstr "Unavngivet aktivitet"
|
|
279
295
|
|
|
280
|
-
#: src/components/RecommendationModal.tsx:
|
|
296
|
+
#: src/components/RecommendationModal.tsx:68
|
|
281
297
|
msgid "We recommend eating an additional:"
|
|
282
298
|
msgstr "Vi anbefaler at spise yderligere:"
|
|
283
299
|
|
|
284
|
-
#: src/components/RecommendationModal.tsx:
|
|
300
|
+
#: src/components/RecommendationModal.tsx:89
|
|
285
301
|
msgid "Would you like to add this to your current calculation?"
|
|
286
302
|
msgstr "Vil du gerne tilføje dette til din nuværende beregning?"
|
|
287
303
|
|
|
288
|
-
#: src/components/RecentInsulin.tsx:
|
|
304
|
+
#: src/components/RecentInsulin.tsx:29
|
|
289
305
|
msgid "Yes"
|
|
290
306
|
msgstr "Ja"
|
|
291
307
|
|
|
292
|
-
#: src/RecommendationScreen.tsx:
|
|
308
|
+
#: src/RecommendationScreen.tsx:476
|
|
293
309
|
msgid "Yes, save to logbook"
|
|
294
310
|
msgstr "Ja, gem i logbogen"
|
|
295
311
|
|
|
@@ -321,29 +337,29 @@ msgstr "Din anbefaling ville have været højere end {0} enheder af insulin men
|
|
|
321
337
|
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."
|
|
322
338
|
msgstr "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."
|
|
323
339
|
|
|
324
|
-
#: src/RecommendationScreen.tsx:
|
|
340
|
+
#: src/RecommendationScreen.tsx:471
|
|
325
341
|
msgid "Your saved data will be used for future calculations."
|
|
326
342
|
msgstr "Dine gemte indtastninger vil blive brugt til fremtidige beregninger."
|
|
327
343
|
|
|
328
|
-
#: src/components/RecommendedCarbs.tsx:
|
|
329
|
-
#: src/components/RecommendedCarbs.tsx:
|
|
330
|
-
#: src/components/RecommendedCarbs.tsx:
|
|
344
|
+
#: src/components/RecommendedCarbs.tsx:118
|
|
345
|
+
#: src/components/RecommendedCarbs.tsx:128
|
|
346
|
+
#: src/components/RecommendedCarbs.tsx:175
|
|
331
347
|
msgid "grams"
|
|
332
348
|
msgstr "gram"
|
|
333
349
|
|
|
334
|
-
#: src/components/RecommendationModal.tsx:
|
|
350
|
+
#: src/components/RecommendationModal.tsx:77
|
|
335
351
|
msgid "grams of carbohydrates"
|
|
336
352
|
msgstr "gram kulhydrater"
|
|
337
353
|
|
|
338
|
-
#: src/components/Remeasure.tsx:
|
|
354
|
+
#: src/components/Remeasure.tsx:78
|
|
339
355
|
msgid "hours"
|
|
340
356
|
msgstr "timer"
|
|
341
357
|
|
|
342
|
-
#: src/components/activity/Activity.tsx:
|
|
358
|
+
#: src/components/activity/Activity.tsx:43
|
|
343
359
|
msgid "min"
|
|
344
360
|
msgstr "min"
|
|
345
361
|
|
|
346
|
-
#: src/RecommendationScreen.tsx:
|
|
347
|
-
#: src/components/InfoBars.tsx:
|
|
362
|
+
#: src/RecommendationScreen.tsx:453
|
|
363
|
+
#: src/components/InfoBars.tsx:43
|
|
348
364
|
msgid "units"
|
|
349
365
|
msgstr "enheder"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/* eslint-disable */module.exports={languageData:{"plurals":function(n,ord){var s=String(n).split("."),v0=!s[1];if(ord)return"other";return n==1&&v0?"one":"other"}},messages:{"Active Insulin":"Aktives Insulin","Activity":"Aktivit\xE4t","Additional":"Zus\xE4tzlich","Attention":"Achtung","Based on the selected activity your insulin recommendation is reduced by:":"Aufgrund der gew\xE4hlten Aktivit\xE4t wird Ihre Insulinempfehlung reduziert um:","Blood Glucose Level":"Blutzucker","Blood Ketone Level":"Blutketonspiegel","Carbohydrates":"Kohlenhydrate","Close calculation":"Berechnung schlie\xDFen","Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.":"Bet\xE4tigen Sie sich erst dann k\xF6rperlich, wenn Ihr Blutzucker vor der k\xF6rperlichen Aktivit\xE4t innerhalb des empfohlenen Wertebereichs liegt.","Entered":"Eingegeben","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["Fehler. Der Hedia-Rechner unterst\xFCtzt keine Insulindosis, die mehr als ",a("SAFETY_INSULIN_LIMIT")," Einheiten hat."]},"Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours":"Fehler. Der Hedia-Rechner unterst\xFCtzt keine Insulinempfehlungen mit Boli, die \xE4lter als 4 Stunden sind.","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":"Fehler. Der Hedia-Rechner unterst\xFCtzt den Wert Ihrer Aktivit\xE4tsintensit\xE4t nicht.","Error. Hedia Calculator does not support your activity type value":"Fehler. Der Hedia-Rechner unterst\xFCtzt den Wert des Aktivit\xE4tstyps nicht.","Error. Hedia Calculator does not support your current blood glucose level.":"Fehler. Der Hedia-Rechner unterst\xFCtzt Ihren aktuellen Blutzucker nicht.","Error. Hedia Calculator does not support your current blood glucose unit.":"Fehler. Der Hedia-Rechner unterst\xFCtzt Ihre aktuelle Blutzuckereinheit nicht.","Error. Hedia Calculator does not support your current blood ketone level.":"Fehler. Der Hedia-Rechner unterst\xFCtzt Ihren aktuellen Blutketonspiegel nicht.","Error. Hedia Calculator does not support your current blood ketone unit.":"Fehler. Der Hedia-Rechner unterst\xFCtzt Ihre aktuelle Messeinheit f\xFCr Blutketone nicht.","Error. Hedia Calculator does not support your current language.":"Fehler. Der Hedia-Rechner unterst\xFCtzt Ihre aktuelle Spracheinstellung nicht.","Error. Hedia Calculator does not support your injection method.":"Fehler. Der Hedia-Rechner unterst\xFCtzt Ihre Injektionsmethode nicht.","Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.":"Fehler. Der Hedia-Rechner unterst\xFCtzt nur Aktivit\xE4ten mit einer Dauer von maximal 60 Minuten.","Error. Please verify that your activity settings are set up correctly.":"Fehler. Bitte \xFCberpr\xFCfen Sie, ob Ihre Aktivit\xE4tseinstellungen korrekt eingestellt sind.","Error. Please verify that your activity target blood glucose value is correct.":"Fehler. Bitte \xFCberpr\xFCfen Sie, ob Ihr gew\xFCnschter Blutzuckerwert f\xFCr Aktivit\xE4ten korrekt ist.","Error. Please verify that your insulin sensitivity value is correct.":"Fehler. Bitte \xFCberpr\xFCfen Sie, ob Ihr Insulinintensit\xE4tswert korrekt ist.","Error. Please verify that your insulin to carb ratio value is correct.":"Fehler. Bitte \xFCberpr\xFCfen Sie, ob der Wert von Ihrem Insulin-Kohlenhydrat-Verh\xE4ltnis korrekt ist.","Error. Please verify that your target blood glucose value is correct.":"Fehler. Bitte \xFCberpr\xFCfen Sie, ob Ihr gew\xFCnschter Blutzuckerwert korrekt ist.","Error. Please verify your notifications settings.":"Fehler. Bitte \xFCberpr\xFCfen Sie Ihre Benachrichtigungseinstellungen.","Error. Your blood ketone settings are invalid.":"Error. Your blood ketone settings are invalid.","Food":"Lebensmittel","Hard":"Hart","Have you taken insulin within the last 4 hours?":"
|
|
1
|
+
/* eslint-disable */module.exports={languageData:{"plurals":function(n,ord){var s=String(n).split("."),v0=!s[1];if(ord)return"other";return n==1&&v0?"one":"other"}},messages:{"Active Insulin":"Aktives Insulin","Activity":"Aktivit\xE4t","Additional":"Zus\xE4tzlich","Attention":"Achtung","Based on the selected activity your insulin recommendation is reduced by:":"Aufgrund der gew\xE4hlten Aktivit\xE4t wird Ihre Insulinempfehlung reduziert um:","Blood Glucose Level":"Blutzucker","Blood Ketone Level":"Blutketonspiegel","Carbohydrates":"Kohlenhydrate","Close calculation":"Berechnung schlie\xDFen","Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.":"Bet\xE4tigen Sie sich erst dann k\xF6rperlich, wenn Ihr Blutzucker vor der k\xF6rperlichen Aktivit\xE4t innerhalb des empfohlenen Wertebereichs liegt.","Current glucose: {0} mmol/L":function(a){return["Current glucose: ",a("0")," mmol/L"]},"Current glucose: {latestCGMReading} {0}":function(a){return["Current glucose: ",a("latestCGMReading")," ",a("0")]},"Edit":"Edit","Entered":"Eingegeben","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["Fehler. Der Hedia-Rechner unterst\xFCtzt keine Insulindosis, die mehr als ",a("SAFETY_INSULIN_LIMIT")," Einheiten hat."]},"Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours":"Fehler. Der Hedia-Rechner unterst\xFCtzt keine Insulinempfehlungen mit Boli, die \xE4lter als 4 Stunden sind.","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":"Fehler. Der Hedia-Rechner unterst\xFCtzt den Wert Ihrer Aktivit\xE4tsintensit\xE4t nicht.","Error. Hedia Calculator does not support your activity type value":"Fehler. Der Hedia-Rechner unterst\xFCtzt den Wert des Aktivit\xE4tstyps nicht.","Error. Hedia Calculator does not support your current blood glucose level.":"Fehler. Der Hedia-Rechner unterst\xFCtzt Ihren aktuellen Blutzucker nicht.","Error. Hedia Calculator does not support your current blood glucose unit.":"Fehler. Der Hedia-Rechner unterst\xFCtzt Ihre aktuelle Blutzuckereinheit nicht.","Error. Hedia Calculator does not support your current blood ketone level.":"Fehler. Der Hedia-Rechner unterst\xFCtzt Ihren aktuellen Blutketonspiegel nicht.","Error. Hedia Calculator does not support your current blood ketone unit.":"Fehler. Der Hedia-Rechner unterst\xFCtzt Ihre aktuelle Messeinheit f\xFCr Blutketone nicht.","Error. Hedia Calculator does not support your current language.":"Fehler. Der Hedia-Rechner unterst\xFCtzt Ihre aktuelle Spracheinstellung nicht.","Error. Hedia Calculator does not support your injection method.":"Fehler. Der Hedia-Rechner unterst\xFCtzt Ihre Injektionsmethode nicht.","Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.":"Fehler. Der Hedia-Rechner unterst\xFCtzt nur Aktivit\xE4ten mit einer Dauer von maximal 60 Minuten.","Error. Please verify that your activity settings are set up correctly.":"Fehler. Bitte \xFCberpr\xFCfen Sie, ob Ihre Aktivit\xE4tseinstellungen korrekt eingestellt sind.","Error. Please verify that your activity target blood glucose value is correct.":"Fehler. Bitte \xFCberpr\xFCfen Sie, ob Ihr gew\xFCnschter Blutzuckerwert f\xFCr Aktivit\xE4ten korrekt ist.","Error. Please verify that your insulin sensitivity value is correct.":"Fehler. Bitte \xFCberpr\xFCfen Sie, ob Ihr Insulinintensit\xE4tswert korrekt ist.","Error. Please verify that your insulin to carb ratio value is correct.":"Fehler. Bitte \xFCberpr\xFCfen Sie, ob der Wert von Ihrem Insulin-Kohlenhydrat-Verh\xE4ltnis korrekt ist.","Error. Please verify that your target blood glucose value is correct.":"Fehler. Bitte \xFCberpr\xFCfen Sie, ob Ihr gew\xFCnschter Blutzuckerwert korrekt ist.","Error. Please verify your notifications settings.":"Fehler. Bitte \xFCberpr\xFCfen Sie Ihre Benachrichtigungseinstellungen.","Error. Your blood ketone settings are invalid.":"Error. Your blood ketone settings are invalid.","Food":"Lebensmittel","Forecast time:":"Forecast time:","Forecasted Glucose":"Forecasted Glucose","Hard":"Hart","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.":"Der Hedia-Rechner unterst\xFCtzt keine Aktivit\xE4ten, die vor \xFCber 4 Stunden beendet wurden.","Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.":"Der Hedia-Rechner unterst\xFCtzt keine Insulinempfehlungen, die mehr als 300 Gramm Kohlenhydrate enthalten.","Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.":function(a){return["Hedia unterst\xFCtzt nicht mehr als ",a("SAFETY_INSULIN_LIMIT")," Einheiten Insulin pro Berechnung."]},"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 unterst\xFCtzt nicht mehr als ",a("SAFETY_INSULIN_LIMIT")," Einheiten Insulin pro Berechnung, aber aufgrund der von Ihnen eingegebenen k\xF6rperlichen Aktivit\xE4t wurden sie bei dieser Berechnung um ",a("0"),"% auf ",a("1")," Einheiten weiter reduziert."]},"How are you feeling?":"Wie f\xFChlen Sie sich?","If it is possible, postpone your planned exercise.":"Wenn m\xF6glich, verschieben Sie Ihr geplantes Training.","Instead of taking insulin":"Statt der Einnahme von Insulin","Insulin recommendation":"Insulin empfehlung","Light":"Leicht","Moderate":"Moderat","More than 15 minutes has passed since this calculation was started.":"Seit Beginn dieser Berechnung sind mehr als 15 Minuten vergangen.","NO":"NEIN","No":"Nein","No, return to dashboard":"Nein, zur\xFCck zum Dashboard","OFF":"AUS","OK":"OK","Please go through the calculation steps with new measurements to ensure a safe recommendation.":"Bitte f\xFChren Sie die Berechnungsschritte mit neuen Messungen durch, um eine sichere Empfehlung zu erstellen.","Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?":function(a){return["Die Empfehlung von ",a("day")," um ",a("time")," wurden nicht in Ihr Tagebuch eingetragen.",a("0"),"Haben Sie sich an die Empfehlung gehalten?"]},"Recommended":"Empfohlen","Recommended amount of rapid-acting insulin for immidiate injection":"Recommended amount of rapid-acting insulin for immidiate injection","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":"Ich w\xFCnsche eine Erinnerung an eine erneute Messung in","Return to dashboard":"Zur\xFCck zum Dashboard","Save data before closing?":"\xC4nderungen vor dem Schlie\xDFen speichern?","Save to logbook":"Im Tagebuch speichern","Start new calculation":"Neue Berechnung starten","Total":"Gesamt","Units":"Einheiten","Untitled Activity":"Unbenannte Aktivit\xE4t","We recommend eating an additional:":"Wir empfehlen Ihnen, zus\xE4tzlich Folgendes zu essen:","Would you like to add this to your current calculation?":"M\xF6chten Sie dies zu Ihrer aktuellen Berechnung hinzuf\xFCgen?","Yes":"Ja","Yes, save to logbook":"Ja, im Tagebuch speichern","You have a high blood glucose level.":"Sie haben einen hohen Blutzucker.","You should take rapid-acting insulin and measure ketones.":"Sie sollten schnell wirkendes Insulin einnehmen und die Ketone messen.","You will be reminded to measure your blood glucose level in 15 min.":"Bitte messen Sie Ihren Blutzucker in 15 Minuten.","Your blood glucose level is very low.":"Ihr Blutzucker ist sehr niedrig.","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\xF6glich, Kohlenhydrate. Suchen Sie einen Arzt auf.","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["Ihre Empfehlung w\xE4re h\xF6her als ",a("0")," Einheiten Insulin gewesen, aber sie wurde aus Sicherheitsgr\xFCnden begrenzt.",a("1")," Hedia empfiehlt nie mehr als ",a("SAFETY_INSULIN_LIMIT")," Einheiten Insulin pro Berechnung, aber aufgrund der von Ihnen eingegebenen k\xF6rperlichen Aktivit\xE4t wurden sie um ",a("2"),"% auf ",a("3")," weiter reduziert."]},"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["Ihre Empfehlung w\xE4re h\xF6her als ",a("SAFETY_INSULIN_LIMIT")," Einheiten Insulin gewesen, aber sie wurde aus Sicherheitsgr\xFCnden begrenzt. Hedia empfiehlt nie mehr als ",a("SAFETY_INSULIN_LIMIT")," Einheiten Insulin pro Berechnung."]},"Your saved data will be used for future calculations.":"Ihre gespeicherten Daten werden f\xFCr zuk\xFCnftige Berechnungen verwendet.","grams":"Gramm","grams of carbohydrates":"Gramm Kohlenhydrate","hours":"Stunden","min":"Minuten","units":"Einheiten"}};
|