Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hl 1548 #3647

Merged
merged 5 commits into from
Dec 13, 2024
Merged

Hl 1548 #3647

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading