Skip to content

Commit

Permalink
fr(i18n) : Updated nav.ts in French language (withastro#1473)
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Swithinbank <swithinbank@gmail.com>
  • Loading branch information
thomasbnt and delucis authored Sep 12, 2022
1 parent d1dcc35 commit 7f946f4
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions src/i18n/fr/nav.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { NavDictionary } from '../translation-checkers';
/**
* Ceci configure la barre latérale de navigation.
* Toutes les autres langues suivent cet ordre/structure et reviendront à l'anglais pour toutes les entrées non traduites.
*/
import { NavDictionary } from '../translation-checkers';

export default NavDictionary({
export default NavDictionary({
// Start Here
startHere: 'Commencez ici',
'getting-started': 'Bien démarrer',
Expand All @@ -11,7 +15,7 @@ export default NavDictionary({
'comparing-astro-vs-other-tools': 'Astro vs. X',

// Core Concepts
coreConcepts: 'Concepts Principaux',
coreConcepts: 'Concepts Fondamentaux',
'concepts/why-astro': 'Pourquoi Astro ?',
'concepts/mpa-vs-spa': 'MPA vs. SPA',

Expand All @@ -21,32 +25,33 @@ export default NavDictionary({
'core-concepts/astro-components': 'Composants',
'core-concepts/astro-pages': 'Pages',
'core-concepts/layouts': 'Layouts',
'guides/markdown-content': 'Markdown',
'guides/markdown-content': 'Markdown et MDX',
'guides/imports': 'Fichiers Statiques',
'guides/troubleshooting': 'Dépannage',

// Features
features: 'Fonctionnalités',
'guides/configuring-astro': 'Configurer Astro',
'guides/styling': 'CSS et Styles',
'guides/styling': 'CSS et Style',
'guides/data-fetching': 'Récupération de Données',
'guides/deploy': 'Déployer',
'guides/environment-variables': "Variables d'Environnement",
'guides/aliases': "Alias d'Importation",
'guides/aliases': 'Alias dImportation',
'guides/integrations-guide': 'Intégrations',
'guides/rss': 'Flux RSS',
'guides/server-side-rendering': 'Rendu côté serveur (SSR)',
'guides/typescript': 'TypeScript',
'core-concepts/framework-components': 'Composants de Frameworks',

// Reference
// Référence
reference: 'Référence',
'reference/configuration-reference': 'Configuration',
'reference/cli-reference': 'Lignes de Commandes',
'reference/api-reference': 'API d\'Exécution',
'reference/integrations-reference': 'API d\'Intégration',
'reference/api-reference': "API d'Exécution",
'reference/integrations-reference': "API d'Intégration",
'reference/adapter-reference': 'API des adaptateurs (expérimental)',
'core-concepts/routing': 'Règles de Routage',
'reference/directives-reference': 'Utilisation des Directives',
'guides/publish-to-npm': 'Format de Packet NPM',
});

});

0 comments on commit 7f946f4

Please sign in to comment.