Skip to content

Commit 49a806c

Browse files
authored
Merge pull request #1359 from bcgov/rework/ecer-5151
ecer-5151 rework content changes
2 parents 567cfdb + 9b0c3ef commit 49a806c

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src/components/reference/inputs/EceCharacterReferenceDeclaration.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<br />
1717
<p>
1818
<b>
19-
This reference request is for {{ cleanPreferredName(wizardStore.wizardData.applicantFirstName, wizardStore.wizardData.applicantLastName) }}. If
19+
This reference request is for {{ cleanPreferredName(wizardStore.wizardData.referenceFirstName, wizardStore.wizardData.referenceLastName) }}. If
2020
you are not {{ cleanPreferredName(wizardStore.wizardData.referenceFirstName, wizardStore.wizardData.referenceLastName) }}, please select "No"
2121
below and “Other” on the following page.
2222
</b>
@@ -25,8 +25,8 @@
2525

2626
<h2>Information you'll need</h2>
2727
<div>
28-
It should take about 5 minutes to enter your reference. Make sure you get together all the information you need before you continue. If you're not
29-
ready now, you can come back later using the link in your email.
28+
It should take about 5 minutes to enter your reference. Make sure you gather all the information you need before you continue. If you're not ready
29+
now, you can come back later using the link in your email.
3030
</div>
3131
<br />
3232

@@ -104,11 +104,11 @@ export default defineComponent({
104104
certificationType() {
105105
let certificationType = "Certificate type not found";
106106
if (this.wizardStore.wizardData.certificationTypes?.includes(CertificationType.ECE_ASSISTANT)) {
107-
certificationType = "ECE Assistant certificate";
107+
certificationType = "ECE Assistant certification";
108108
} else if (this.wizardStore.wizardData.certificationTypes?.includes(CertificationType.ONE_YEAR)) {
109-
certificationType = "ECE One Year certificate";
109+
certificationType = "ECE One Year certification";
110110
} else if (this.wizardStore.wizardData.certificationTypes?.includes(CertificationType.FIVE_YEAR)) {
111-
certificationType = "ECE Five Year certificate";
111+
certificationType = "ECE Five Year certification";
112112
}
113113
return certificationType;
114114
},

src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src/components/reference/inputs/EceWorkExperienceReferenceDeclaration.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<br />
1717
<p>
1818
<b>
19-
This reference request is for {{ cleanPreferredName(wizardStore.wizardData.applicantFirstName, wizardStore.wizardData.applicantLastName) }}. If
19+
This reference request is for {{ cleanPreferredName(wizardStore.wizardData.referenceFirstName, wizardStore.wizardData.referenceLastName) }}. If
2020
you are not {{ cleanPreferredName(wizardStore.wizardData.referenceFirstName, wizardStore.wizardData.referenceLastName) }}, please select "No"
2121
below and “Other” on the following page.
2222
</b>
@@ -25,8 +25,8 @@
2525

2626
<h2 class="mb-5">Information you'll need</h2>
2727
<p>
28-
It should take about 5 minutes to enter your reference. Make sure you get together all the information you need before you continue. If you're not
29-
ready now, you can come back later using the link in your email.
28+
It should take about 5 minutes to enter your reference. Make sure you gather all the information you need before you continue. If you're not ready
29+
now, you can come back later using the link in your email.
3030
</p>
3131
<br />
3232

@@ -118,11 +118,11 @@ export default defineComponent({
118118
certificationType() {
119119
let certificationType = "Certificate type not found";
120120
if (this.wizardStore.wizardData.certificationTypes?.includes(CertificationType.ECE_ASSISTANT)) {
121-
certificationType = "ECE Assistant certificate";
121+
certificationType = "ECE Assistant certification";
122122
} else if (this.wizardStore.wizardData.certificationTypes?.includes(CertificationType.ONE_YEAR)) {
123-
certificationType = "ECE One Year certificate";
123+
certificationType = "ECE One Year certification";
124124
} else if (this.wizardStore.wizardData.certificationTypes?.includes(CertificationType.FIVE_YEAR)) {
125-
certificationType = "ECE Five Year certificate";
125+
certificationType = "ECE Five Year certification";
126126
}
127127
return certificationType;
128128
},

0 commit comments

Comments
 (0)