Fix french translation

This commit is contained in:
Yohann D'ANELLO
2021-01-08 02:00:22 +01:00
parent 6c6a44fb18
commit 7aeb659cf5
4 changed files with 143 additions and 68 deletions

View File

@ -449,7 +449,7 @@ class FightingEntity(Entity):
string = " "
if diceroll <= self.critical: # It is a critical hit
damage *= 4
string = _(" It's a critical hit! ")
string = " " + _("It's a critical hit!") + " "
return _("{name} hits {opponent}.")\
.format(name=_(self.translated_name.capitalize()),
opponent=_(opponent.translated_name)) + string + \