Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i18n(fr): update reference/configuration #918

Merged
merged 2 commits into from
Oct 19, 2023
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -157,19 +157,19 @@ Si votre site est multilingue, le `label` de chaque élément est considéré co

```js
sidebar: [
// Un exemple de barre latérale avec des étiquettes traduites en anglais.
// Un exemple de barre latérale avec des étiquettes traduites en portugais brésilien.
{
label: 'Commencer ici',
translations: { en: 'Start here' },
translations: { 'pt-BR': 'Comece Aqui' },
items: [
{
label: 'Bien démarrer',
translations: { en: 'Getting Started' },
translations: { 'pt-BR': 'Introdução' },
link: '/getting-started',
},
{
label: 'Structure du projet',
translations: { en: 'Project Structure' },
translations: { 'pt-BR': 'Estrutura de Projetos' },
link: '/structure',
},
],
Expand Down Expand Up @@ -208,7 +208,7 @@ interface BadgeConfig {

### `locales`

**Type :** <code>{ \[dir: string\]: [LocaleConfig](#localeconfig) }</code>
**Type :** <code>\{ \[dir: string\]: [LocaleConfig](#localeconfig) \}</code>

[Configurez l'internationalisation (i18n)](/fr/guides/i18n/) de votre site en définissant les `locales` supportées.

Expand Down Expand Up @@ -308,7 +308,9 @@ La locale par défaut sera utilisée pour fournir un contenu de remplacement lor

### `social`

**Type :** `Partial<Record<'bitbucket' | 'codeberg' | 'codePen' | 'discord' | 'email' | 'facebook' | 'github' | 'gitlab' | 'gitter' | 'instagram' | 'linkedin' | 'mastodon' | 'microsoftTeams' | 'rss' | 'stackOverflow' | 'telegram' | 'threads' | 'twitch' | 'twitter' | 'x.com' | 'youtube', string>>`
import SocialLinksType from '../../../../components/social-links-type.astro';

**Type :** <SocialLinksType />

Détails optionnels sur les comptes de médias sociaux pour ce site. L'ajout de l'un d'entre eux les affichera sous forme de liens iconiques dans l'en-tête du site.

Expand Down