Skip to content

Commit 824ce4b

Browse files
i18n(fr): update reference/errors/* (withastro#13918)
Co-authored-by: Yan <61414485+yanthomasdev@users.noreply.github.com>
1 parent 2b63f57 commit 824ce4b

56 files changed

Lines changed: 71 additions & 67 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: Action inattendue demandée par le serveur.
2+
title: Action appelée depuis le serveur sans `Astro.callAction()`.
33
i18nReady: true
44
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
55
---
66

7-
> **ActionCalledFromServerError**: Action called from a server page or endpoint without using `Astro.callAction()`. This wrapper must be used to call actions from server code.
7+
> **ActionCalledFromServerError**: Action called from a server-rendered page or endpoint without using `Astro.callAction()`. This wrapper must be used to call actions from server code.
88
99
## Qu'est-ce qui a mal tourné ?
10-
Action déclenchée à partir d'une page serveur ou d'un point de terminaison sans utiliser `Astro.callAction()`.
10+
Action déclenchée à partir d'une page rendue par le serveur ou d'un point de terminaison sans utiliser `Astro.callAction()`.
1111

1212
**Voir aussi :**
1313
- [Référence d'`Astro.callAction()`](/fr/reference/api-reference/#callaction)

src/content/docs/fr/reference/errors/actions-without-server-output-error.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ i18nReady: true
44
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
55
---
66

7-
> **ActionsWithoutServerOutputError**: A server is required to create callable backend functions. To deploy routes to a server, add an adapter to your Astro config and configure your route for on-demand rendering
7+
> **ActionsWithoutServerOutputError**: A server is required to create callable backend functions. To deploy routes to a server, add an adapter to your Astro config and configure your route for on-demand rendering.
88
99
## Qu'est-ce qui a mal tourné ?
1010
Votre projet doit avoir une sortie serveur pour créer des fonctions backend avec des actions.

src/content/docs/fr/reference/errors/adapter-support-output-mismatch.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ En fonction de votre adaptateur, il peut y avoir un point d'entrée différent
1313

1414
**Voir aussi :**
1515
- [Rendu côté serveur](/fr/guides/on-demand-rendering/)
16+

src/content/docs/fr/reference/errors/cannot-fetch-font-file.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/
77
> An error occurred while fetching font file from the given URL.
88
99
## Qu'est-ce qui a mal tourné ?
10-
Impossible de récupérer le fichier de police donné
10+
Impossible de récupérer le fichier de police donné.

src/content/docs/fr/reference/errors/client-address-not-available.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ L'adaptateur que vous utilisez ne prend malheureusement pas en charge `Astro.cli
1111

1212
**Voir aussi :**
1313
- [Intégrations officielles](/fr/guides/integrations/#intégrations-officielles)
14-
- [Astro.clientAddress](/fr/reference/api-reference/#clientaddress)
14+
- [`Astro.clientAddress`](/fr/reference/api-reference/#clientaddress)

src/content/docs/fr/reference/errors/config-not-found.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ i18nReady: true
44
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
55
---
66

7-
> **ConfigNotFound** : Unable to resolve `--config "CONFIG_FILE"`. Does the file exist?
7+
> **ConfigNotFound**: Unable to resolve `--config "CONFIG_FILE"`. Does the file exist?
88
99
## Qu'est-ce qui a mal tourné ?
1010

src/content/docs/fr/reference/errors/content-loader-invalid-data-error.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: L'entrée de contenu ne contient pas d'ID
2+
title: L'entrée de contenu ne contient pas d'ID.
33
i18nReady: true
44
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
55
---

src/content/docs/fr/reference/errors/content-schema-contains-slug-error.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ Un schéma de collection de contenu hérité ne doit pas contenir le champ `slug
1111

1212
**Voir aussi :**
1313
- [Collections de contenu héritées](/fr/guides/upgrade-to/v5/#mise-à-jour-des-collections-existantes)
14+

src/content/docs/fr/reference/errors/csssyntax-error.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ CSSSyntaxError: Unclosed string<br/>
1111
## Qu'est-ce qui a mal tourné ?
1212

1313
Astro a rencontré une erreur lors de l'analyse du CSS en raison d'une erreur de syntaxe. Cela est souvent causé par l'absence d'un point-virgule.
14+

src/content/docs/fr/reference/errors/env-invalid-variable.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Variable d'environnement invalide
2+
title: Variables d'environnement invalides.
33
i18nReady: true
44
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
55
---

0 commit comments

Comments
 (0)