diff --git a/site/source/components/ATInternetTracking/index.tsx b/site/source/components/ATInternetTracking/index.tsx
index da56c68a3..0f2293bed 100644
--- a/site/source/components/ATInternetTracking/index.tsx
+++ b/site/source/components/ATInternetTracking/index.tsx
@@ -23,8 +23,8 @@ export function toAtString(string: string): string {
type Chapter1 =
| 'simulateurs'
| 'informations'
- | 'creer'
| 'gerer'
+ | 'assistants'
| 'documentation'
| 'integration'
| 'navigation'
diff --git a/site/source/locales/ui-en.yaml b/site/source/locales/ui-en.yaml
index 042f26289..66fcd6d68 100644
--- a/site/source/locales/ui-en.yaml
+++ b/site/source/locales/ui-en.yaml
@@ -652,12 +652,6 @@ gérer:
employee
cta: See the list of procedures
title: "Find out about the hiring process "
- sécuritéSociale:
- aria-label: Understanding social security, Watch the video
- body: What are social security contributions used for? An update on the social
- protection system that benefits all workers in France.
- cta: Watch the video
- title: Understanding social security
iframe:
description: Tools for developers
title: Integrate a simulator
@@ -929,8 +923,8 @@ pages:
title: "Which APE code for my business? "
choix-statut:
meta:
- description: "SASU, EURL, auto-entrepreneur, EIRL: choose the status that suits
- you best with this wizard"
+ description: "SASU, EURL, auto-entrepreneur, sole proprietorship: find the
+ status that suits you best"
title: Help in choosing legal status
shortname: Legal status assistant
title: Choose your status
diff --git a/site/source/locales/ui-fr.yaml b/site/source/locales/ui-fr.yaml
index f58d741ce..c8ebe3870 100644
--- a/site/source/locales/ui-fr.yaml
+++ b/site/source/locales/ui-fr.yaml
@@ -686,12 +686,6 @@ gérer:
l’embauche d’un nouveau salarié
cta: Voir la liste des démarches
title: "Découvrir les démarches d’embauche "
- sécuritéSociale:
- aria-label: Comprendre la sécurité sociale, Voir la vidéo
- body: A quoi servent les cotisations sociales ? Le point sur le système de
- protection sociale dont bénéficient tous les travailleurs en France.
- cta: Voir la vidéo
- title: Comprendre la sécurité sociale
iframe:
description: Outils pour les développeurs
title: Intégrer un simulateur
@@ -983,8 +977,8 @@ pages:
title: "Quel code APE pour mon activité ? "
choix-statut:
meta:
- description: "SASU, EURL, auto-entrepreneur, EIRL : choisissez le statut qui
- vous convient le mieux grâce à cet assistant"
+ description: "SASU, EURL, auto-entrepreneur, entreprise individuelle : trouvez
+ le statut qui vous convient le mieux"
title: Aide au choix du statut juridique
shortname: Assistant statut juridique
title: Choisir votre statut
@@ -1325,7 +1319,7 @@ pages:
title: Simulateur de revenus pour professions libérales Cipav
comparaison:
meta:
- description: Auto-entrepreneur, EI ou SASU ? Simulez les différences de
+ description: Auto-entrepreneur, EI/EURL ou SASU ? Simulez les différences de
revenu, retraite et indemnités maladie
title: Comparateur de statut juridique
shortname: Comparaison des statuts
diff --git a/site/source/pages/assistants/choix-du-statut/_components/Navigation.tsx b/site/source/pages/assistants/choix-du-statut/_components/Navigation.tsx
index cc0c8f78a..219857ef8 100644
--- a/site/source/pages/assistants/choix-du-statut/_components/Navigation.tsx
+++ b/site/source/pages/assistants/choix-du-statut/_components/Navigation.tsx
@@ -37,7 +37,7 @@ export default function Navigation({
return (
<>
-
+
diff --git a/site/source/pages/assistants/choix-du-statut/comparateur.tsx b/site/source/pages/assistants/choix-du-statut/comparateur.tsx
index cc414aba7..aca63628c 100644
--- a/site/source/pages/assistants/choix-du-statut/comparateur.tsx
+++ b/site/source/pages/assistants/choix-du-statut/comparateur.tsx
@@ -1,6 +1,7 @@
import { useMemo } from 'react'
import { Trans } from 'react-i18next'
+import { TrackPage } from '@/components/ATInternetTracking'
import { EngineDocumentationRoutes } from '@/components/EngineDocumentationRoutes'
import { StatutType } from '@/components/StatutTag'
import { useEngine, useRawSituation } from '@/components/utils/EngineContext'
@@ -27,6 +28,7 @@ export default function Comparateur() {
return (
<>
+
Vous allez maintenant pouvoir entrer dans le détail et comparer{' '}
diff --git a/site/source/pages/assistants/choix-du-statut/config.ts b/site/source/pages/assistants/choix-du-statut/config.ts
index 724bcb092..a7f898139 100644
--- a/site/source/pages/assistants/choix-du-statut/config.ts
+++ b/site/source/pages/assistants/choix-du-statut/config.ts
@@ -14,8 +14,8 @@ export function choixStatutJuridiqueConfig({
icône: '📚',
beta: true,
tracking: {
- chapter1: 'creer',
- chapter2: 'guide',
+ chapter1: 'assistant',
+ chapter2: 'choix_du_statut',
},
meta: {
title: t(
diff --git a/site/source/pages/assistants/choix-du-statut/résultat.tsx b/site/source/pages/assistants/choix-du-statut/résultat.tsx
index 72517b5c9..1255b1a7b 100644
--- a/site/source/pages/assistants/choix-du-statut/résultat.tsx
+++ b/site/source/pages/assistants/choix-du-statut/résultat.tsx
@@ -3,6 +3,7 @@ import { useEffect } from 'react'
import { useDispatch } from 'react-redux'
import { useLocation } from 'react-router-dom'
+import { TrackPage } from '@/components/ATInternetTracking'
import { CurrentSimulatorCard } from '@/components/CurrentSimulatorCard'
import { References } from '@/components/References'
import { StatutType } from '@/components/StatutTag'
@@ -32,6 +33,8 @@ export default function Résultat() {
return (
<>
+
+
Vous avez choisi le statut : {statutLabel}{' '}
diff --git a/site/source/pages/assistants/recherche-code-ape/SearchCodeAPE.tsx b/site/source/pages/assistants/recherche-code-ape/SearchCodeAPE.tsx
index 67c906386..c372f6134 100644
--- a/site/source/pages/assistants/recherche-code-ape/SearchCodeAPE.tsx
+++ b/site/source/pages/assistants/recherche-code-ape/SearchCodeAPE.tsx
@@ -77,12 +77,14 @@ interface SearchCodeApeProps {
disabled?: boolean
hideGuichetUnique?: boolean
onCodeAPESelected?: (codeAPE: string) => void
+ trackSearch?: boolean
}
export default function SearchCodeAPE({
disabled,
hideGuichetUnique = false,
onCodeAPESelected,
+ trackSearch = false,
}: SearchCodeApeProps) {
const { t } = useTranslation()
const [searchQuery, setSearchQuery] = usePersistingState(
@@ -236,7 +238,7 @@ export default function SearchCodeAPE({
)}
{list.length > 0 && (
-
+ {trackSearch && }
-
+
>
)
}