Skip to content

Commit

Permalink
Hl 1548 (#3647)
Browse files Browse the repository at this point in the history
* fix: Removed email promise text from application send confirmation

* fix: Added own text for application resubmission

* fix: Fixing failing test - both screens were shown

* fix: Adding {} -may help or not

* fix: Remove &&
  • Loading branch information
JanneJuhola authored Dec 13, 2024
1 parent ddd8c1e commit ad6b330
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
6 changes: 5 additions & 1 deletion frontend/benefit/applicant/public/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,11 @@
"notifications": {
"applicationSubmitted": {
"label": "The Helsinki benefit application has been submitted",
"message": "We have received your Helsinki benefit application with application number {{applicationNumber}}.\n\nNext, the application will be sent for processing. The designated contact person for the application will receive an email notification when it has been processed. You can follow the progress of your application in the Helsinki benefit service.\n\nIf you have questions about your application, you can use the Helsinki benefit e-service to send messages or send an email to [email protected]."
"message": "We have received your Helsinki benefit application with application number {{applicationNumber}}.\n\nNext, the application will be sent for processing. You can follow the progress of your application in the Helsinki benefit service.\n\nIf you have questions about your application, you can use the Helsinki benefit e-service to send messages or send an email to [email protected]."
},
"applicationReSubmitted": {
"label": "The modification to the Helsinki benefit application has been submitted",
"message": "We have received the modification to your Helsinki benefit application, with the application number {{applicationNumber}}."
},
"applicationSaved": {
"label": "Application saved",
Expand Down
6 changes: 5 additions & 1 deletion frontend/benefit/applicant/public/locales/fi/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,11 @@
"notifications": {
"applicationSubmitted": {
"label": "Helsinki-lisä -hakemus on lähetetty",
"message": "Olemme vastaanottaneet Helsinki-lisä -hakemuksesi, jonka hakemusnumero on {{applicationNumber}}.\n\nSeuraavaksi hakemus siirtyy käsiteltäväksi. Saat ilmoituksen sähköpostiisi, kun hakemus on käsitelty. Voit seurata käsittelyn etenemistä Helsinki-lisän asiointipalvelussa.\n\nHakemukseen liittyvissä kysymyksissä voit lähettää viestejä Helsinki-lisän asiointipalvelussa tai lähettää sähköpostia osoitteeseen [email protected]."
"message": "Olemme vastaanottaneet Helsinki-lisä -hakemuksesi, jonka hakemusnumero on {{applicationNumber}}.\n\nSeuraavaksi hakemus siirtyy käsiteltäväksi. Voit seurata käsittelyn etenemistä Helsinki-lisän asiointipalvelussa.\n\nHakemukseen liittyvissä kysymyksissä voit lähettää viestejä Helsinki-lisän asiointipalvelussa tai lähettää sähköpostia osoitteeseen [email protected]."
},
"applicationReSubmitted": {
"label": "Helsinki-lisä -hakemuksen muutos on lähetetty",
"message": "Olemme vastaanottaneet muutoksen Helsinki-lisä hakemukseesi, jonka hakemusnumero on {{applicationNumber}}."
},
"applicationSaved": {
"label": "Hakemus tallennettu",
Expand Down
6 changes: 5 additions & 1 deletion frontend/benefit/applicant/public/locales/sv/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,11 @@
"notifications": {
"applicationSubmitted": {
"label": "Ansökan om Helsingforstillägget har skickats",
"message": "Vi har mottagit din ansökan om Helsingforstillägg med ansökningsnummer {{applicationNumber}}\n\nAnsökningen överförs till handläggning. Den kontaktperson som utsetts för ansökningen får ett meddelande per e-post när ansökningen har behandlats. Du kan följa upp med hur handläggningen framskrider i e-tjänsten för sysselsättning Helsingforstillägg.\n\nOm du har frågor om ansökningen, kan du skicka meddelanden i e-tjänsten för sysselsättning Helsingforstillägg eller skicka e-post till adressen [email protected]."
"message": "Vi har mottagit din ansökan om Helsingforstillägg med ansökningsnummer {{applicationNumber}}\n\nAnsökningen överförs till handläggning. Du kan följa upp med hur handläggningen framskrider i e-tjänsten för sysselsättning Helsingforstillägg.\n\nOm du har frågor om ansökningen, kan du skicka meddelanden i e-tjänsten för sysselsättning Helsingforstillägg eller skicka e-post till adressen [email protected]."
},
"applicationReSubmitted": {
"label": " Ändringen av Helsingforstillägget ansökan har skickats.",
"message": "Vi har mottagit ändringen i din Helsingforstillägget med ansökningsnummer{{applicationNumber}}."
},
"applicationSaved": {
"label": "Applikationen sparas",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,20 @@ const PageContent: React.FC = () => {
if (isSubmittedApplication) {
return (
<>
{application.status === APPLICATION_STATUSES.INFO_REQUIRED ? (
<NotificationView
applicationId={application.id}
title={t('common:notifications.applicationReSubmitted.label')}
message={t('common:notifications.applicationReSubmitted.message', {
applicationNumber: application?.applicationNumber,
applicantName: getFullName(
application?.employee?.firstName,
application?.employee?.lastName
),
})}
/>
):
(<NotificationView
applicationId={application.id}
title={t('common:notifications.applicationSubmitted.label')}
message={t('common:notifications.applicationSubmitted.message', {
Expand All @@ -164,6 +177,9 @@ const PageContent: React.FC = () => {
),
})}
/>
)
}

{router.locale === SUPPORTED_LANGUAGES.FI && (
<Container>
<$Hr />
Expand Down

0 comments on commit ad6b330

Please sign in to comment.