You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Loop/Localizable.xcstrings
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6453,6 +6453,9 @@
6453
6453
}
6454
6454
}
6455
6455
},
6456
+
"Always active when no pump is connected" : {
6457
+
"comment" : "Subtitle for suspend prediction input when no pump is connected"
6458
+
},
6456
6459
"Amount Consumed" : {
6457
6460
"comment" : "Label for carb quantity entry row on carb entry screen",
6458
6461
"localizations" : {
@@ -27636,6 +27639,12 @@
27636
27639
}
27637
27640
}
27638
27641
},
27642
+
"No Pump Connected" : {
27643
+
"comment" : "Title for bolus screen notice when no pump is connected"
27644
+
},
27645
+
"No pump is connected. Bolus delivery is unavailable." : {
27646
+
"comment" : "Caption for bolus screen notice when no pump is connected"
27647
+
},
27639
27648
"No Recent Glucose" : {
27640
27649
"comment" : "The title of the cell indicating that there is no recent glucose",
27641
27650
"localizations" : {
@@ -41319,6 +41328,7 @@
41319
41328
},
41320
41329
"Your pump data is stale. %1$@ cannot recommend a bolus amount." : {
41321
41330
"comment" : "Caption for bolus screen notice when pump data is missing or stale",
41331
+
"extractionState" : "stale",
41322
41332
"localizations" : {
41323
41333
"da" : {
41324
41334
"stringUnit" : {
@@ -41400,6 +41410,9 @@
41400
41410
}
41401
41411
}
41402
41412
},
41413
+
"Your pump data is stale. Bolus delivery may be unavailable." : {
41414
+
"comment" : "Caption for bolus screen notice when pump data is stale"
41415
+
},
41403
41416
"Your pump is delivering a manual temporary basal rate." : {
41404
41417
"comment" : "The description text for the looping enabled switch cell when closed loop is not allowed because the pump is delivering a manual temp basal.",
// Treat a non-active (faulted or setup incomplete) pod just like no pod
1990
+
// OmniBLE reports no active pod as .active(.distantPast)
1991
+
// See both OmniBLEPumpManager.basalDeliveryState(for:) and OmnipodPumpManager.basalDeliveryState(for:)
1992
+
return basalDeliveryState ==.active(.distantPast)
1993
+
}
1947
1994
}
1948
1995
1949
1996
/// Describes a view into the loop state
@@ -1985,9 +2032,10 @@ protocol LoopState {
1985
2032
/// - Parameter replacedCarbEntry: An existing carb entry replaced by `potentialCarbEntry`
1986
2033
/// - Parameter includingPendingInsulin: If `true`, the returned prediction will include the effects of scheduled but not yet delivered insulin
1987
2034
/// - Parameter considerPositiveVelocityAndRC: Positive velocity and positive retrospective correction will not be used if this is false.
2035
+
/// - Parameter requireRecentPumpData: Age of pump data will not be evaluated (and not throw LoopError.pumpDataTooOld) if this is `false`. Set to `false` for predicting insulin without a pump connected.
1988
2036
/// - Returns: An timeline of predicted glucose values
1989
2037
/// - Throws: LoopError.missingDataError if prediction cannot be computed
0 commit comments