Added translations for friendships
This commit is contained in:
parent
319405d2b1
commit
40e7415062
3 changed files with 127 additions and 82 deletions
|
|
@ -24,7 +24,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||
{% render_table trusting %}
|
||||
</div>
|
||||
|
||||
<div class="alert alert-warning">
|
||||
<div class="alert alert-warning card">
|
||||
{% blocktrans trimmed %}
|
||||
Adding someone as a friend enables them to initiate transactions coming
|
||||
from your account (while keeping your balance positive). This is
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue