-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Lisää sisältö hyväksymismenettelyssä sivulle (#327)
* hyväksymismenettelyssä sivun tekstien lisääminen * korjaa stepperin tyylejä * poista lisätyt tyylit vertikaalisesta stepperistä
- Loading branch information
Showing
10 changed files
with
105 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"suunnitelma_on_siirtynyt": "Suunnitelma on siirtynyt viimeistelyyn ja hyväksymiseen", | ||
"nahtavilla_olon_jalkeen": "Nähtävillä olon jälkeen saapuneet muistutukset sekä lausunnot käsitellään ja niiden perusteella voidaan tarvittaessa tehdä muutoksia suunnitelmaan. Viimeistelyn jälkeen suunnitelma hyväksymisesitys lähetetään Liikenne- ja viestintävirasto Traficomiin hyväksyttäväksi." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"suunnitelma_on_siirtynyt": "RUOTSIKSI Suunnitelma on siirtynyt viimeistelyyn ja hyväksymiseen", | ||
"nahtavilla_olon_jalkeen": "RUOTSIKSI Nähtävillä olon jälkeen saapuneet muistutukset sekä lausunnot käsitellään ja niiden perusteella voidaan tarvittaessa tehdä muutoksia suunnitelmaan. Viimeistelyn jälkeen suunnitelma hyväksymisesitys lähetetään Liikenne- ja viestintävirasto Traficomiin hyväksyttäväksi." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React, { ReactElement } from "react"; | ||
import ProjektiJulkinenPageLayout from "@components/projekti/kansalaisnakyma/ProjektiJulkinenPageLayout"; | ||
import useTranslation from "next-translate/useTranslation"; | ||
import useProjektiBreadcrumbsJulkinen from "src/hooks/useProjektiBreadcrumbsJulkinen"; | ||
import { PageProps } from "@pages/_app"; | ||
|
||
export default function Hyvaksymismenettelyssa({ setRouteLabels }: PageProps): ReactElement { | ||
useProjektiBreadcrumbsJulkinen(setRouteLabels); | ||
const { t } = useTranslation("hyvaksymismenettelyssa"); | ||
return ( | ||
<ProjektiJulkinenPageLayout selectedStep={3} title={t("suunnitelma_on_siirtynyt")}> | ||
<p>{t("nahtavilla_olon_jalkeen")}</p> | ||
</ProjektiJulkinenPageLayout> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.