diff --git a/source/locales/en.yaml b/source/locales/en.yaml index e8982787a..96fbd7c78 100644 --- a/source/locales/en.yaml +++ b/source/locales/en.yaml @@ -227,3 +227,12 @@ accueil: action: Discover the hiring process › piedDePage: This website is provided by the <1>URSSAF, the French social security contributions collector, and the government’s public startup incubator, <4>beta.gouv.fr. + +entreprise: + existeDéjà: My company is already registered with the French Administration + formeJuridique: + intro: "The French business law defines more than 20 possible legal statuses to declare a company with various acronyms and processes : SAS, SARL, SA, EIRL... This guide will help you find quickly the right status for your needs." + +Choisir la forme juridique: Choose your legal status +Passer: Do it later + diff --git a/source/sites/mycompanyinfrance.fr/pages/Company/Home.js b/source/sites/mycompanyinfrance.fr/pages/Company/Home.js index 2e4844aac..8177a10e7 100644 --- a/source/sites/mycompanyinfrance.fr/pages/Company/Home.js +++ b/source/sites/mycompanyinfrance.fr/pages/Company/Home.js @@ -7,15 +7,20 @@ import { nextQuestionUrlSelector } from 'Selectors/companyStatusSelectors' import LegalStatusChoices from './LegalStatusChoice' import type { Match } from 'react-router' + +import { Trans, translate } from 'react-i18next' + type Props = { match: Match, nextQuestionUrl: string } const CreateMyCompany = ({ match, nextQuestionUrl }: Props) => ( <> -

Create your company

+

+ Créez votre entreprise +

- Find the right type of company for your business in France + Trouvez la bonne forme juridique pour votre entreprise. - My company is already registered with the French Administration + + Mon entreprise existe déjà +

- The French business law defines more than 20 possible legal statuses to - declare a company with various acronyms and processes : SAS, SARL, SA, - EIRL... This guide will help you find quickly the right status for your - needs. + + Le droit des sociétés définit plus de 20 statuts juridiques possibles + pour déclarer une société avec différents acronymes et démarches : SAS, + SARL, SA, EIRL.... Ce guide vous aide à trouver rapidement le statut qui + vous convient. +

{match.isExact && (
- Choose your legal status + Choisir la forme juridique - Do it later › + Passer
)} @@ -51,4 +60,4 @@ const CreateMyCompany = ({ match, nextQuestionUrl }: Props) => ( export default connect( state => ({ nextQuestionUrl: nextQuestionUrlSelector(state) }), null -)(CreateMyCompany) +)(translate()(CreateMyCompany))