Skip to content

Commit 97b94a4

Browse files
Merge branch 'main' into i18n/fr-update-top-level-pages
2 parents 68a82d8 + 341dd28 commit 97b94a4

24 files changed

+113
-113
lines changed

docs/src/content/docs/fr/components/asides.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Incluez des informations supplémentaires non essentielles avec le composant `<A
1717

1818
</Preview>
1919

20-
## Import
20+
## Importation
2121

2222
```tsx
2323
import { Aside } from '@astrojs/starlight/components';

docs/src/content/docs/fr/components/badges.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import Preview from '~/components/component-preview.astro';
1515

1616
</Preview>
1717

18-
## Import
18+
## Importation
1919

2020
```tsx
2121
import { Badge } from '@astrojs/starlight/components';

docs/src/content/docs/fr/components/card-grids.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import Preview from '~/components/component-preview.astro';
2424

2525
</Preview>
2626

27-
## Import
27+
## Importation
2828

2929
```tsx
3030
import { CardGrid } from '@astrojs/starlight/components';

docs/src/content/docs/fr/components/cards.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import Preview from '~/components/component-preview.astro';
1919

2020
</Preview>
2121

22-
## Import
22+
## Importation
2323

2424
```tsx
2525
import { Card } from '@astrojs/starlight/components';

docs/src/content/docs/fr/components/code.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ import Preview from '~/components/component-preview.astro';
1616
slot="preview"
1717
code={`## Bienvenue
1818
19-
Bonjour depuis **l'espace**!`}
19+
Bonjour depuis **l'espace** !`}
2020
lang="md"
2121
title="exemple.md"
2222
ins={3}
2323
/>
2424

2525
</Preview>
2626

27-
## Import
27+
## Importation
2828

2929
```tsx
3030
import { Code } from '@astrojs/starlight/components';
@@ -76,7 +76,7 @@ export const highlights = ['fichier', 'CMS'];
7676

7777
### Afficher du code importé
7878

79-
Dans les fichiers MDX et les composants Astro, utilisez le [suffixe d'import `?raw` de Vite](https://vite.dev/guide/assets#importing-asset-as-string) pour importer n'importe quel fichier de code sous forme de chaîne de caractères.
79+
Dans les fichiers MDX et les composants Astro, utilisez le [suffixe d'importation `?raw` de Vite](https://vite.dev/guide/assets#importing-asset-as-string) pour importer n'importe quel fichier de code sous forme de chaîne de caractères.
8080
Vous pouvez ensuite passer cette chaîne importée au composant `<Code>` pour l'inclure dans votre page.
8181

8282
<Preview>

docs/src/content/docs/fr/components/file-tree.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import Preview from '~/components/component-preview.astro';
2626

2727
</Preview>
2828

29-
## Import
29+
## Importation
3030

3131
```tsx
3232
import { FileTree } from '@astrojs/starlight/components';
@@ -133,7 +133,7 @@ import { FileTree } from '@astrojs/starlight/components';
133133
### Ajouter des commentaires
134134

135135
Ajoutez un commentaire à un fichier ou à un répertoire en ajoutant du texte après le nom.
136-
Le formatage Markdown en ligne, tel que le gras et l'italique, est pris en charge dans les commentaires.
136+
La syntaxe de mise en forme Markdown, telle que le gras et l'italique, est prise en charge dans les commentaires.
137137

138138
<Preview>
139139

docs/src/content/docs/fr/components/icons.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import Preview from '~/components/component-preview.astro';
2020

2121
</Preview>
2222

23-
## Import
23+
## Importation
2424

2525
```tsx
2626
import { Icon } from '@astrojs/starlight/components';
@@ -37,21 +37,21 @@ Une icône requiert un attribut [`name`](#name) défini avec [une des icônes di
3737
import { Icon } from '@astrojs/starlight/components';
3838

3939
<Icon name="star" />
40-
<Icon name="starlight" label="Le logo Starlight" />
40+
<Icon name="starlight" label="Le logo de Starlight" />
4141
```
4242

4343
<Fragment slot="markdoc">
4444

4545
```markdoc
4646
{% icon name="star" /%}
47-
{% icon name="starlight" label="Le logo Starlight" /%}
47+
{% icon name="starlight" label="Le logo de Starlight" /%}
4848
```
4949

5050
</Fragment>
5151

5252
<Fragment slot="preview">
5353
<Icon name="star" />
54-
<Icon name="starlight" label="Le logo Starlight" />
54+
<Icon name="starlight" label="Le logo de Starlight" />
5555
</Fragment>
5656

5757
</Preview>
@@ -103,7 +103,7 @@ Le nom de l'icône à afficher correspondant à [une des icônes disponibles ave
103103

104104
**Type :** `string`
105105

106-
Un label optionnel pour fournir un contexte aux technologies d'assistance, comme les lecteurs d'écran.
106+
Une étiquette optionnelle pour fournir un contexte aux technologies d'assistance, comme les lecteurs d'écran.
107107

108108
Quand l'attribut `label` n'est pas défini, l'icône sera complètement masquée des technologies d'assistance.
109109
Dans ce cas, assurez-vous que le contexte reste compréhensible sans l'icône.

docs/src/content/docs/fr/components/link-buttons.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import Preview from '~/components/component-preview.astro';
1717

1818
</Preview>
1919

20-
## Import
20+
## Importation
2121

2222
```tsx
2323
import { LinkButton } from '@astrojs/starlight/components';
@@ -80,7 +80,7 @@ import { LinkButton } from '@astrojs/starlight/components';
8080
icon="external"
8181
iconPlacement="start"
8282
>
83-
Référence: Astro
83+
Référence : Astro
8484
</LinkButton>
8585
```
8686

@@ -92,7 +92,7 @@ import { LinkButton } from '@astrojs/starlight/components';
9292
variant="secondary"
9393
icon="external"
9494
iconPlacement="start" %}
95-
Référence: Astro
95+
Référence : Astro
9696
{% /linkbutton %}
9797
```
9898

@@ -105,7 +105,7 @@ Référence: Astro
105105
icon="external"
106106
iconPlacement="start"
107107
>
108-
Référence: Astro
108+
Référence : Astro
109109
</LinkButton>
110110

111111
</Preview>

docs/src/content/docs/fr/components/link-cards.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import Preview from '~/components/component-preview.astro';
2222

2323
</Preview>
2424

25-
## Import
25+
## Importation
2626

2727
```tsx
2828
import { LinkCard } from '@astrojs/starlight/components';
@@ -121,7 +121,7 @@ Le titre de la carte de liaison à afficher.
121121
**Obligatoire**
122122
**Type :** `string`
123123

124-
L'URL vers laquelle pointer lorsque d'une interaction avec la carte.
124+
L'URL vers laquelle pointer lors d'une interaction avec la carte.
125125

126126
### `description`
127127

docs/src/content/docs/fr/components/steps.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import Preview from '~/components/component-preview.astro';
4949

5050
</Preview>
5151

52-
## Import
52+
## Importation
5353

5454
```tsx
5555
import { Steps } from '@astrojs/starlight/components';

0 commit comments

Comments
 (0)