Skip to content

Commit e3cf570

Browse files
authored
Alarm consistency (#509)
1 parent cbedfe3 commit e3cf570

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

LoopFollow/Alarm/AlarmEditing/Editors/BatteryDropAlarmEditor.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ struct BatteryDropAlarmEditor: View {
1616
AlarmGeneralSection(alarm: $alarm)
1717

1818
AlarmStepperSection(
19-
header: "Battery Drop",
20-
footer: "This alerts you if the battery drops by this much or more.",
19+
header: "Phone Battery Drop",
20+
footer: "This alerts you if the phone battery drops by this much or more.",
2121
title: "Drop Amount",
2222
range: 5 ... 100,
2323
step: 5,

LoopFollow/Alarm/AlarmEditing/Editors/COBAlarmEditor.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ struct COBAlarmEditor: View {
99
var body: some View {
1010
Group {
1111
InfoBanner(
12-
text: "Alerts when Carbs-on-Board exceeds the amount you set below.",
12+
text: "Alerts when Carbs-on-Board is at or above the amount you set below.",
1313
alarmType: alarm.type
1414
)
1515

1616
AlarmGeneralSection(alarm: $alarm)
1717

1818
AlarmStepperSection(
19-
header: "Carbs on Board Limit",
20-
footer: "Alert when carbs-on-board is above this number.",
21-
title: "Above",
19+
header: "Carbs-on-Board Limit",
20+
footer: "Alert when Carbs-on-Board is at or above this number.",
21+
title: "At or Above",
2222
range: 1 ... 200,
2323
step: 1,
2424
unitLabel: "g",

LoopFollow/Alarm/AlarmEditing/Editors/MissedBolusAlarmEditor.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ struct MissedBolusAlarmEditor: View {
4141

4242
AlarmStepperSection(
4343
header: "Ignore small boluses",
44-
footer: "Boluses below this size are ignored.",
45-
title: "Ignore below",
44+
footer: "Boluses at or below this size are ignored.",
45+
title: "At or Below",
4646
range: 0.05 ... 2,
4747
step: 0.05,
4848
unitLabel: "Units",
@@ -51,8 +51,8 @@ struct MissedBolusAlarmEditor: View {
5151

5252
AlarmStepperSection(
5353
header: "Ignore small carbs",
54-
footer: "Carb entries below this amount will not trigger the alarm.",
55-
title: "Below",
54+
footer: "Carb entries at or below this amount will not trigger the alarm.",
55+
title: "At or Below",
5656
range: 0 ... 15,
5757
step: 1,
5858
unitLabel: "Grams",

LoopFollow/Alarm/AlarmEditing/Editors/PhoneBatteryAlarmEditor.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ struct PhoneBatteryAlarmEditor: View {
1616
AlarmGeneralSection(alarm: $alarm)
1717

1818
AlarmStepperSection(
19-
header: "Battery Level",
20-
footer: "This alerts you when the battery drops below this level.",
21-
title: "Battery Below",
19+
header: "Phone Battery Level",
20+
footer: "This alerts you when the phone battery drops to or below this level.",
21+
title: "At or Below",
2222
range: 0 ... 100,
2323
step: 5,
2424
unitLabel: "%",

LoopFollow/Alarm/AlarmEditing/Editors/PumpBatteryAlarmEditor.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ struct PumpBatteryAlarmEditor: View {
1717

1818
AlarmStepperSection(
1919
header: "Pump Battery Level",
20-
footer: "This alerts you when the pump battery drops below this level.",
21-
title: "Battery Below",
20+
footer: "This alerts you when the pump battery drops to or below this level.",
21+
title: "At or Below",
2222
range: 0 ... 100,
2323
step: 5,
2424
unitLabel: "%",

LoopFollow/Alarm/AlarmEditing/Editors/RecBolusAlarmEditor.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ struct RecBolusAlarmEditor: View {
1818

1919
AlarmStepperSection(
2020
header: "Threshold",
21-
footer: "Alert when recommended bolus is above this value.",
22-
title: "More than",
21+
footer: "Alert when recommended bolus is at or above this value.",
22+
title: "At or Above",
2323
range: 0.1 ... 50,
2424
step: 0.1,
2525
unitLabel: "Units",

0 commit comments

Comments
 (0)