@@ -173,43 +173,43 @@ class OffenceAnalysisFieldsFactory extends FieldsFactory {
173
173
required : true ,
174
174
} )
175
175
176
- offenceAnalysisWhoWasTheVictim : FormWizard . Field = {
177
- text : 'Who was the victim ?' ,
176
+ offenceAnalysiswhoWasTheOffenceCommittedAgainst : FormWizard . Field = {
177
+ text : 'Who was the offence committed against ?' ,
178
178
code : 'offence_analysis_who_was_the_victim' ,
179
179
hint : { text : 'Select all that apply.' , kind : 'text' } ,
180
180
type : FieldType . CheckBox ,
181
181
multiple : true ,
182
- validate : [ { type : ValidationType . Required , message : 'Select who the victim was' } ] ,
182
+ validate : [ { type : ValidationType . Required , message : 'Select who the offence was committed against ' } ] ,
183
183
options : [
184
184
{
185
- text : 'One or more person ' ,
185
+ text : 'One or more people ' ,
186
186
value : 'ONE_OR_MORE_PERSON' ,
187
187
kind : 'option' ,
188
188
} ,
189
189
{
190
190
text : 'Other' ,
191
191
value : 'OTHER' ,
192
192
kind : 'option' ,
193
- hint : { text : 'For example, the wider community.' } ,
193
+ hint : { text : 'For example, a business or the wider community.' } ,
194
194
} ,
195
195
] ,
196
196
labelClasses : utils . getMediumLabelClassFor ( FieldType . CheckBox ) ,
197
197
}
198
198
199
199
offenceAnalysisOtherVictimDetails : FormWizard . Field = FieldsFactory . detailsField ( {
200
- parentField : this . offenceAnalysisWhoWasTheVictim ,
200
+ parentField : this . offenceAnalysiswhoWasTheOffenceCommittedAgainst ,
201
201
dependentValue : 'OTHER' ,
202
202
required : true ,
203
203
} )
204
204
205
205
offenceAnalysisVictimRelationship : FormWizard . Field = {
206
- text : `What is [subject]'s relationship to the victim?` ,
206
+ text : 'Who is the victim?' ,
207
207
code : `offence_analysis_victim_relationship` ,
208
208
type : FieldType . Radio ,
209
209
validate : [
210
210
{
211
211
type : ValidationType . Required ,
212
- message : 'Select relationship to the victim' ,
212
+ message : 'Select who the victim is ' ,
213
213
} ,
214
214
] ,
215
215
options : [
@@ -224,23 +224,23 @@ class OffenceAnalysisFieldsFactory extends FieldsFactory {
224
224
kind : 'option' ,
225
225
} ,
226
226
{
227
- text : `Victim 's child ` ,
228
- value : 'CHILD ' ,
227
+ text : `[subject] 's parent or step-parent ` ,
228
+ value : 'POP_PARENT_OR_STEP_PARENT ' ,
229
229
kind : 'option' ,
230
230
} ,
231
231
{
232
- text : `Victim 's partner` ,
233
- value : 'PARTNER ' ,
232
+ text : `[subject] 's partner` ,
233
+ value : 'POP_PARTNER ' ,
234
234
kind : 'option' ,
235
235
} ,
236
236
{
237
- text : `Victim 's ex-partner` ,
238
- value : 'EX_PARTNER ' ,
237
+ text : `[subject] 's ex-partner` ,
238
+ value : 'POP_EX_PARTNER ' ,
239
239
kind : 'option' ,
240
240
} ,
241
241
{
242
- text : `Victim 's parent or step-parent ` ,
243
- value : 'PARENT_OR_STEP_PARENT ' ,
242
+ text : `[subject] 's child or step-child ` ,
243
+ value : 'POP_CHILD_OR_STEP_CHILD ' ,
244
244
kind : 'option' ,
245
245
} ,
246
246
{
0 commit comments