@hedia/recommendation-screen 2.2.0-alpha.18 → 2.2.0-alpha.2

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 (39) hide show
  1. package/dist/src/RecommendationScreen.d.ts +4 -11
  2. package/dist/src/RecommendationScreen.js +3 -3
  3. package/dist/src/components/ForecastInfoBar.d.ts +17 -12
  4. package/dist/src/components/ForecastInfoBar.js +38 -47
  5. package/dist/src/components/Header.d.ts +2 -2
  6. package/dist/src/components/RecommendedInsulin.d.ts +0 -3
  7. package/dist/src/components/RecommendedInsulin.js +4 -6
  8. package/dist/src/locale/da/messages.js +1 -1
  9. package/dist/src/locale/da/messages.po +7 -19
  10. package/dist/src/locale/de/messages.js +1 -1
  11. package/dist/src/locale/de/messages.po +7 -19
  12. package/dist/src/locale/en/messages.js +1 -1
  13. package/dist/src/locale/en/messages.po +7 -19
  14. package/dist/src/locale/es/messages.js +1 -1
  15. package/dist/src/locale/es/messages.po +7 -19
  16. package/dist/src/locale/fr/messages.js +1 -1
  17. package/dist/src/locale/fr/messages.po +7 -19
  18. package/dist/src/locale/it/messages.js +1 -1
  19. package/dist/src/locale/it/messages.po +7 -19
  20. package/package.json +7 -11
  21. /package/dist/src/assets/{activity → assets/activity}/Cyclist.png +0 -0
  22. /package/dist/src/assets/{activity → assets/activity}/Other.png +0 -0
  23. /package/dist/src/assets/{activity → assets/activity}/Runner.png +0 -0
  24. /package/dist/src/assets/{activity → assets/activity}/Swimmer.png +0 -0
  25. /package/dist/src/assets/{activity → assets/activity}/Walk.png +0 -0
  26. /package/dist/src/assets/{fonts → assets/fonts}/Poppins-Bold.ttf +0 -0
  27. /package/dist/src/assets/{fonts → assets/fonts}/Poppins-SemiBold.ttf +0 -0
  28. /package/dist/src/assets/{icons → assets/icons}/Edit.tsx +0 -0
  29. /package/dist/src/assets/{icons → assets/icons}/X.tsx +0 -0
  30. /package/dist/src/assets/{mood → assets/mood}/happy.png +0 -0
  31. /package/dist/src/assets/{mood → assets/mood}/happy_active.png +0 -0
  32. /package/dist/src/assets/{mood → assets/mood}/neutral.png +0 -0
  33. /package/dist/src/assets/{mood → assets/mood}/neutral_active.png +0 -0
  34. /package/dist/src/assets/{mood → assets/mood}/sad.png +0 -0
  35. /package/dist/src/assets/{mood → assets/mood}/sad_active.png +0 -0
  36. /package/dist/src/assets/{mood → assets/mood}/semi_happy.png +0 -0
  37. /package/dist/src/assets/{mood → assets/mood}/semi_happy_active.png +0 -0
  38. /package/dist/src/assets/{mood → assets/mood}/semi_sad.png +0 -0
  39. /package/dist/src/assets/{mood → assets/mood}/semi_sad_active.png +0 -0
@@ -10,15 +10,6 @@ export interface IResult {
10
10
  /** The actual amount (of insulin in units or carbohydrates in grams) */
11
11
  entered: number | null;
12
12
  }
13
- /** Represents forecast data */
14
- export interface IForecast {
15
- /** The forecasted glucose value to display. */
16
- forecastedGlucose: number | null;
17
- /** Forecasted time value to display. */
18
- forecastTime: string | null;
19
- /** Latest CGM value to display. */
20
- latestCGMReading: number | null;
21
- }
22
13
  export interface IRecommendationProps {
23
14
  /** The blood glucose measurement unit that the user prefers. */
24
15
  bloodGlucoseUnit: BloodGlucoseUnit;
@@ -38,8 +29,10 @@ export interface IRecommendationProps {
38
29
  latestLogbookFrom6Hours: Logbook.Types.ILogbookEntry | null;
39
30
  /** The properties of the entered activity that are not used for making the calculation itself, but will be used on the recommendation screen. */
40
31
  activityDisplayProps: IActivityDisplayProps | null;
41
- /** Forecast data received from the app */
42
- forecast: IForecast | null;
32
+ /** The forecasted glucose value to display. */
33
+ forecastedGlucose: string | null;
34
+ /** Forecasted time value to display. */
35
+ forecastedTime: string;
43
36
  /**
44
37
  * Callback function taking a single boolean argument and returning nothing.
45
38
  * To be called when the user decides on a presented carbohydrate recommendation.
@@ -460,7 +460,7 @@ export default class RecommendationScreen extends React.Component {
460
460
  const carbRecommendation = carbRecommendationProp !== null ? Math.round(carbRecommendationProp) : null;
461
461
  const recommendedCarbs = enteredCarbs ?? carbRecommendation;
462
462
  const isModalOpen = showExitModal || showLimitationMessage || showTimeoutModal;
463
- const { activityDisplayProps, bloodGlucoseUnit, bloodKetoneUnit, calculatorParams, currentBKL, injectionMethod, language, onRecentInsulinYes, forecast, } = this.props;
463
+ const { activityDisplayProps, bloodGlucoseUnit, bloodKetoneUnit, calculatorParams, currentBKL, injectionMethod, language, onRecentInsulinYes, forecastedGlucose, forecastedTime, } = this.props;
464
464
  const { activity, currentBGL, carbohydrates: providedCarbs } = calculatorParams;
465
465
  const displayedBGL = currentBGL ? Utils.displayedBGLValue(currentBGL, bloodGlucoseUnit) : null;
466
466
  const displayedBKL = currentBKL !== null && bloodKetoneUnit ? Utils.displayedBKLValue(currentBKL, bloodKetoneUnit) : null;
@@ -474,7 +474,7 @@ export default class RecommendationScreen extends React.Component {
474
474
  }}>
475
475
  <Header exitCallback={this.onExit}/>
476
476
  <InfoBars label={i18n._(t `Active Insulin`)} value={activeInsulin ? `${activeInsulin.toFixed(1)}` : null} unit={i18n._(t `units`)} showNullAsDash={false} testID={{ unitID: ActiveInsulinUnitTestID, valueID: ActiveInsulinValueTestID }}/>
477
- {forecast ? (<ForecastInfoBar label={i18n._(t `Forecasted Glucose`)} forecast={forecast} unit={bloodGlucoseUnit} testID={{ unitID: FGUnitTestID, valueID: FGValueTestID }}/>) : (<InfoBars label={i18n._(t `Blood Glucose Level`)} value={displayedBGL} unit={bloodGlucoseUnit} showNullAsDash={true} testID={{ unitID: BGUnitTestID, valueID: BGValueTestID }}/>)}
477
+ {forecastedGlucose ? (<ForecastInfoBar label={i18n._(t `Forecasted Glucose`)} value={forecastedGlucose} unit={bloodGlucoseUnit} forecastedTime={forecastedTime} testID={{ unitID: FGUnitTestID, valueID: FGValueTestID }}/>) : (<InfoBars label={i18n._(t `Blood Glucose Level`)} value={displayedBGL} unit={bloodGlucoseUnit} showNullAsDash={true} testID={{ unitID: BGUnitTestID, valueID: BGValueTestID }}/>)}
478
478
  <InfoBars label={i18n._(t `Blood Ketone Level`)} value={displayedBKL} unit={bloodKetoneUnit} showNullAsDash={true} testID={{ unitID: BKUnitTestID, valueID: BKValueTestID }}/>
479
479
  <View style={containerStyles.calcContainer}>
480
480
  <View style={containerStyles.calcMargin}>
@@ -485,7 +485,7 @@ export default class RecommendationScreen extends React.Component {
485
485
  </View>
486
486
  {activity && activityDisplayProps && (<Activity activity={activity} activityType={activityDisplayProps.activityType} activityTitle={activityDisplayProps.activityTitle} activityReduction={activityReduction}/>)}
487
487
  <Remeasure onSliderChange={this.updateRemeasureTime} remeasureTime={remeasureTime}/>
488
- {!isRecommendationDisplayed ? (<RecentInsulin onRecentInsulinYes={onRecentInsulinYes} onRecentInsulinNo={this.handleNoRecentInsulin}/>) : (<RecommendedInsulin injectionMethod={injectionMethod} insulinRecommendation={insulinRecommendation} enteredInsulin={enteredInsulin} activityReduction={activityReduction} updateRecommendedInsulin={this.updateInsulinRecommendation} forecast={forecast}/>)}
488
+ {!isRecommendationDisplayed ? (<RecentInsulin onRecentInsulinYes={onRecentInsulinYes} onRecentInsulinNo={this.handleNoRecentInsulin}/>) : (<RecommendedInsulin injectionMethod={injectionMethod} insulinRecommendation={insulinRecommendation} enteredInsulin={enteredInsulin} activityReduction={activityReduction} updateRecommendedInsulin={this.updateInsulinRecommendation}/>)}
489
489
  <Emotion moodSelected={this.handleMoodSelected} currentMood={selectedMood}/>
490
490
  <SaveButton visible={isRecommendationDisplayed} transfer={this.handleTransfer}/>
491
491
  <RecommendationModal isVisible={recommendationModal} suggestedCarbohydrates={carbRecommendationProp} attentionMessage={this.getBGLevelAttentionMessage()} limitationMessage={this.getLimitationAttentionMessage()} onClickOkButton={this.hideAttentionModal} onAcceptCarbohydrates={this.acceptCarbRecommendation} onDeclineCarbohydrates={this.declineCarbRecommendation}/>
@@ -1,14 +1,15 @@
1
- /// <reference types="react" />
2
1
  import { BloodGlucoseUnit } from "@hedia/types";
3
- import { IForecast } from "../RecommendationScreen";
2
+ import React from "react";
4
3
  import { Testing } from "../types/enum";
5
4
  export interface IProps {
6
5
  /** The display label that describes the value to the user. */
7
6
  label: string;
8
7
  /** The value to display. */
9
- forecast: IForecast;
8
+ value: string;
10
9
  /** Unit label to print after the value. */
11
10
  unit: BloodGlucoseUnit;
11
+ /** Forecasted time value to display. */
12
+ forecastedTime: string;
12
13
  /** optional object that contains as properties a valueID and a unitID */
13
14
  testID?: {
14
15
  valueID: Testing.Id.InfoBarTestIds.Value;
@@ -16,7 +17,18 @@ export interface IProps {
16
17
  };
17
18
  }
18
19
  /** A standard panel to display some data that the user entered. */
19
- declare const ForecastInfoBar: (props: IProps) => JSX.Element;
20
+ export default class ForecastInfoBar extends React.Component<IProps> {
21
+ /**
22
+ * Determine the unit string to be displayed in the infobar.
23
+ *
24
+ * @returns The string to display as the unit in the infobar
25
+ */
26
+ displayUnit: () => string;
27
+ /**
28
+ * @returns JSX element to display a card with the entered value.
29
+ */
30
+ render(): JSX.Element;
31
+ }
20
32
  /** @internal */
21
33
  export declare const infoStyles: {
22
34
  container: {
@@ -82,7 +94,7 @@ export declare const infoStyles: {
82
94
  forecastSubtitle: {
83
95
  flexDirection: "row";
84
96
  alignItems: "center";
85
- paddingTop: number;
97
+ paddingVertical: number;
86
98
  };
87
99
  forecastText: {
88
100
  color: string;
@@ -94,11 +106,4 @@ export declare const infoStyles: {
94
106
  lineHeight: number;
95
107
  marginLeft: number;
96
108
  };
97
- currentCGM: {
98
- fontSize: number;
99
- lineHeight: number;
100
- color: string;
101
- marginBottom: number;
102
- };
103
109
  };
104
- export default ForecastInfoBar;
@@ -8,57 +8,55 @@ import { Utils } from "../utils/Utils";
8
8
  import TextBold from "./text/TextBold";
9
9
  import TextRegular from "./text/TextRegular";
10
10
  /** A standard panel to display some data that the user entered. */
11
- const ForecastInfoBar = (props) => {
12
- const { testID, label, unit, forecast } = props;
11
+ export default class ForecastInfoBar extends React.Component {
13
12
  /**
14
13
  * Determine the unit string to be displayed in the infobar.
15
14
  *
16
15
  * @returns The string to display as the unit in the infobar
17
16
  */
18
- // tslint:disable-next-line: no-shadowed-variable
19
- const displayUnit = (unit) => Utils.formatUnit(unit);
20
- const { border, container, forecastDot, forecastSubtitle, forecastText, forecastTime, gradient, labelContainer, row, unitContainer, units, value, valueContainer, valueUnitContainer, } = infoStyles;
17
+ displayUnit = () => {
18
+ const { unit } = this.props;
19
+ return Utils.formatUnit(unit);
20
+ };
21
21
  /**
22
22
  * @returns JSX element to display a card with the entered value.
23
23
  */
24
- return (<View style={container}>
25
- <LinearGradient style={gradient} colors={[`#8B38F5`, `#D593E5`]} useAngle={true} angle={170}>
26
- <View style={border}>
27
- <View style={row}>
28
- <View style={labelContainer}>
29
- <TextBold style={infoStyles.label}>{label}</TextBold>
30
- </View>
31
- <View style={valueUnitContainer}>
32
- <View style={valueContainer}>
33
- <TextBold style={value} testID={testID?.valueID}>
34
- {forecast.forecastedGlucose}
35
- </TextBold>
24
+ render() {
25
+ const { forecastedTime, testID, label } = this.props;
26
+ const { border, container, forecastDot, forecastSubtitle, forecastText, forecastTime, gradient, labelContainer, row, unitContainer, units, value, valueContainer, valueUnitContainer, } = infoStyles;
27
+ return (<View style={container}>
28
+ <LinearGradient style={gradient} colors={[`#8B38F5`, `#D593E5`]} useAngle={true} angle={170}>
29
+ <View style={border}>
30
+ <View style={row}>
31
+ <View style={labelContainer}>
32
+ <TextBold style={infoStyles.label}>{label}</TextBold>
36
33
  </View>
37
- <View style={unitContainer}>
38
- <TextRegular style={units} testID={testID?.unitID}>
39
- {displayUnit(unit)}
40
- </TextRegular>
34
+ <View style={valueUnitContainer}>
35
+ <View style={valueContainer}>
36
+ <TextBold style={value} testID={testID?.valueID}>
37
+ {this.props.value}
38
+ </TextBold>
39
+ </View>
40
+ <View style={unitContainer}>
41
+ <TextRegular style={units} testID={testID?.unitID}>
42
+ {this.displayUnit()}
43
+ </TextRegular>
44
+ </View>
41
45
  </View>
42
46
  </View>
43
- </View>
44
47
 
45
- <View style={row}>
46
- <View style={forecastSubtitle}>
47
- <LinearGradient colors={[`#8B38F5`, `#D593E5`]} useAngle={true} angle={135} style={forecastDot}/>
48
- <TextRegular style={forecastText}>{i18n._(t `Forecast time:`)}</TextRegular>
49
- <TextRegular style={forecastTime}>{forecast.forecastTime}</TextRegular>
48
+ <View style={row}>
49
+ <View style={forecastSubtitle}>
50
+ <LinearGradient colors={[`#8B38F5`, `#D593E5`]} useAngle={true} angle={135} style={forecastDot}/>
51
+ <TextRegular style={forecastText}>{i18n._(t `Forecasted time:`)}</TextRegular>
52
+ <TextRegular style={forecastTime}>{forecastedTime}</TextRegular>
53
+ </View>
50
54
  </View>
51
55
  </View>
52
-
53
- <View style={row}>
54
- <TextRegular style={infoStyles.currentCGM}>
55
- {i18n._(t `Current glucose: ${forecast.latestCGMReading} ${displayUnit(unit)}`)}
56
- </TextRegular>
57
- </View>
58
- </View>
59
- </LinearGradient>
60
- </View>);
61
- };
56
+ </LinearGradient>
57
+ </View>);
58
+ }
59
+ }
62
60
  const { width } = Dimensions.get(`screen`);
63
61
  /** @internal */
64
62
  export const infoStyles = StyleSheet.create({
@@ -70,10 +68,10 @@ export const infoStyles = StyleSheet.create({
70
68
  },
71
69
  gradient: {
72
70
  padding: 2,
73
- borderRadius: 5,
71
+ borderRadius: 11,
74
72
  },
75
73
  border: {
76
- borderRadius: 5,
74
+ borderRadius: 10,
77
75
  backgroundColor: colors.darkBlue,
78
76
  paddingTop: `2%`,
79
77
  paddingBottom: 0,
@@ -125,7 +123,7 @@ export const infoStyles = StyleSheet.create({
125
123
  forecastSubtitle: {
126
124
  flexDirection: `row`,
127
125
  alignItems: `center`,
128
- paddingTop: 5,
126
+ paddingVertical: 10,
129
127
  },
130
128
  forecastText: {
131
129
  color: colors.lightBlue,
@@ -137,11 +135,4 @@ export const infoStyles = StyleSheet.create({
137
135
  lineHeight: width / 28,
138
136
  marginLeft: width / 100,
139
137
  },
140
- currentCGM: {
141
- fontSize: 13,
142
- lineHeight: 34,
143
- color: colors.lightBlue,
144
- marginBottom: 5,
145
- },
146
138
  });
147
- export default ForecastInfoBar;
@@ -1,8 +1,8 @@
1
- /// <reference types="react" />
1
+ import React from "react";
2
2
  export interface IProps {
3
3
  /** A callback that doesn’t take any arguments and doesn’t return a value to be called when the cancel-button is pressed. */
4
4
  exitCallback(): void;
5
5
  }
6
6
  /** Component to display a header text along with a cancel-button that triggers a callback function. */
7
- declare const Header: ({ exitCallback }: IProps) => JSX.Element;
7
+ declare const Header: React.FC<IProps>;
8
8
  export default Header;
@@ -1,6 +1,5 @@
1
1
  import { UserSettings } from "@hedia/types";
2
2
  import React from "react";
3
- import { IForecast } from "../RecommendationScreen";
4
3
  export interface IProps {
5
4
  /** The amount of insulin in units to display to the user as a recommendation. */
6
5
  insulinRecommendation: number;
@@ -14,8 +13,6 @@ export interface IProps {
14
13
  activityReduction: number | null;
15
14
  /** Used to determine how the insulin amount should be rounded. */
16
15
  injectionMethod: UserSettings.Enums.InjectionMethod;
17
- /** Used to show different text depending on different insulin ranges. */
18
- forecast: IForecast | null;
19
16
  /**
20
17
  * Callback function taking a number as argument and giving no return value.
21
18
  * To be called with the new value every time the content of the insulin input field gets changed.
@@ -102,16 +102,14 @@ export default class RecommendedInsulin extends React.Component {
102
102
  * and using an InvisibleNumberInput component to enable input when the insulin amount is tapped.
103
103
  */
104
104
  render = () => {
105
- const { forecast, insulinRecommendation } = this.props;
106
- const shownInsulin = this.state.partialInput ?? insulinRecommendation ?? `0`;
105
+ const shownInsulin = this.state.partialInput ?? this.props.insulinRecommendation ?? `0`;
107
106
  const { container, editText, title, recommendedContainer, valueContainer, value, units, editButton } = styles;
108
- const titleText = forecast
109
- ? i18n._(t `Recommended amount of rapid-acting insulin for immidiate injection based on forecasted glucose`)
110
- : i18n._(t `Recommended amount of rapid-acting insulin for immidiate injection`);
111
107
  return (<>
112
108
  <TouchableOpacity testID={RecommendedInsulinTestIds.EditRecommendedInsulin} onPress={this.handleOnPress}>
113
109
  <LinearGradient style={container} colors={[colors.purple, colors.blue]} useAngle={true} angle={315}>
114
- <TextBold style={title}>{titleText}</TextBold>
110
+ <TextBold style={title}>
111
+ {i18n._(t `Recommended amount of rapid-acting insulin for immidiate injection based on forecasted glucose`)}
112
+ </TextBold>
115
113
  <View style={recommendedContainer}>
116
114
  <View style={valueContainer}>
117
115
  <TextBold style={value} testID={RecommendedInsulinTestIds.ShownInsulinText}>
@@ -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.","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"}};
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.","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","Forecasted Glucose":"Forecasted Glucose","Forecasted time:":"Forecasted time:","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 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"}};
@@ -56,15 +56,7 @@ 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/__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
59
+ #: src/components/RecommendedInsulin.tsx:108
68
60
  msgid "Edit"
69
61
  msgstr ""
70
62
 
@@ -156,14 +148,14 @@ msgstr ""
156
148
  msgid "Food"
157
149
  msgstr "Mad"
158
150
 
159
- #: src/components/ForecastInfoBar.tsx:54
160
- msgid "Forecast time:"
161
- msgstr ""
162
-
163
151
  #: src/RecommendationScreen.tsx:454
164
152
  msgid "Forecasted Glucose"
165
153
  msgstr ""
166
154
 
155
+ #: src/components/ForecastInfoBar.tsx:54
156
+ msgid "Forecasted time:"
157
+ msgstr ""
158
+
167
159
  #: src/utils/Translations.ts:13
168
160
  msgid "Hard"
169
161
  msgstr "Hård"
@@ -252,11 +244,7 @@ msgstr "Hedia's anbefaling fra {day} kl. {time} blev ikke overført til din logb
252
244
  msgid "Recommended"
253
245
  msgstr "Anbefalet"
254
246
 
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
247
+ #: src/components/RecommendedInsulin.tsx:97
260
248
  msgid "Recommended amount of rapid-acting insulin for immidiate injection based on forecasted glucose"
261
249
  msgstr ""
262
250
 
@@ -285,7 +273,7 @@ msgstr "Start ny beregning"
285
273
  msgid "Total"
286
274
  msgstr "Sum"
287
275
 
288
- #: src/components/RecommendedInsulin.tsx:105
276
+ #: src/components/RecommendedInsulin.tsx:104
289
277
  msgid "Units"
290
278
  msgstr "Enheder"
291
279
 
@@ -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.","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"}};
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.","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","Forecasted Glucose":"Forecasted Glucose","Forecasted time:":"Forecasted time:","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 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"}};
@@ -56,15 +56,7 @@ msgstr "Berechnung schließen"
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 "Betätigen Sie sich erst dann körperlich, wenn Ihr Blutzucker vor der körperlichen Aktivität innerhalb des empfohlenen Wertebereichs liegt."
58
58
 
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
59
+ #: src/components/RecommendedInsulin.tsx:108
68
60
  msgid "Edit"
69
61
  msgstr ""
70
62
 
@@ -156,14 +148,14 @@ msgstr ""
156
148
  msgid "Food"
157
149
  msgstr "Lebensmittel"
158
150
 
159
- #: src/components/ForecastInfoBar.tsx:54
160
- msgid "Forecast time:"
161
- msgstr ""
162
-
163
151
  #: src/RecommendationScreen.tsx:454
164
152
  msgid "Forecasted Glucose"
165
153
  msgstr ""
166
154
 
155
+ #: src/components/ForecastInfoBar.tsx:54
156
+ msgid "Forecasted time:"
157
+ msgstr ""
158
+
167
159
  #: src/utils/Translations.ts:13
168
160
  msgid "Hard"
169
161
  msgstr "Hart"
@@ -252,11 +244,7 @@ msgstr "Die Empfehlung von {day} um {time} wurden nicht in Ihr Tagebuch eingetra
252
244
  msgid "Recommended"
253
245
  msgstr "Empfohlen"
254
246
 
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
247
+ #: src/components/RecommendedInsulin.tsx:97
260
248
  msgid "Recommended amount of rapid-acting insulin for immidiate injection based on forecasted glucose"
261
249
  msgstr ""
262
250
 
@@ -285,7 +273,7 @@ msgstr "Neue Berechnung starten"
285
273
  msgid "Total"
286
274
  msgstr "Gesamt"
287
275
 
288
- #: src/components/RecommendedInsulin.tsx:105
276
+ #: src/components/RecommendedInsulin.tsx:104
289
277
  msgid "Units"
290
278
  msgstr "Einheiten"
291
279
 
@@ -1 +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.","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":"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","Forecast time:":"Forecast time:","Forecasted Glucose":"Forecasted Glucose","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":"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":"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"}};
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"}};
@@ -56,15 +56,7 @@ msgstr "Close calculation"
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 "Consider not to initiate physical activity before your blood glucose is within the recommended ranges prior to physical activity."
58
58
 
59
- #: src/__tests__/components/ForecastInfoBar.test.tsx:24
60
- msgid "Current glucose: {0} mmol/L"
61
- msgstr "Current glucose: {0} mmol/L"
62
-
63
- #: src/components/ForecastInfoBar.tsx:61
64
- msgid "Current glucose: {latestCGMReading} {0}"
65
- msgstr "Current glucose: {latestCGMReading} {0}"
66
-
67
- #: src/components/RecommendedInsulin.tsx:109
59
+ #: src/components/RecommendedInsulin.tsx:108
68
60
  msgid "Edit"
69
61
  msgstr "Edit"
70
62
 
@@ -156,14 +148,14 @@ msgstr "Error. Your blood ketone settings are invalid."
156
148
  msgid "Food"
157
149
  msgstr "Food"
158
150
 
159
- #: src/components/ForecastInfoBar.tsx:54
160
- msgid "Forecast time:"
161
- msgstr "Forecast time:"
162
-
163
151
  #: src/RecommendationScreen.tsx:454
164
152
  msgid "Forecasted Glucose"
165
153
  msgstr "Forecasted Glucose"
166
154
 
155
+ #: src/components/ForecastInfoBar.tsx:54
156
+ msgid "Forecasted time:"
157
+ msgstr "Forecasted time:"
158
+
167
159
  #: src/utils/Translations.ts:13
168
160
  msgid "Hard"
169
161
  msgstr "Hard"
@@ -252,11 +244,7 @@ msgstr "Recommendation from {day} at {time} was not transfered to your logbook.{
252
244
  msgid "Recommended"
253
245
  msgstr "Recommended"
254
246
 
255
- #: src/components/RecommendedInsulin.tsx:94
256
- msgid "Recommended amount of rapid-acting insulin for immidiate injection"
257
- msgstr "Recommended amount of rapid-acting insulin for immidiate injection"
258
-
259
- #: src/components/RecommendedInsulin.tsx:95
247
+ #: src/components/RecommendedInsulin.tsx:97
260
248
  msgid "Recommended amount of rapid-acting insulin for immidiate injection based on forecasted glucose"
261
249
  msgstr "Recommended amount of rapid-acting insulin for immidiate injection based on forecasted glucose"
262
250
 
@@ -285,7 +273,7 @@ msgstr "Start new calculation"
285
273
  msgid "Total"
286
274
  msgstr "Total"
287
275
 
288
- #: src/components/RecommendedInsulin.tsx:105
276
+ #: src/components/RecommendedInsulin.tsx:104
289
277
  msgid "Units"
290
278
  msgstr "Units"
291
279
 
@@ -1 +1 @@
1
- /* eslint-disable */module.exports={languageData:{"plurals":function(n,ord){if(ord)return"other";return n==1?"one":"other"}},messages:{"Active Insulin":"Insulina activa","Activity":"Actividad","Additional":"Adicional","Attention":"Atenci\xF3n","Based on the selected activity your insulin recommendation is reduced by:":"Seg\xFAn la actividad seleccionada, su recomendaci\xF3n de insulina se reduce en un:","Blood Glucose Level":"Glucosa en sangre","Blood Ketone Level":"Nivel de cetonas en sangre","Carbohydrates":"Hidratos de carbono","Close calculation":"Cerrar calculaci\xF3n","Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.":"Contemple no iniciar ninguna actividad f\xEDsica antes de que su nivel de glucosa en sangre se encuentre dentro del rango recomendado antes de una actividad f\xEDsica.","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":"Introducido","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. La calculadora de Hedia no admite una dosis de insulina superior a ",a("SAFETY_INSULIN_LIMIT")," unidades."]},"Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours":"Error. La calculadora de Hedia no admite recomendaciones de insulina con bolos anteriores a 4 horas.","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. La calculadora de Hedia no admite su valor de intensidad de actividad.","Error. Hedia Calculator does not support your activity type value":"Error. La calculadora de Hedia no admite su valor de tipo de actividad.","Error. Hedia Calculator does not support your current blood glucose level.":"Error. La calculadora de Hedia no admite tu glucosa en sangre actual.","Error. Hedia Calculator does not support your current blood glucose unit.":"Error. La calculadora de Hedia no admite su unidad de glucosa en sangre actual.","Error. Hedia Calculator does not support your current blood ketone level.":"Error. La calculadora de Hedia no admite su nivel de cetonas en sangre actual.","Error. Hedia Calculator does not support your current blood ketone unit.":"Error. La calculadora de Hedia no admite su unidad de cetonas en sangre actual.","Error. Hedia Calculator does not support your current language.":"Error. La calculadora de Hedia no admite su idioma actual.","Error. Hedia Calculator does not support your injection method.":"Error. La calculadora de Hedia no admite su m\xE9todo de inyecci\xF3n.","Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.":"Error. La calculadora de Hedia solo admite actividades con una duraci\xF3n m\xE1xima de 60 minutos.","Error. Please verify that your activity settings are set up correctly.":"Error. Compruebe si la configuraci\xF3n de su actividad es correcta.","Error. Please verify that your activity target blood glucose value is correct.":"Error. Compruebe si el valor deseado de glucosa en sangre de su actividad es correcto.","Error. Please verify that your insulin sensitivity value is correct.":"Error. Compruebe si el valor de su sensibilidad a la insulina es correcto.","Error. Please verify that your insulin to carb ratio value is correct.":"Error. Compruebe si el valor de su proporci\xF3n insulina-carbohidratos es correcto.","Error. Please verify that your target blood glucose value is correct.":"Error. Compruebe si el valor deseado de glucosa en sangre es correcto.","Error. Please verify your notifications settings.":"Error. Compruebe la configuraci\xF3n de las notificaciones.","Error. Your blood ketone settings are invalid.":"Error. Your blood ketone settings are invalid.","Food":"Comida","Forecast time:":"Forecast time:","Forecasted Glucose":"Forecasted Glucose","Hard":"Intensa","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.":"La calculadora de Hedia no admite actividades que finalizaron hace m\xE1s de 4 horas.","Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.":"La calculadora de Hedia no admite recomendaciones de insulina con m\xE1s de 300 gramos de hidratos de carbono presentes.","Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.":function(a){return["Hedia no admite m\xE1s de ",a("SAFETY_INSULIN_LIMIT")," unidades de insulina por calculaci\xF3n."]},"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 no admite m\xE1s de ",a("SAFETY_INSULIN_LIMIT")," unidades de insulina por calculaci\xF3n, pero debido a la actividad f\xEDsica que ha introducido, se ha reducido adicionalmente en un ",a("0"),"% a ",a("1")," unidades para esta calculaci\xF3n."]},"How are you feeling?":"\xBFQu\xE9 tal te encuentras?","If it is possible, postpone your planned exercise.":"Si es posible, posponga el ejercicio que ten\xEDa previsto hacer.","Instead of taking insulin":"En lugar de tomar insulina","Insulin recommendation":"Recomendaci\xF3n de insulina","Light":"Ligera","Moderate":"Moderada","More than 15 minutes has passed since this calculation was started.":"Han pasado m\xE1s de 15 minutos desde que comenz\xF3 la calculaci\xF3n.","NO":"NO","No":"No","No, return to dashboard":"No, volver al panel","OFF":"APAGADO","OK":"ACEPTAR","Please go through the calculation steps with new measurements to ensure a safe recommendation.":"Por favor, repita los pasos de la calculaci\xF3n con nuevas mediciones para garantizar una recomendaci\xF3n segura.","Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?":function(a){return["La recomendaci\xF3n del ",a("day")," a las ",a("time")," no se ha transferido a su diario.",a("0"),"\xBFUtiliz\xF3 la recomendaci\xF3n?"]},"Recommended":"Recomendado","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":"Recordar hacer una nueva medici\xF3n en","Return to dashboard":"Volver al panel","Save data before closing?":"\xBFGuardar los datos antes de cerrar?","Save to logbook":"Guardar en el diario","Start new calculation":"Iniciar nueva calculaci\xF3n","Total":"Total","Units":"Unidades","Untitled Activity":"Actividad sin nombre","We recommend eating an additional:":"Recomendamos comer adicionalmente:","Would you like to add this to your current calculation?":"\xBFQuiere a\xF1adirlo a su calculaci\xF3n actual?","Yes":"S\xED","Yes, save to logbook":"S\xED, guardar en el diario","You have a high blood glucose level.":"Tiene una glucosa en sangre alta.","You should take rapid-acting insulin and measure ketones.":"Debe tomar insulina de acci\xF3n r\xE1pida y realizar una medici\xF3n de cetonas.","You will be reminded to measure your blood glucose level in 15 min.":"Se le recordar\xE1 que mida su glucosa en sangre en 15 minutos.","Your blood glucose level is very low.":"Su glucosa en sangre es muy baja.","Your blood glucose level is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention.":"Su glucosa en sangre es muy baja. Tome glucag\xF3n o ingiera carbohidratos si es posible. Busque atenci\xF3n m\xE9dica.","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["Su recomendaci\xF3n habr\xEDa sido superior a ",a("0")," unidades de insulina, pero se ha limitado por razones de seguridad.",a("1")," Hedia nunca recomienda m\xE1s de ",a("SAFETY_INSULIN_LIMIT")," unidades de insulina por calculaci\xF3n, pero debido a la actividad f\xEDsica que ha introducido, se ha reducido adicionalmente en un ",a("2"),"% a ",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["Su recomendaci\xF3n habr\xEDa sido superior a ",a("SAFETY_INSULIN_LIMIT")," unidades de insulina, pero se ha limitado por razones de seguridad. Hedia nunca recomienda m\xE1s de ",a("SAFETY_INSULIN_LIMIT")," unidades de insulina por calculaci\xF3n."]},"Your saved data will be used for future calculations.":"Los datos guardados se utilizar\xE1n para futuras calculaciones.","grams":"gramos","grams of carbohydrates":"gramos de hidratos de carbono","hours":"horas","min":"min","units":"unidades"}};
1
+ /* eslint-disable */module.exports={languageData:{"plurals":function(n,ord){if(ord)return"other";return n==1?"one":"other"}},messages:{"Active Insulin":"Insulina activa","Activity":"Actividad","Additional":"Adicional","Attention":"Atenci\xF3n","Based on the selected activity your insulin recommendation is reduced by:":"Seg\xFAn la actividad seleccionada, su recomendaci\xF3n de insulina se reduce en un:","Blood Glucose Level":"Glucosa en sangre","Blood Ketone Level":"Nivel de cetonas en sangre","Carbohydrates":"Hidratos de carbono","Close calculation":"Cerrar calculaci\xF3n","Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.":"Contemple no iniciar ninguna actividad f\xEDsica antes de que su nivel de glucosa en sangre se encuentre dentro del rango recomendado antes de una actividad f\xEDsica.","Edit":"Edit","Entered":"Introducido","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. La calculadora de Hedia no admite una dosis de insulina superior a ",a("SAFETY_INSULIN_LIMIT")," unidades."]},"Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours":"Error. La calculadora de Hedia no admite recomendaciones de insulina con bolos anteriores a 4 horas.","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. La calculadora de Hedia no admite su valor de intensidad de actividad.","Error. Hedia Calculator does not support your activity type value":"Error. La calculadora de Hedia no admite su valor de tipo de actividad.","Error. Hedia Calculator does not support your current blood glucose level.":"Error. La calculadora de Hedia no admite tu glucosa en sangre actual.","Error. Hedia Calculator does not support your current blood glucose unit.":"Error. La calculadora de Hedia no admite su unidad de glucosa en sangre actual.","Error. Hedia Calculator does not support your current blood ketone level.":"Error. La calculadora de Hedia no admite su nivel de cetonas en sangre actual.","Error. Hedia Calculator does not support your current blood ketone unit.":"Error. La calculadora de Hedia no admite su unidad de cetonas en sangre actual.","Error. Hedia Calculator does not support your current language.":"Error. La calculadora de Hedia no admite su idioma actual.","Error. Hedia Calculator does not support your injection method.":"Error. La calculadora de Hedia no admite su m\xE9todo de inyecci\xF3n.","Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.":"Error. La calculadora de Hedia solo admite actividades con una duraci\xF3n m\xE1xima de 60 minutos.","Error. Please verify that your activity settings are set up correctly.":"Error. Compruebe si la configuraci\xF3n de su actividad es correcta.","Error. Please verify that your activity target blood glucose value is correct.":"Error. Compruebe si el valor deseado de glucosa en sangre de su actividad es correcto.","Error. Please verify that your insulin sensitivity value is correct.":"Error. Compruebe si el valor de su sensibilidad a la insulina es correcto.","Error. Please verify that your insulin to carb ratio value is correct.":"Error. Compruebe si el valor de su proporci\xF3n insulina-carbohidratos es correcto.","Error. Please verify that your target blood glucose value is correct.":"Error. Compruebe si el valor deseado de glucosa en sangre es correcto.","Error. Please verify your notifications settings.":"Error. Compruebe la configuraci\xF3n de las notificaciones.","Error. Your blood ketone settings are invalid.":"Error. Your blood ketone settings are invalid.","Food":"Comida","Forecasted Glucose":"Forecasted Glucose","Forecasted time:":"Forecasted time:","Hard":"Intensa","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.":"La calculadora de Hedia no admite actividades que finalizaron hace m\xE1s de 4 horas.","Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.":"La calculadora de Hedia no admite recomendaciones de insulina con m\xE1s de 300 gramos de hidratos de carbono presentes.","Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.":function(a){return["Hedia no admite m\xE1s de ",a("SAFETY_INSULIN_LIMIT")," unidades de insulina por calculaci\xF3n."]},"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 no admite m\xE1s de ",a("SAFETY_INSULIN_LIMIT")," unidades de insulina por calculaci\xF3n, pero debido a la actividad f\xEDsica que ha introducido, se ha reducido adicionalmente en un ",a("0"),"% a ",a("1")," unidades para esta calculaci\xF3n."]},"How are you feeling?":"\xBFQu\xE9 tal te encuentras?","If it is possible, postpone your planned exercise.":"Si es posible, posponga el ejercicio que ten\xEDa previsto hacer.","Instead of taking insulin":"En lugar de tomar insulina","Insulin recommendation":"Recomendaci\xF3n de insulina","Light":"Ligera","Moderate":"Moderada","More than 15 minutes has passed since this calculation was started.":"Han pasado m\xE1s de 15 minutos desde que comenz\xF3 la calculaci\xF3n.","NO":"NO","No":"No","No, return to dashboard":"No, volver al panel","OFF":"APAGADO","OK":"ACEPTAR","Please go through the calculation steps with new measurements to ensure a safe recommendation.":"Por favor, repita los pasos de la calculaci\xF3n con nuevas mediciones para garantizar una recomendaci\xF3n segura.","Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?":function(a){return["La recomendaci\xF3n del ",a("day")," a las ",a("time")," no se ha transferido a su diario.",a("0"),"\xBFUtiliz\xF3 la recomendaci\xF3n?"]},"Recommended":"Recomendado","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":"Recordar hacer una nueva medici\xF3n en","Return to dashboard":"Volver al panel","Save data before closing?":"\xBFGuardar los datos antes de cerrar?","Save to logbook":"Guardar en el diario","Start new calculation":"Iniciar nueva calculaci\xF3n","Total":"Total","Units":"Unidades","Untitled Activity":"Actividad sin nombre","We recommend eating an additional:":"Recomendamos comer adicionalmente:","Would you like to add this to your current calculation?":"\xBFQuiere a\xF1adirlo a su calculaci\xF3n actual?","Yes":"S\xED","Yes, save to logbook":"S\xED, guardar en el diario","You have a high blood glucose level.":"Tiene una glucosa en sangre alta.","You should take rapid-acting insulin and measure ketones.":"Debe tomar insulina de acci\xF3n r\xE1pida y realizar una medici\xF3n de cetonas.","You will be reminded to measure your blood glucose level in 15 min.":"Se le recordar\xE1 que mida su glucosa en sangre en 15 minutos.","Your blood glucose level is very low.":"Su glucosa en sangre es muy baja.","Your blood glucose level is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention.":"Su glucosa en sangre es muy baja. Tome glucag\xF3n o ingiera carbohidratos si es posible. Busque atenci\xF3n m\xE9dica.","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["Su recomendaci\xF3n habr\xEDa sido superior a ",a("0")," unidades de insulina, pero se ha limitado por razones de seguridad.",a("1")," Hedia nunca recomienda m\xE1s de ",a("SAFETY_INSULIN_LIMIT")," unidades de insulina por calculaci\xF3n, pero debido a la actividad f\xEDsica que ha introducido, se ha reducido adicionalmente en un ",a("2"),"% a ",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["Su recomendaci\xF3n habr\xEDa sido superior a ",a("SAFETY_INSULIN_LIMIT")," unidades de insulina, pero se ha limitado por razones de seguridad. Hedia nunca recomienda m\xE1s de ",a("SAFETY_INSULIN_LIMIT")," unidades de insulina por calculaci\xF3n."]},"Your saved data will be used for future calculations.":"Los datos guardados se utilizar\xE1n para futuras calculaciones.","grams":"gramos","grams of carbohydrates":"gramos de hidratos de carbono","hours":"horas","min":"min","units":"unidades"}};
@@ -56,15 +56,7 @@ msgstr "Cerrar calculación"
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 "Contemple no iniciar ninguna actividad física antes de que su nivel de glucosa en sangre se encuentre dentro del rango recomendado antes de una actividad física."
58
58
 
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
59
+ #: src/components/RecommendedInsulin.tsx:108
68
60
  msgid "Edit"
69
61
  msgstr ""
70
62
 
@@ -156,14 +148,14 @@ msgstr ""
156
148
  msgid "Food"
157
149
  msgstr "Comida"
158
150
 
159
- #: src/components/ForecastInfoBar.tsx:54
160
- msgid "Forecast time:"
161
- msgstr ""
162
-
163
151
  #: src/RecommendationScreen.tsx:454
164
152
  msgid "Forecasted Glucose"
165
153
  msgstr ""
166
154
 
155
+ #: src/components/ForecastInfoBar.tsx:54
156
+ msgid "Forecasted time:"
157
+ msgstr ""
158
+
167
159
  #: src/utils/Translations.ts:13
168
160
  msgid "Hard"
169
161
  msgstr "Intensa"
@@ -252,11 +244,7 @@ msgstr "La recomendación del {day} a las {time} no se ha transferido a su diari
252
244
  msgid "Recommended"
253
245
  msgstr "Recomendado"
254
246
 
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
247
+ #: src/components/RecommendedInsulin.tsx:97
260
248
  msgid "Recommended amount of rapid-acting insulin for immidiate injection based on forecasted glucose"
261
249
  msgstr ""
262
250
 
@@ -285,7 +273,7 @@ msgstr "Iniciar nueva calculación"
285
273
  msgid "Total"
286
274
  msgstr "Total"
287
275
 
288
- #: src/components/RecommendedInsulin.tsx:105
276
+ #: src/components/RecommendedInsulin.tsx:104
289
277
  msgid "Units"
290
278
  msgstr "Unidades"
291
279
 
@@ -1 +1 @@
1
- /* eslint-disable */module.exports={languageData:{"plurals":function(n,ord){if(ord)return n==1?"one":"other";return n>=0&&n<2?"one":"other"}},messages:{"Active Insulin":"Insuline active","Activity":"Activit\xE9","Additional":"Suppl\xE9mentaire","Attention":"Attention","Based on the selected activity your insulin recommendation is reduced by:":"Sur la base de l\u2019activit\xE9 s\xE9lectionn\xE9e, votre recommandation d\u2019insuline est r\xE9duite de :","Blood Glucose Level":"Glyc\xE9mie","Blood Ketone Level":"Taux de c\xE9ton\xE9mie","Carbohydrates":"Glucides","Close calculation":"Fermer le calcul","Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.":"Envisagez de ne pas commencer d\u2019activit\xE9 physique avant que votre taux de glyc\xE9mie ne soit dans la plage recommand\xE9e avant l\u2019activit\xE9 physique.","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":"Saisi","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["Erreur. La calculatrice Hedia ne prend pas en charge une dose d\u2019insuline sup\xE9rieure \xE0 ",a("SAFETY_INSULIN_LIMIT")," unit\xE9s"]},"Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours":"Erreur. La calculatrice Hedia ne prend pas en charge des recommandations d\u2019insuline avec des bolus plus anciens que 4 heures","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":"Erreur. La calculatrice Hedia ne prend pas en charge votre valeur d\u2019intensit\xE9 d\u2019activit\xE9","Error. Hedia Calculator does not support your activity type value":"Erreur. La calculatrice Hedia ne prend pas en charge votre valeur de type d\u2019activit\xE9","Error. Hedia Calculator does not support your current blood glucose level.":"Erreur. La calculatrice Hedia ne prend pas en charge votre glyc\xE9mie actuelle.","Error. Hedia Calculator does not support your current blood glucose unit.":"Erreur. La calculatrice Hedia ne prend pas en charge votre unit\xE9 de glyc\xE9mie actuelle.","Error. Hedia Calculator does not support your current blood ketone level.":"Erreur. La calculatrice Hedia ne prend pas en charge votre taux de c\xE9ton\xE9mie actuel.","Error. Hedia Calculator does not support your current blood ketone unit.":"Erreur. La calculatrice Hedia ne prend pas en charge votre unit\xE9 de c\xE9ton\xE9mie actuelle.","Error. Hedia Calculator does not support your current language.":"Erreur. La calculatrice Hedia ne prend pas en charge votre langue actuelle.","Error. Hedia Calculator does not support your injection method.":"Erreur. La calculatrice Hedia ne prend pas en charge votre m\xE9thode d\u2019injection.","Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.":"Erreur. La calculatrice Hedia ne prend en charge que des activit\xE9s d\u2019une dur\xE9e maximale de 60 minutes.","Error. Please verify that your activity settings are set up correctly.":"Erreur. Veuillez v\xE9rifier que vos param\xE8tres d\u2019activit\xE9 sont correctement param\xE9tr\xE9s.","Error. Please verify that your activity target blood glucose value is correct.":"Erreur. Veuillez v\xE9rifier que votre glyc\xE9mie d\xE9sir\xE9e pendant l\u2019activit\xE9 est correct.","Error. Please verify that your insulin sensitivity value is correct.":"Erreur. Veuillez v\xE9rifier que votre valeur de sensibilit\xE9 \xE0 l\u2019insuline est correcte.","Error. Please verify that your insulin to carb ratio value is correct.":"Erreur. Veuillez v\xE9rifier que votre valeur de rapport insuline/glucides est correcte.","Error. Please verify that your target blood glucose value is correct.":"Erreur. Veuillez v\xE9rifier que votre glyc\xE9mie cible est correct.","Error. Please verify your notifications settings.":"Erreur. Veuillez v\xE9rifier vos param\xE8tres de notification.","Error. Your blood ketone settings are invalid.":"Error. Your blood ketone settings are invalid.","Food":"Aliments","Forecast time:":"Forecast time:","Forecasted Glucose":"Forecasted Glucose","Hard":"Difficile","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.":"La calculatrice Hedia ne prend pas en charge des activit\xE9s termin\xE9es il y a plus de 4 heures.","Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.":"La calculatrice Hedia ne prend pas en charge des recommandations d\u2019insuline avec plus de 300 grammes de glucides pr\xE9sents.","Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.":function(a){return["Hedia ne prend pas en charge plus de ",a("SAFETY_INSULIN_LIMIT")," unit\xE9s d\u2019insuline par calcul."]},"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 ne prend pas en charge plus de ",a("SAFETY_INSULIN_LIMIT")," unit\xE9s d\u2019insuline par calcul, mais en raison de l\u2019activit\xE9 physique que vous avez saisie, ce chiffre a \xE9t\xE9 encore r\xE9duit de ",a("0")," % \xE0 ",a("1")," unit\xE9s pour ce calcul."]},"How are you feeling?":"Comment vous sentez-vous ?","If it is possible, postpone your planned exercise.":"Si possible, reportez votre activit\xE9 pr\xE9vu.","Instead of taking insulin":"Au lieu de prendre de l\u2019insuline","Insulin recommendation":"Recommandation d\u2019insuline","Light":"L\xE9g\xE8re","Moderate":"Mod\xE9r\xE9e","More than 15 minutes has passed since this calculation was started.":"Plus de 15 minutes se sont \xE9coul\xE9es depuis le d\xE9but de ce calcul.","NO":"NON","No":"Non","No, return to dashboard":"Non, retour au tableau de bord","OFF":"D\xC9SACTIV\xC9","OK":"OK","Please go through the calculation steps with new measurements to ensure a safe recommendation.":"Veuillez suivre les \xE9tapes de calcul avec de nouvelles mesures pour vous assurer d\u2019obtenir une recommandation s\xFBre.","Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?":function(a){return["La recommandation du ",a("day")," \xE0 ",a("time")," n\u2019a pas \xE9t\xE9 transf\xE9r\xE9e \xE0 votre journal de bord.",a("0"),"Avez-vous suivi la recommandation ?"]},"Recommended":"Recommand\xE9","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":"Rappelez-moi de mesurer ma glyc\xE9mie dans","Return to dashboard":"Retour au tableau de bord","Save data before closing?":"Enregistrer les donn\xE9es avant de fermer ?","Save to logbook":"Enregistrer dans le journal de bord","Start new calculation":"Commencer un nouveau calcul","Total":"Total","Units":"Unit\xE9s","Untitled Activity":"Activit\xE9 sans titre","We recommend eating an additional:":"Nous vous recommandons de manger en plus :","Would you like to add this to your current calculation?":"Souhaitez-vous ajouter cela \xE0 votre calcul actuel ?","Yes":"Oui","Yes, save to logbook":"Oui, enregistrer dans le journal de bord","You have a high blood glucose level.":"Vous avez une valeur de glyc\xE9mie \xE9lev\xE9e.","You should take rapid-acting insulin and measure ketones.":"Vous devriez prendre de l\u2019insuline \xE0 action rapide et mesurer les c\xE9tones.","You will be reminded to measure your blood glucose level in 15 min.":"Il vous sera rappel\xE9 de mesurer votre valeur de glyc\xE9mie dans 15 mn.","Your blood glucose level is very low.":"Votre valeur de glyc\xE9mie est tr\xE8s faible.","Your blood glucose level is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention.":"Votre valeur de glyc\xE9mie est tr\xE8s faible. Prenez du glucagon ou mangez des glucides si possible. Consultez un m\xE9decin.","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["Votre recommandation aurait \xE9t\xE9 sup\xE9rieure \xE0 ",a("0")," unit\xE9s d\u2019insuline, mais elle a \xE9t\xE9 limit\xE9e pour des raisons de s\xE9curit\xE9.",a("1")," Hedia ne recommande jamais plus de ",a("SAFETY_INSULIN_LIMIT")," unit\xE9s d\u2019insuline par calcul, mais en raison de l\u2019activit\xE9 physique saisie, elle a \xE9t\xE9 r\xE9duite de ",a("2"),"% \xE0 ",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["Votre recommandation aurait \xE9t\xE9 sup\xE9rieure \xE0 ",a("SAFETY_INSULIN_LIMIT")," unit\xE9s d\u2019insuline, mais elle a \xE9t\xE9 limit\xE9e pour des raisons de s\xE9curit\xE9. Hedia ne recommande jamais plus de ",a("SAFETY_INSULIN_LIMIT")," unit\xE9s d\u2019insuline par calcul."]},"Your saved data will be used for future calculations.":"Vos donn\xE9es enregistr\xE9es seront utilis\xE9es pour des calculs ult\xE9rieurs.","grams":"grammes","grams of carbohydrates":"grammes de glucides","hours":"heures","min":"min","units":"unit\xE9s"}};
1
+ /* eslint-disable */module.exports={languageData:{"plurals":function(n,ord){if(ord)return n==1?"one":"other";return n>=0&&n<2?"one":"other"}},messages:{"Active Insulin":"Insuline active","Activity":"Activit\xE9","Additional":"Suppl\xE9mentaire","Attention":"Attention","Based on the selected activity your insulin recommendation is reduced by:":"Sur la base de l\u2019activit\xE9 s\xE9lectionn\xE9e, votre recommandation d\u2019insuline est r\xE9duite de :","Blood Glucose Level":"Glyc\xE9mie","Blood Ketone Level":"Taux de c\xE9ton\xE9mie","Carbohydrates":"Glucides","Close calculation":"Fermer le calcul","Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.":"Envisagez de ne pas commencer d\u2019activit\xE9 physique avant que votre taux de glyc\xE9mie ne soit dans la plage recommand\xE9e avant l\u2019activit\xE9 physique.","Edit":"Edit","Entered":"Saisi","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["Erreur. La calculatrice Hedia ne prend pas en charge une dose d\u2019insuline sup\xE9rieure \xE0 ",a("SAFETY_INSULIN_LIMIT")," unit\xE9s"]},"Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours":"Erreur. La calculatrice Hedia ne prend pas en charge des recommandations d\u2019insuline avec des bolus plus anciens que 4 heures","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":"Erreur. La calculatrice Hedia ne prend pas en charge votre valeur d\u2019intensit\xE9 d\u2019activit\xE9","Error. Hedia Calculator does not support your activity type value":"Erreur. La calculatrice Hedia ne prend pas en charge votre valeur de type d\u2019activit\xE9","Error. Hedia Calculator does not support your current blood glucose level.":"Erreur. La calculatrice Hedia ne prend pas en charge votre glyc\xE9mie actuelle.","Error. Hedia Calculator does not support your current blood glucose unit.":"Erreur. La calculatrice Hedia ne prend pas en charge votre unit\xE9 de glyc\xE9mie actuelle.","Error. Hedia Calculator does not support your current blood ketone level.":"Erreur. La calculatrice Hedia ne prend pas en charge votre taux de c\xE9ton\xE9mie actuel.","Error. Hedia Calculator does not support your current blood ketone unit.":"Erreur. La calculatrice Hedia ne prend pas en charge votre unit\xE9 de c\xE9ton\xE9mie actuelle.","Error. Hedia Calculator does not support your current language.":"Erreur. La calculatrice Hedia ne prend pas en charge votre langue actuelle.","Error. Hedia Calculator does not support your injection method.":"Erreur. La calculatrice Hedia ne prend pas en charge votre m\xE9thode d\u2019injection.","Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.":"Erreur. La calculatrice Hedia ne prend en charge que des activit\xE9s d\u2019une dur\xE9e maximale de 60 minutes.","Error. Please verify that your activity settings are set up correctly.":"Erreur. Veuillez v\xE9rifier que vos param\xE8tres d\u2019activit\xE9 sont correctement param\xE9tr\xE9s.","Error. Please verify that your activity target blood glucose value is correct.":"Erreur. Veuillez v\xE9rifier que votre glyc\xE9mie d\xE9sir\xE9e pendant l\u2019activit\xE9 est correct.","Error. Please verify that your insulin sensitivity value is correct.":"Erreur. Veuillez v\xE9rifier que votre valeur de sensibilit\xE9 \xE0 l\u2019insuline est correcte.","Error. Please verify that your insulin to carb ratio value is correct.":"Erreur. Veuillez v\xE9rifier que votre valeur de rapport insuline/glucides est correcte.","Error. Please verify that your target blood glucose value is correct.":"Erreur. Veuillez v\xE9rifier que votre glyc\xE9mie cible est correct.","Error. Please verify your notifications settings.":"Erreur. Veuillez v\xE9rifier vos param\xE8tres de notification.","Error. Your blood ketone settings are invalid.":"Error. Your blood ketone settings are invalid.","Food":"Aliments","Forecasted Glucose":"Forecasted Glucose","Forecasted time:":"Forecasted time:","Hard":"Difficile","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.":"La calculatrice Hedia ne prend pas en charge des activit\xE9s termin\xE9es il y a plus de 4 heures.","Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.":"La calculatrice Hedia ne prend pas en charge des recommandations d\u2019insuline avec plus de 300 grammes de glucides pr\xE9sents.","Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.":function(a){return["Hedia ne prend pas en charge plus de ",a("SAFETY_INSULIN_LIMIT")," unit\xE9s d\u2019insuline par calcul."]},"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 ne prend pas en charge plus de ",a("SAFETY_INSULIN_LIMIT")," unit\xE9s d\u2019insuline par calcul, mais en raison de l\u2019activit\xE9 physique que vous avez saisie, ce chiffre a \xE9t\xE9 encore r\xE9duit de ",a("0")," % \xE0 ",a("1")," unit\xE9s pour ce calcul."]},"How are you feeling?":"Comment vous sentez-vous ?","If it is possible, postpone your planned exercise.":"Si possible, reportez votre activit\xE9 pr\xE9vu.","Instead of taking insulin":"Au lieu de prendre de l\u2019insuline","Insulin recommendation":"Recommandation d\u2019insuline","Light":"L\xE9g\xE8re","Moderate":"Mod\xE9r\xE9e","More than 15 minutes has passed since this calculation was started.":"Plus de 15 minutes se sont \xE9coul\xE9es depuis le d\xE9but de ce calcul.","NO":"NON","No":"Non","No, return to dashboard":"Non, retour au tableau de bord","OFF":"D\xC9SACTIV\xC9","OK":"OK","Please go through the calculation steps with new measurements to ensure a safe recommendation.":"Veuillez suivre les \xE9tapes de calcul avec de nouvelles mesures pour vous assurer d\u2019obtenir une recommandation s\xFBre.","Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?":function(a){return["La recommandation du ",a("day")," \xE0 ",a("time")," n\u2019a pas \xE9t\xE9 transf\xE9r\xE9e \xE0 votre journal de bord.",a("0"),"Avez-vous suivi la recommandation ?"]},"Recommended":"Recommand\xE9","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":"Rappelez-moi de mesurer ma glyc\xE9mie dans","Return to dashboard":"Retour au tableau de bord","Save data before closing?":"Enregistrer les donn\xE9es avant de fermer ?","Save to logbook":"Enregistrer dans le journal de bord","Start new calculation":"Commencer un nouveau calcul","Total":"Total","Units":"Unit\xE9s","Untitled Activity":"Activit\xE9 sans titre","We recommend eating an additional:":"Nous vous recommandons de manger en plus :","Would you like to add this to your current calculation?":"Souhaitez-vous ajouter cela \xE0 votre calcul actuel ?","Yes":"Oui","Yes, save to logbook":"Oui, enregistrer dans le journal de bord","You have a high blood glucose level.":"Vous avez une valeur de glyc\xE9mie \xE9lev\xE9e.","You should take rapid-acting insulin and measure ketones.":"Vous devriez prendre de l\u2019insuline \xE0 action rapide et mesurer les c\xE9tones.","You will be reminded to measure your blood glucose level in 15 min.":"Il vous sera rappel\xE9 de mesurer votre valeur de glyc\xE9mie dans 15 mn.","Your blood glucose level is very low.":"Votre valeur de glyc\xE9mie est tr\xE8s faible.","Your blood glucose level is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention.":"Votre valeur de glyc\xE9mie est tr\xE8s faible. Prenez du glucagon ou mangez des glucides si possible. Consultez un m\xE9decin.","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["Votre recommandation aurait \xE9t\xE9 sup\xE9rieure \xE0 ",a("0")," unit\xE9s d\u2019insuline, mais elle a \xE9t\xE9 limit\xE9e pour des raisons de s\xE9curit\xE9.",a("1")," Hedia ne recommande jamais plus de ",a("SAFETY_INSULIN_LIMIT")," unit\xE9s d\u2019insuline par calcul, mais en raison de l\u2019activit\xE9 physique saisie, elle a \xE9t\xE9 r\xE9duite de ",a("2"),"% \xE0 ",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["Votre recommandation aurait \xE9t\xE9 sup\xE9rieure \xE0 ",a("SAFETY_INSULIN_LIMIT")," unit\xE9s d\u2019insuline, mais elle a \xE9t\xE9 limit\xE9e pour des raisons de s\xE9curit\xE9. Hedia ne recommande jamais plus de ",a("SAFETY_INSULIN_LIMIT")," unit\xE9s d\u2019insuline par calcul."]},"Your saved data will be used for future calculations.":"Vos donn\xE9es enregistr\xE9es seront utilis\xE9es pour des calculs ult\xE9rieurs.","grams":"grammes","grams of carbohydrates":"grammes de glucides","hours":"heures","min":"min","units":"unit\xE9s"}};
@@ -56,15 +56,7 @@ msgstr "Fermer le calcul"
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 "Envisagez de ne pas commencer d’activité physique avant que votre taux de glycémie ne soit dans la plage recommandée avant l’activité physique."
58
58
 
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
59
+ #: src/components/RecommendedInsulin.tsx:108
68
60
  msgid "Edit"
69
61
  msgstr ""
70
62
 
@@ -156,14 +148,14 @@ msgstr ""
156
148
  msgid "Food"
157
149
  msgstr "Aliments"
158
150
 
159
- #: src/components/ForecastInfoBar.tsx:54
160
- msgid "Forecast time:"
161
- msgstr ""
162
-
163
151
  #: src/RecommendationScreen.tsx:454
164
152
  msgid "Forecasted Glucose"
165
153
  msgstr ""
166
154
 
155
+ #: src/components/ForecastInfoBar.tsx:54
156
+ msgid "Forecasted time:"
157
+ msgstr ""
158
+
167
159
  #: src/utils/Translations.ts:13
168
160
  msgid "Hard"
169
161
  msgstr "Difficile"
@@ -252,11 +244,7 @@ msgstr "La recommandation du {day} à {time} n’a pas été transférée à vot
252
244
  msgid "Recommended"
253
245
  msgstr "Recommandé"
254
246
 
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
247
+ #: src/components/RecommendedInsulin.tsx:97
260
248
  msgid "Recommended amount of rapid-acting insulin for immidiate injection based on forecasted glucose"
261
249
  msgstr ""
262
250
 
@@ -285,7 +273,7 @@ msgstr "Commencer un nouveau calcul"
285
273
  msgid "Total"
286
274
  msgstr "Total"
287
275
 
288
- #: src/components/RecommendedInsulin.tsx:105
276
+ #: src/components/RecommendedInsulin.tsx:104
289
277
  msgid "Units"
290
278
  msgstr "Unités"
291
279
 
@@ -1 +1 @@
1
- /* eslint-disable */module.exports={languageData:{"plurals":function(n,ord){var s=String(n).split("."),v0=!s[1];if(ord)return n==11||n==8||n==80||n==800?"many":"other";return n==1&&v0?"one":"other"}},messages:{"Active Insulin":"Insulina attiva","Activity":"Attivit\xE0 fisica","Additional":"Ulteriori","Attention":"Attenzione","Based on the selected activity your insulin recommendation is reduced by:":"In base all'attivit\xE0 selezionata, la prescrizione per l'insulina \xE8 ridotta di:","Blood Glucose Level":"Indice glicemico","Blood Ketone Level":"Livello di chetoni nel sangue","Carbohydrates":"Carboidrati","Close calculation":"Chiudi calcolo","Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.":"Ricorda di non iniziare l'attivit\xE0 fisica prima che il livello di glucosio nel sangue non sia rientrato negli intervalli raccomandati prima dell'attivit\xE0 fisica.","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":"Inserito","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["Errore. Hedia Calculator non supporta una dose di insulina superiore a ",a("SAFETY_INSULIN_LIMIT")," unit\xE0"]},"Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours":"Errore. Hedia Calculator non supporta le raccomandazioni di insulina con boli pi\xF9 vecchi di 4 ore","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":"Errore. Hedia Calculator non supporta il valore dell'intensit\xE0 dell'attivit\xE0","Error. Hedia Calculator does not support your activity type value":"Errore. Hedia Calculator non supporta il valore del tipo di attivit\xE0","Error. Hedia Calculator does not support your current blood glucose level.":"Errore. Hedia Calculator non supporta la tua glicemia attuale.","Error. Hedia Calculator does not support your current blood glucose unit.":"Errore. Hedia Calculator non supporta l'attuale unit\xE0 misura di glucosio nel sangue.","Error. Hedia Calculator does not support your current blood ketone level.":"Errore. Hedia Calculator non supporta l'attuale livello di chetoni nel sangue.","Error. Hedia Calculator does not support your current blood ketone unit.":"Errore. Hedia Calculator non supporta l'attuale unit\xE0 di misura di chetoni del sangue.","Error. Hedia Calculator does not support your current language.":"Errore. Hedia Calculator non supporta la lingua corrente.","Error. Hedia Calculator does not support your injection method.":"Errore. Hedia Calculator non supporta il metodo di iniezione.","Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.":"Errore. Hedia Calculator supporta solo attivit\xE0 della durata massima di 60 minuti.","Error. Please verify that your activity settings are set up correctly.":"Errore. Verificare che le impostazioni delle attivit\xE0 siano impostate correttamente.","Error. Please verify that your activity target blood glucose value is correct.":"Errore. Verificare che il indice glicemico desiderato durante l\u2019attivit\xE0 sia corretto.","Error. Please verify that your insulin sensitivity value is correct.":"Errore. Verificare che il valore della sensibilit\xE0 all'insulina sia corretto.","Error. Please verify that your insulin to carb ratio value is correct.":"Errore. Verificare che il valore del rapporto insulina/carboidrati sia corretto.","Error. Please verify that your target blood glucose value is correct.":"Errore. Verificare che il valore obiettivo della glicemia sia corretto.","Error. Please verify your notifications settings.":"Errore. Verificare le impostazioni di notifica.","Error. Your blood ketone settings are invalid.":"Error. Your blood ketone settings are invalid.","Food":"Cibo","Forecast time:":"Forecast time:","Forecasted Glucose":"Forecasted Glucose","Hard":"Intensa","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 non supporta attivit\xE0 che siano terminate pi\xF9 di 4 ore fa.","Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.":"Hedia Calculator non supporta le prescrizioni di insulina con pi\xF9 di 300 grammi di carboidrati presenti.","Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.":function(a){return["Hedia non supporta pi\xF9 di ",a("SAFETY_INSULIN_LIMIT")," unit\xE0 di insulina per ogni calcolo."]},"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 non supporta pi\xF9 di ",a("SAFETY_INSULIN_LIMIT")," unit\xE0 di insulina per ogni calcolo, ma, a seguito dell'attivit\xE0 fisica che hai inserito, \xE8 stata ulteriormente ridotta del ",a("0"),"% a ",a("1")," unit\xE0 per questo calcolo."]},"How are you feeling?":"Come ti senti?","If it is possible, postpone your planned exercise.":"Se possibile, posticipa l'allenamento pianificato.","Instead of taking insulin":"Invece di assumere insulina","Insulin recommendation":"Prescrizione di insulina","Light":"Leggera","Moderate":"Moderata","More than 15 minutes has passed since this calculation was started.":"Sono passati pi\xF9 di 15 minuti dall'inizio di questo calcolo.","NO":"NO","No":"No","No, return to dashboard":"No, torna al pannello di controllo","OFF":"SPENTO","OK":"OK","Please go through the calculation steps with new measurements to ensure a safe recommendation.":"Completa tutte le fasi del calcolo con nuove misurazioni per assicurare una prescrizione sicura.","Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?":function(a){return["La prescrizione del ",a("day")," alle ",a("time")," non \xE8 stata trasferita nel tuo diario.",a("0")," Hai usato la prescrizione?"]},"Recommended":"Prescritta","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":"Ricordami di misurare nuovamente tra","Return to dashboard":"Torna al pannello di controllo","Save data before closing?":"Salvare i dati prima della chiusura?","Save to logbook":"Salva nel diario","Start new calculation":"Inizia il nuovo calcolo","Total":"Totale","Units":"Unit\xE0","Untitled Activity":"Attivit\xE0 senza titolo","We recommend eating an additional:":"Consigliamo di ingerire una quantit\xE0 supplementare:","Would you like to add this to your current calculation?":"Vuoi aggiungere questo al tuo calcolo corrente?","Yes":"S\xEC","Yes, save to logbook":"S\xEC, salva nel diario","You have a high blood glucose level.":"Hai un alto indice glicemico.","You should take rapid-acting insulin and measure ketones.":"Devi assumere insulina ad azione rapida e misurare i chetoni.","You will be reminded to measure your blood glucose level in 15 min.":"Ti verr\xE0 ricordato di misurare il indice glicemico tra 15 min.","Your blood glucose level is very low.":"Il indice glicemico \xE8 molto basso.","Your blood glucose level is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention.":"Il indice glicemico \xE8 molto basso. Assumi glucagon o ingerisci carboidrati, se possibile. Rivolgiti a un medico.","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["La tua prescrizione sarebbe stata superiore a ",a("0")," unit\xE0 di insulina, ma \xE8 stata limitata per motivi di sicurezza.",a("1")," Hedia non prescrive mai pi\xF9 di ",a("SAFETY_INSULIN_LIMIT")," unit\xE0 di insulina per calcolo, ma a seguito dell'attivit\xE0 fisica che hai inserito, questa \xE8 stata ulteriormente ridotta del ",a("2"),"% a ",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["La tua prescrizione sarebbe stata superiore a ",a("SAFETY_INSULIN_LIMIT")," unit\xE0 di insulina, ma \xE8 stata limitata per motivi di sicurezza. Hedia non prescrive mai pi\xF9 di ",a("SAFETY_INSULIN_LIMIT")," unit\xE0 di insulina per calcolo."]},"Your saved data will be used for future calculations.":"I dati salvati saranno utilizzati per calcoli futuri.","grams":"grammi","grams of carbohydrates":"grammi di carboidrati","hours":"ore","min":"min","units":"unit\xE0"}};
1
+ /* eslint-disable */module.exports={languageData:{"plurals":function(n,ord){var s=String(n).split("."),v0=!s[1];if(ord)return n==11||n==8||n==80||n==800?"many":"other";return n==1&&v0?"one":"other"}},messages:{"Active Insulin":"Insulina attiva","Activity":"Attivit\xE0 fisica","Additional":"Ulteriori","Attention":"Attenzione","Based on the selected activity your insulin recommendation is reduced by:":"In base all'attivit\xE0 selezionata, la prescrizione per l'insulina \xE8 ridotta di:","Blood Glucose Level":"Indice glicemico","Blood Ketone Level":"Livello di chetoni nel sangue","Carbohydrates":"Carboidrati","Close calculation":"Chiudi calcolo","Consider not to initiate physical activity before your blood glucose level is within the recommended ranges prior to physical activity.":"Ricorda di non iniziare l'attivit\xE0 fisica prima che il livello di glucosio nel sangue non sia rientrato negli intervalli raccomandati prima dell'attivit\xE0 fisica.","Edit":"Edit","Entered":"Inserito","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["Errore. Hedia Calculator non supporta una dose di insulina superiore a ",a("SAFETY_INSULIN_LIMIT")," unit\xE0"]},"Error. Hedia Calculator does not support insulin recommendations with boluses older than 4 hours":"Errore. Hedia Calculator non supporta le raccomandazioni di insulina con boli pi\xF9 vecchi di 4 ore","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":"Errore. Hedia Calculator non supporta il valore dell'intensit\xE0 dell'attivit\xE0","Error. Hedia Calculator does not support your activity type value":"Errore. Hedia Calculator non supporta il valore del tipo di attivit\xE0","Error. Hedia Calculator does not support your current blood glucose level.":"Errore. Hedia Calculator non supporta la tua glicemia attuale.","Error. Hedia Calculator does not support your current blood glucose unit.":"Errore. Hedia Calculator non supporta l'attuale unit\xE0 misura di glucosio nel sangue.","Error. Hedia Calculator does not support your current blood ketone level.":"Errore. Hedia Calculator non supporta l'attuale livello di chetoni nel sangue.","Error. Hedia Calculator does not support your current blood ketone unit.":"Errore. Hedia Calculator non supporta l'attuale unit\xE0 di misura di chetoni del sangue.","Error. Hedia Calculator does not support your current language.":"Errore. Hedia Calculator non supporta la lingua corrente.","Error. Hedia Calculator does not support your injection method.":"Errore. Hedia Calculator non supporta il metodo di iniezione.","Error. Hedia Calculator only supports activities with a duration of maximum 60 minutes.":"Errore. Hedia Calculator supporta solo attivit\xE0 della durata massima di 60 minuti.","Error. Please verify that your activity settings are set up correctly.":"Errore. Verificare che le impostazioni delle attivit\xE0 siano impostate correttamente.","Error. Please verify that your activity target blood glucose value is correct.":"Errore. Verificare che il indice glicemico desiderato durante l\u2019attivit\xE0 sia corretto.","Error. Please verify that your insulin sensitivity value is correct.":"Errore. Verificare che il valore della sensibilit\xE0 all'insulina sia corretto.","Error. Please verify that your insulin to carb ratio value is correct.":"Errore. Verificare che il valore del rapporto insulina/carboidrati sia corretto.","Error. Please verify that your target blood glucose value is correct.":"Errore. Verificare che il valore obiettivo della glicemia sia corretto.","Error. Please verify your notifications settings.":"Errore. Verificare le impostazioni di notifica.","Error. Your blood ketone settings are invalid.":"Error. Your blood ketone settings are invalid.","Food":"Cibo","Forecasted Glucose":"Forecasted Glucose","Forecasted time:":"Forecasted time:","Hard":"Intensa","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 non supporta attivit\xE0 che siano terminate pi\xF9 di 4 ore fa.","Hedia Calculator does not support insulin recommendations with more than 300 grams of carbohydrates present.":"Hedia Calculator non supporta le prescrizioni di insulina con pi\xF9 di 300 grammi di carboidrati presenti.","Hedia does not support more than {SAFETY_INSULIN_LIMIT} units of insulin per calculation.":function(a){return["Hedia non supporta pi\xF9 di ",a("SAFETY_INSULIN_LIMIT")," unit\xE0 di insulina per ogni calcolo."]},"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 non supporta pi\xF9 di ",a("SAFETY_INSULIN_LIMIT")," unit\xE0 di insulina per ogni calcolo, ma, a seguito dell'attivit\xE0 fisica che hai inserito, \xE8 stata ulteriormente ridotta del ",a("0"),"% a ",a("1")," unit\xE0 per questo calcolo."]},"How are you feeling?":"Come ti senti?","If it is possible, postpone your planned exercise.":"Se possibile, posticipa l'allenamento pianificato.","Instead of taking insulin":"Invece di assumere insulina","Insulin recommendation":"Prescrizione di insulina","Light":"Leggera","Moderate":"Moderata","More than 15 minutes has passed since this calculation was started.":"Sono passati pi\xF9 di 15 minuti dall'inizio di questo calcolo.","NO":"NO","No":"No","No, return to dashboard":"No, torna al pannello di controllo","OFF":"SPENTO","OK":"OK","Please go through the calculation steps with new measurements to ensure a safe recommendation.":"Completa tutte le fasi del calcolo con nuove misurazioni per assicurare una prescrizione sicura.","Recommendation from {day} at {time} was not transfered to your logbook.{0}Did you use the recommendation?":function(a){return["La prescrizione del ",a("day")," alle ",a("time")," non \xE8 stata trasferita nel tuo diario.",a("0")," Hai usato la prescrizione?"]},"Recommended":"Prescritta","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":"Ricordami di misurare nuovamente tra","Return to dashboard":"Torna al pannello di controllo","Save data before closing?":"Salvare i dati prima della chiusura?","Save to logbook":"Salva nel diario","Start new calculation":"Inizia il nuovo calcolo","Total":"Totale","Units":"Unit\xE0","Untitled Activity":"Attivit\xE0 senza titolo","We recommend eating an additional:":"Consigliamo di ingerire una quantit\xE0 supplementare:","Would you like to add this to your current calculation?":"Vuoi aggiungere questo al tuo calcolo corrente?","Yes":"S\xEC","Yes, save to logbook":"S\xEC, salva nel diario","You have a high blood glucose level.":"Hai un alto indice glicemico.","You should take rapid-acting insulin and measure ketones.":"Devi assumere insulina ad azione rapida e misurare i chetoni.","You will be reminded to measure your blood glucose level in 15 min.":"Ti verr\xE0 ricordato di misurare il indice glicemico tra 15 min.","Your blood glucose level is very low.":"Il indice glicemico \xE8 molto basso.","Your blood glucose level is very low. Take glucagon or eat carbohydrates if possible. Seek medical attention.":"Il indice glicemico \xE8 molto basso. Assumi glucagon o ingerisci carboidrati, se possibile. Rivolgiti a un medico.","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["La tua prescrizione sarebbe stata superiore a ",a("0")," unit\xE0 di insulina, ma \xE8 stata limitata per motivi di sicurezza.",a("1")," Hedia non prescrive mai pi\xF9 di ",a("SAFETY_INSULIN_LIMIT")," unit\xE0 di insulina per calcolo, ma a seguito dell'attivit\xE0 fisica che hai inserito, questa \xE8 stata ulteriormente ridotta del ",a("2"),"% a ",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["La tua prescrizione sarebbe stata superiore a ",a("SAFETY_INSULIN_LIMIT")," unit\xE0 di insulina, ma \xE8 stata limitata per motivi di sicurezza. Hedia non prescrive mai pi\xF9 di ",a("SAFETY_INSULIN_LIMIT")," unit\xE0 di insulina per calcolo."]},"Your saved data will be used for future calculations.":"I dati salvati saranno utilizzati per calcoli futuri.","grams":"grammi","grams of carbohydrates":"grammi di carboidrati","hours":"ore","min":"min","units":"unit\xE0"}};
@@ -56,15 +56,7 @@ msgstr "Chiudi calcolo"
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 "Ricorda di non iniziare l'attività fisica prima che il livello di glucosio nel sangue non sia rientrato negli intervalli raccomandati prima dell'attività fisica."
58
58
 
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
59
+ #: src/components/RecommendedInsulin.tsx:108
68
60
  msgid "Edit"
69
61
  msgstr ""
70
62
 
@@ -156,14 +148,14 @@ msgstr ""
156
148
  msgid "Food"
157
149
  msgstr "Cibo"
158
150
 
159
- #: src/components/ForecastInfoBar.tsx:54
160
- msgid "Forecast time:"
161
- msgstr ""
162
-
163
151
  #: src/RecommendationScreen.tsx:454
164
152
  msgid "Forecasted Glucose"
165
153
  msgstr ""
166
154
 
155
+ #: src/components/ForecastInfoBar.tsx:54
156
+ msgid "Forecasted time:"
157
+ msgstr ""
158
+
167
159
  #: src/utils/Translations.ts:13
168
160
  msgid "Hard"
169
161
  msgstr "Intensa"
@@ -252,11 +244,7 @@ msgstr "La prescrizione del {day} alle {time} non è stata trasferita nel tuo di
252
244
  msgid "Recommended"
253
245
  msgstr "Prescritta"
254
246
 
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
247
+ #: src/components/RecommendedInsulin.tsx:97
260
248
  msgid "Recommended amount of rapid-acting insulin for immidiate injection based on forecasted glucose"
261
249
  msgstr ""
262
250
 
@@ -285,7 +273,7 @@ msgstr "Inizia il nuovo calcolo"
285
273
  msgid "Total"
286
274
  msgstr "Totale"
287
275
 
288
- #: src/components/RecommendedInsulin.tsx:105
276
+ #: src/components/RecommendedInsulin.tsx:104
289
277
  msgid "Units"
290
278
  msgstr "Unità"
291
279
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hedia/recommendation-screen",
3
- "version": "2.2.0-alpha.18",
3
+ "version": "2.2.0-alpha.2",
4
4
  "description": "Hedia Recommendation Screen for Bolus and Carbohydrates",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -18,8 +18,7 @@
18
18
  "prettier-fix": "prettier --write \"**/*.{ts,tsx}\"",
19
19
  "pkg-json-lint": "npmPkgJsonLint .",
20
20
  "package-audit": "npm-audit --critical --warn",
21
- "pipeline": "npm run tsc && npm run lint && npm run pkg-json-lint && npm run prettier && npm run package-audit",
22
- "prepublishOnly": "npm ci --ignore-scripts --legacy-peer-deps && npm run build",
21
+ "prepublishOnly": "npm ci --ignore-scripts && npm run build",
23
22
  "postpublish": "npm run clean",
24
23
  "a": "index-git.sh && cd android && gradlew clean && cd .. && react-native run-android",
25
24
  "start": "react-native start",
@@ -27,8 +26,7 @@
27
26
  "extract": "lingui extract",
28
27
  "extract-clean": "lingui extract --clean",
29
28
  "compile": "npm run cleanLanguage && lingui compile",
30
- "cleanLanguage": "node ./src/locale/CleanLanguage.ts",
31
- "prepare": "husky install"
29
+ "cleanLanguage": "node ./src/locale/CleanLanguage.ts"
32
30
  },
33
31
  "keywords": [
34
32
  "Hedia",
@@ -63,7 +61,6 @@
63
61
  "babel-jest": "26.0.1",
64
62
  "babel-loader": "8.1.0",
65
63
  "babel-plugin-macros": "2.8.0",
66
- "husky": "8.0.1",
67
64
  "jest": "26.6.3",
68
65
  "metro-react-native-babel-preset": "0.66.2",
69
66
  "npm-package-json-lint": "5.4.1",
@@ -72,7 +69,6 @@
72
69
  "react-native": "0.67.3",
73
70
  "react-native-keyboard-aware-scroll-view": "0.9.5",
74
71
  "react-native-linear-gradient": "2.5.6",
75
- "react-native-svg": "12.4.4",
76
72
  "react-native-testing-library": "2.1.0",
77
73
  "react-native-vector-icons": "9.1.0",
78
74
  "react-test-renderer": "17.0.2",
@@ -88,15 +84,15 @@
88
84
  "@lingui/cli": "2.9.2",
89
85
  "@lingui/macro": "2.9.2",
90
86
  "@lingui/react": "2.9.2",
91
- "moment": "2.29.4",
92
- "react-native-modal": "13.0.1"
87
+ "moment": "2.29.3",
88
+ "react-native-modal": "13.0.1",
89
+ "react-native-svg": "12.3.0"
93
90
  },
94
91
  "peerDependencies": {
95
92
  "@hedia/recommendation-calculator": "2.0.15",
96
93
  "@lingui/macro": "2.9.2",
97
94
  "@react-native-community/slider": "3.0.0",
98
95
  "react-native-linear-gradient": "2.5.6",
99
- "react-native-svg": "12.4.4",
100
- "react-native-vector-icons": "9.2.0"
96
+ "react-native-vector-icons": "9.1.0"
101
97
  }
102
98
  }
File without changes
File without changes
File without changes