Changed word 'Godfather' to 'Family'

This commit is contained in:
Ailé
2021-11-05 21:01:19 +01:00
parent 6390c3320e
commit 707459acd6
2 changed files with 4 additions and 4 deletions

View File

@ -202,7 +202,7 @@ class UserTabsMixin(TabedViewMixin):
"core:user_godfathers", kwargs={"user_id": self.object.id}
),
"slug": "godfathers",
"name": _("Godfathers"),
"name": _("Family"),
}
)
tab_list.append(
@ -474,7 +474,7 @@ class UserGodfathersTreePictureView(CanViewMixin, DetailView):
if self.param == "godchildren":
self.graph.graph_attr["label"] = _("Godchildren")
elif self.param == "godfathers":
self.graph.graph_attr["label"] = _("Godfathers")
self.graph.graph_attr["label"] = _("Family")
else:
self.graph.graph_attr["label"] = _("Family")
img = self.graph.draw(format="png", prog="dot")