New translations index.mdx (French)

[ci skip]
This commit is contained in:
crowdin 2024-08-27 10:09:31 +00:00
parent 1d74a9df52
commit 350bd214e1

View File

@ -32,27 +32,20 @@ organisation or person who authored the plugin.
* atlantis/ * atlantis/
</FileTree> </FileTree>
### Plugin manifest (required) ### Manifeste du plugin (requis)
The plugin manifest is a JSON file containing the plugin's metadata and Le manifeste du plugin est un fichier JSON contenant les métadonnées et les déclarations du plugin.
declarations.
This file will determine whether a plugin is valid or not. The minimal required Ce fichier détermine si un plugin est valide ou non. Voici les données minimales requises :
data being:
```json ```json
// manifest.json
{
"name": "acme/hello-world",
"version": "1.0.0"
}
``` ```
Checkout the [manifest.json reference](./manifest). 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 The Plugin class extends Castopod's BasePlugin class and implements one or more
[Hooks](./hooks) (methods) intended to be run throughout Castopod's codebase. [Hooks](./hooks) (methods) intended to be run throughout Castopod's codebase.