From 350bd214e13a8c3e8940d2e799c2297a76d65c64 Mon Sep 17 00:00:00 2001 From: crowdin Date: Tue, 27 Aug 2024 10:09:31 +0000 Subject: [PATCH] New translations index.mdx (French) [ci skip] --- docs/src/content/docs/fr/plugins/index.mdx | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/docs/src/content/docs/fr/plugins/index.mdx b/docs/src/content/docs/fr/plugins/index.mdx index 75c2d44a..2f5fb33c 100644 --- a/docs/src/content/docs/fr/plugins/index.mdx +++ b/docs/src/content/docs/fr/plugins/index.mdx @@ -32,27 +32,20 @@ organisation or person who authored the plugin. * atlantis/ -### Plugin manifest (required) +### Manifeste du plugin (requis) -The plugin manifest is a JSON file containing the plugin's metadata and -declarations. +Le manifeste du plugin est un fichier JSON contenant les métadonnées et les déclarations du plugin. -This file will determine whether a plugin is valid or not. The minimal required -data being: +Ce fichier détermine si un plugin est valide ou non. Voici les données minimales requises : ```json -// manifest.json -{ - "name": "acme/hello-world", - "version": "1.0.0" -} ``` Checkout the [manifest.json reference](./manifest). -### Plugin class (required) +### Classe Plugin (requis) -This is where the plugin's logic lives. +C'est ici que vit la logique du plugin. The Plugin class extends Castopod's BasePlugin class and implements one or more [Hooks](./hooks) (methods) intended to be run throughout Castopod's codebase.