diff --git a/LoopFollow/Alarm/AlarmEditing/Editors/COBAlarmEditor.swift b/LoopFollow/Alarm/AlarmEditing/Editors/COBAlarmEditor.swift index 9a92f6b6..26be2014 100644 --- a/LoopFollow/Alarm/AlarmEditing/Editors/COBAlarmEditor.swift +++ b/LoopFollow/Alarm/AlarmEditing/Editors/COBAlarmEditor.swift @@ -9,7 +9,7 @@ struct COBAlarmEditor: View { var body: some View { Group { InfoBanner( - text: "Alerts when Carbs-on-Board exceeds the amount you set below.", + text: "Alerts when Carbs-on-Board reaches or exceeds the amount you set below.", alarmType: alarm.type ) @@ -17,8 +17,8 @@ struct COBAlarmEditor: View { AlarmStepperSection( header: "Carbs on Board Limit", - footer: "Alert when carbs-on-board is above this number.", - title: "Above", + footer: "Alert when carbs-on-board is at or above this number.", + title: "At or Above", range: 1 ... 200, step: 1, unitLabel: "g", diff --git a/LoopFollow/Alarm/AlarmEditing/Editors/MissedBolusAlarmEditor.swift b/LoopFollow/Alarm/AlarmEditing/Editors/MissedBolusAlarmEditor.swift index a7b412d9..83cbf880 100644 --- a/LoopFollow/Alarm/AlarmEditing/Editors/MissedBolusAlarmEditor.swift +++ b/LoopFollow/Alarm/AlarmEditing/Editors/MissedBolusAlarmEditor.swift @@ -41,8 +41,8 @@ struct MissedBolusAlarmEditor: View { AlarmStepperSection( header: "Ignore small boluses", - footer: "Boluses below this size are ignored.", - title: "Ignore below", + footer: "Boluses at or below this size are ignored.", + title: "Ignore at or below", range: 0.05 ... 2, step: 0.05, unitLabel: "Units", @@ -51,8 +51,8 @@ struct MissedBolusAlarmEditor: View { AlarmStepperSection( header: "Ignore small carbs", - footer: "Carb entries below this amount will not trigger the alarm.", - title: "Below", + footer: "Carb entries at or below this amount will not trigger the alarm.", + title: "At or Below", range: 0 ... 15, step: 1, unitLabel: "Grams", diff --git a/LoopFollow/Alarm/AlarmEditing/Editors/PhoneBatteryAlarmEditor.swift b/LoopFollow/Alarm/AlarmEditing/Editors/PhoneBatteryAlarmEditor.swift index 611982a7..07ea0a96 100644 --- a/LoopFollow/Alarm/AlarmEditing/Editors/PhoneBatteryAlarmEditor.swift +++ b/LoopFollow/Alarm/AlarmEditing/Editors/PhoneBatteryAlarmEditor.swift @@ -17,7 +17,7 @@ struct PhoneBatteryAlarmEditor: View { AlarmStepperSection( header: "Battery Level", - footer: "This alerts you when the battery drops below this level.", + footer: "This alerts you when the battery drops to or below this level.", title: "Battery Below", range: 0 ... 100, step: 5, diff --git a/LoopFollow/Alarm/AlarmEditing/Editors/PumpBatteryAlarmEditor.swift b/LoopFollow/Alarm/AlarmEditing/Editors/PumpBatteryAlarmEditor.swift index fc3fc093..9b3a7985 100644 --- a/LoopFollow/Alarm/AlarmEditing/Editors/PumpBatteryAlarmEditor.swift +++ b/LoopFollow/Alarm/AlarmEditing/Editors/PumpBatteryAlarmEditor.swift @@ -17,7 +17,7 @@ struct PumpBatteryAlarmEditor: View { AlarmStepperSection( header: "Pump Battery Level", - footer: "This alerts you when the pump battery drops below this level.", + footer: "This alerts you when the pump battery drops to or below this level.", title: "Battery Below", range: 0 ... 100, step: 5, diff --git a/LoopFollow/Alarm/AlarmEditing/Editors/RecBolusAlarmEditor.swift b/LoopFollow/Alarm/AlarmEditing/Editors/RecBolusAlarmEditor.swift index eb1a3a3b..5d2f66b4 100644 --- a/LoopFollow/Alarm/AlarmEditing/Editors/RecBolusAlarmEditor.swift +++ b/LoopFollow/Alarm/AlarmEditing/Editors/RecBolusAlarmEditor.swift @@ -18,8 +18,8 @@ struct RecBolusAlarmEditor: View { AlarmStepperSection( header: "Threshold", - footer: "Alert when recommended bolus is above this value.", - title: "More than", + footer: "Alert when recommended bolus is at or above this value.", + title: "At or Above", range: 0.1 ... 50, step: 0.1, unitLabel: "Units",