1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-07-07 07:54:02 +02:00

Added translations for friendships

This commit is contained in:
Nicolas Margulies
2022-04-08 19:39:14 +02:00
parent 471cbf970b
commit 7f22955298
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))