61 lines
1.8 KiB
Python
61 lines
1.8 KiB
Python
locales = ['fr', 'en']
|
|
texts = {
|
|
'fr': {
|
|
'install': "Installation des modules...",
|
|
|
|
'conf': "Configuration...",
|
|
|
|
'token': "Veuillez entrer le token",
|
|
'not_empty': "Cette valeur ne doit pas être vide",
|
|
|
|
'postgresql_username': "Veuillez entrer le nom d'utilisateur de postgresql",
|
|
'postgresql_password': "Veuillez entrer le mot de passe de postgresql",
|
|
'postgresql_dbname': "Veuillez entrer le nom de la base de donnée",
|
|
|
|
'logs': "Channel de logs (non obligatoire)",
|
|
|
|
'wh_id': "L'id du webhook pour le channel de logs",
|
|
'wh_token': "Le token du webhook pour le channel de logs",
|
|
|
|
'misc': 'Autre',
|
|
|
|
'activity': "Joue à ...",
|
|
|
|
'end': "Configuration terminée, vous pouvez à tout moment la rectifier en modifiant le fichier config.py",
|
|
|
|
'clean': "Nettoyage..."
|
|
},
|
|
|
|
'en': {
|
|
'install': "Installation of the modules....",
|
|
|
|
'conf': "Configuration...",
|
|
|
|
'token': "Please enter the token",
|
|
'not_empty': "This value must not be empty",
|
|
|
|
'postgresql_username': "Please enter the postgresql username",
|
|
'postgresql_password': "Please enter the postgresql password",
|
|
'postgresql_dbname': "Please enter the database name",
|
|
|
|
'logs': "Log channel (not required)",
|
|
|
|
'wh_id': "Webhook id for log channel",
|
|
'wh_token': "Webhook token for log channel",
|
|
|
|
'misc': 'Misc',
|
|
|
|
'activity': "Playing ...",
|
|
|
|
'end': "Configuration completed, you can fix it at any time by modifying the config.py file",
|
|
|
|
'clean': "Cleaning..."
|
|
},
|
|
|
|
'multiple': {
|
|
'lang': "Veuillez choisir une langue | Please choose a language "
|
|
"[fr/en]",
|
|
'not_empty': "Cette valeur ne doit pas être vide |"
|
|
" This value must not be empty"
|
|
}
|
|
}
|