Objectives: new questions
This commit is contained in:
parent
60e8f12b60
commit
ad71a38cfb
|
@ -178,6 +178,21 @@ class Objective2(injector: HasAndroidInjector) : Objective(injector, "exam", R.s
|
|||
.option(Option(R.string.iob_negiob, true))
|
||||
.option(Option(R.string.iob_posiob, true))
|
||||
)
|
||||
tasks.add(ExamTask(this, R.string.cob_label, R.string.cob_question, "cob1")
|
||||
.option(Option(R.string.cob_longer, true))
|
||||
.option(Option(R.string.cob_shorter, false))
|
||||
.option(Option(R.string.cob_no_effect, false))
|
||||
)
|
||||
tasks.add(ExamTask(this, R.string.cob_label, R.string.cob2_question, "cob2")
|
||||
.option(Option(R.string.cob2_longer, false))
|
||||
.option(Option(R.string.cob2_shorter, true))
|
||||
.option(Option(R.string.cob2_no_effect, false))
|
||||
)
|
||||
tasks.add(ExamTask(this, R.string.cob_label, R.string.cob3_question, "cob3")
|
||||
.option(Option(R.string.cob3_longer, false))
|
||||
.option(Option(R.string.cob3_shorter, false))
|
||||
.option(Option(R.string.cob3_no_effect, true))
|
||||
)
|
||||
tasks.add(ExamTask(this, R.string.breadgrams_label, R.string.blank, "breadgrams")
|
||||
.option(Option(R.string.breadgrams_grams, true))
|
||||
.option(Option(R.string.breadgrams_exchange, false))
|
||||
|
|
|
@ -136,8 +136,20 @@
|
|||
<string name="wronginsulin_compare">Compare values in AndroidAPS and pump history (if pump supports this).</string>
|
||||
<string name="wronginsulin_prime">Bolus a proportion of your calculated ‘missed’ insulin by either syringe/pen or using a prime.</string>
|
||||
<string name="wronginsulin_donothing">Do nothing and allow AndroidAPS to correct any resulting high blood glucose level.</string>
|
||||
<string name="cob_label">Carbs on Board (COB)</string>
|
||||
<string name="cob_question">How changing ISF value affects COB calculation?</string>
|
||||
<string name="cob_longer">Increasing ISF will make absorbing carbs longer time</string>
|
||||
<string name="cob_shorter">Increasing ISF will make absorbing carbs shorter time</string>
|
||||
<string name="cob_no_effect">Increasing ISF will not affect calculated carbs absorption</string>
|
||||
<string name="cob2_question">How changing IC value affects COB calculation?</string>
|
||||
<string name="cob2_longer">Increasing IC will make absorbing carbs longer time</string>
|
||||
<string name="cob2_shorter">Increasing IC will make absorbing carbs shorter time</string>
|
||||
<string name="cob2_no_effect">Increasing IC will not affect calculated carbs absorption</string>
|
||||
<string name="cob3_question">How changing profile percentage affects COB calculation?</string>
|
||||
<string name="cob3_longer">Setting profile to 150% will make absorbing carbs longer time</string>
|
||||
<string name="cob3_shorter">Setting profile to 150% will make absorbing carbs shorter time</string>
|
||||
<string name="cob3_no_effect">Setting profile to 150% will not affect calculated carbs absorption</string>
|
||||
<string name="iob_label">Insulin on Board (IOB)</string>
|
||||
<string name="iob_which">Check all the correct answers.</string>
|
||||
<string name="iob_value">IOB value is affected by issued temporary basals.</string>
|
||||
<string name="iob_hightemp">High temp basal will not be given when your blood sugar is below target.</string>
|
||||
<string name="iob_negiob">Negative IOB for a substantial period in the absence of exercise suggests your profile is too strong and less insulin is needed in your settings.</string>
|
||||
|
|
Loading…
Reference in a new issue