Skip to content
Open
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
4 changes: 4 additions & 0 deletions src/content/docs/fr/reference/error-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,11 @@ La référence suivante est une liste complète des erreurs que vous pouvez renc
- [**CannotDetermineWeightAndStyleFromFontFile**](/fr/reference/errors/cannot-determine-weight-and-style-from-font-file/)<br/>Impossible de déterminer la graisse et le style à partir du fichier de police.
- [**CannotFetchFontFile**](/fr/reference/errors/cannot-fetch-font-file/)<br/>Impossible de récupérer le fichier de police donné.
- [**FontFamilyNotFound**](/fr/reference/errors/font-family-not-found/)<br/>Famille de polices non trouvée
- [**FontFileUrlNotFound**](/fr/reference/errors/font-file-url-not-found/)<br/>URL d'un fichier de police introuvable
- [**MissingGetFontFileRequestUrl**](/fr/reference/errors/missing-get-font-file-request-url/)<br/>`experimental_getFontFileURL()` nécessite l'URL de la requête avec le rendu à la demande.
- [**UnavailableAstroGlobal**](/fr/reference/errors/unavailable-astro-global/)<br/>Objet global Astro indisponible dans `getStaticPaths()`
- [**UnableToLoadLogger**](/fr/reference/errors/unable-to-load-logger/)<br/>Impossible de charger le journaliseur.
- [**LoggerConfigurationNotSerializable**](/fr/reference/errors/logger-configuration-not-serializable/)<br/>La configuration du journaliseur n'est pas sérialisable.

## Erreurs de CSS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ i18nReady: true
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
---

> An error occurred while optimizing the SVG file with SVGO.
> An error occurred while optimizing the SVG file with the optimizer.
10 changes: 10 additions & 0 deletions src/content/docs/fr/reference/errors/font-file-url-not-found.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: URL d'un fichier de police introuvable
i18nReady: true
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
---

> The URL passed to the `experimental_getFontFileURL()` function is invalid.

## Qu'est-ce qui a mal tourné ?
L'URL d'un fichier de police est introuvable
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: La configuration du journaliseur n'est pas sérialisable
i18nReady: true
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
---

> The configuration of the logger is not serializable.

## Qu'est-ce qui a mal tourné ?
La configuration du journaliseur n'est pas sérialisable.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: experimental_getFontFileURL() nécessite l'URL de la requête avec le rendu à la demande.
i18nReady: true
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
---

## Qu'est-ce qui a mal tourné ?
`experimental_getFontFileURL()` nécessite l'URL de la requête avec le rendu à la demande.
10 changes: 10 additions & 0 deletions src/content/docs/fr/reference/errors/unable-to-load-logger.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Impossible de charger le journaliseur.
i18nReady: true
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
---

> Couldn't load the logger at the given path.

## Qu'est-ce qui a mal tourné ?
Impossible de charger le journaliseur.
Loading