Added translations for friendships

This commit is contained in:
Nicolas Margulies 2022-04-08 19:39:14 +02:00 committed by Yohann D'ANELLO
parent 319405d2b1
commit 40e7415062
No known key found for this signature in database
GPG key ID: 3A75C55819C8CF85
3 changed files with 127 additions and 82 deletions

View file

@ -245,7 +245,7 @@ class Trust(models.Model):
unique_together = ("trusting", "trusted")
def __str__(self):
return _("Friendship between {trusting} and{trusted}").format(
return _("Friendship between {trusting} and {trusted}").format(
trusting=str(self.trusting), trusted=str(self.trusted))