tuxbot-bot/first_run/langs.py

42 lines
1.4 KiB
Python

locales = ['fr', 'en']
texts = {
'fr': {
'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",
'misc': 'Autre',
'activity': "Joue à ...",
'prefix': "Prefixe (par defaut : @tuxbot)",
"end": "Configuration terminée, vous pouvez à tout moment la rectifier en modifiant le fichier config.py"
},
'en': {
'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",
'misc': 'Misc',
'activity': "Playing ...",
'prefix': "Prefix (default is @tuxbot)",
"end": "Configuration completed, you can fix it at any time by modifying the config.py file"
},
'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"
}
}