feat: add option for the default lang (#34)

Reviewed-on: https://git.kennel.ml/ConfrerieDuKassoulait/Botanique/pulls/34
This commit is contained in:
Anri 2022-07-24 13:03:55 +02:00
parent f3fffc258a
commit 812c40bb88
2 changed files with 6 additions and 5 deletions

View file

@ -32,14 +32,15 @@ services:
``` ```
## Variables d'environnements ## Variables d'environnements
| Nom | Commentaire | Valeur par défaut | Nom | Description | Par défaut | Commentaire
| :-----------: | :-----------: | :-: | :-----------: | :--------------: | :--------: | :-:
| TOKEN_DISCORD | Token Discord | Aucune | TOKEN_DISCORD | Token Discord | Aucune |
| DEFAULT_LANG | Langue par défaut | `fr` | Expérimental, si la langue par défaut n'est pas complète (càd 100%), le bot pourrait ne pas fonctionner correctement.<br>Liste des traductions disponibles [ici](./src/locales/).
# Contribuer # Contribuer
Toute contribution est la bienvenue ! Toute contribution est la bienvenue !
Pour commencer le développement, lis le [fichier de contribution](./CONTRIBUTING.md). Pour commencer, lis le [fichier de contribution](./CONTRIBUTING.md).
# Licence # Licence
Voir le [fichier LICENCE](./LICENCE). Voir le [fichier LICENCE](./LICENCE).

View file

@ -39,7 +39,7 @@ export default async () => {
client.config = { client.config = {
version: JSON.parse(readFileSync('./package.json').toString()).version, version: JSON.parse(readFileSync('./package.json').toString()).version,
token_discord: process.env.TOKEN_DISCORD, token_discord: process.env.TOKEN_DISCORD,
default_lang: 'fr', default_lang: process.env.DEFAULT_LANG ?? 'fr',
}; };
client.commands = new Collection(); client.commands = new Collection();