add translation support for pi command
This commit is contained in:
parent
c1241e3734
commit
22c7a61342
@ -1,4 +1,5 @@
|
||||
import os
|
||||
import traductions as tr
|
||||
|
||||
|
||||
class MainClass:
|
||||
@ -14,11 +15,12 @@ class MainClass:
|
||||
try:
|
||||
start = int(args[0])
|
||||
except ValueError:
|
||||
await msg.channel.send("Vous devez spwcifier un nombre imferieur a 100000")
|
||||
await msg.channel.send(tr.tr[self.guild.config["lang"]]["Errors"]["TooBigNumberPiError"])
|
||||
with open(self.pi_file) as pi_file:
|
||||
pi_file.read(start)
|
||||
txt = pi_file.read(1900)
|
||||
await msg.channel.send("3."+txt)
|
||||
txt = pi_file.read(2000)
|
||||
await msg.channel.send(tr.tr[self.guild.config["lang"]]["modules"]["pi"]["pi"].format(debut=start))
|
||||
await msg.channel.send(txt)
|
||||
|
||||
async def pi_search(self, msg, command, args):
|
||||
pass
|
||||
|
@ -106,6 +106,19 @@ tr = {
|
||||
},
|
||||
},
|
||||
},
|
||||
"pi": {
|
||||
"description": "Commandes relatives au nombre pi",
|
||||
"help": {
|
||||
"pi": {
|
||||
"description": "Donne 2000 décimales de pi.",
|
||||
"examples": [
|
||||
("`(prefix}pi`", "Affiche les 2000 premières décimales de pi."),
|
||||
("`{prefix}pi 2000`", "Affiche 2000 décimales de pi à partir de la 2000ème"),
|
||||
],
|
||||
},
|
||||
},
|
||||
"pi": "Voici les 2000 décimales de pi que vous avez demandé (à partir de la {debut}ème):",
|
||||
},
|
||||
},
|
||||
"errors": {
|
||||
"LangNotFoundError": "La langue {lang} est introuvable, tapez {prefix}list_lang pour voir les langues "
|
||||
@ -132,7 +145,8 @@ tr = {
|
||||
"NotEnoughParamError": "Il manque un ou plusieurs parametres à la commande.",
|
||||
"NoMentionsError": "Vous devez mentioner un utilisateur pour le rajouter à la liste des administrateurs "
|
||||
"du bot.",
|
||||
"CommandNotFoundError": "La commande {command} n'existe pas."
|
||||
"CommandNotFoundError": "La commande {command} n'existe pas.",
|
||||
"TooBigNumberPiError": "Vous devez spécifier un nombre inferieur a 10000.",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user