Pool number is not day number
This commit is contained in:
parent
afde1d35d5
commit
e21c3bb413
|
@ -386,7 +386,7 @@ class Pool(models.Model):
|
||||||
return reverse_lazy("participation:pool_detail", args=(self.pk,))
|
return reverse_lazy("participation:pool_detail", args=(self.pk,))
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return _("Pool {round} for tournament {tournament} with teams {teams}")\
|
return _("Pool of day {round} for tournament {tournament} with teams {teams}")\
|
||||||
.format(round=self.round,
|
.format(round=self.round,
|
||||||
tournament=str(self.tournament),
|
tournament=str(self.tournament),
|
||||||
teams=", ".join(participation.team.trigram for participation in self.participations.all()))
|
teams=", ".join(participation.team.trigram for participation in self.participations.all()))
|
||||||
|
|
|
@ -331,8 +331,8 @@ msgstr ""
|
||||||
|
|
||||||
#: apps/participation/models.py:389
|
#: apps/participation/models.py:389
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Pool {round} for tournament {tournament} with teams {teams}"
|
msgid "Pool of day {round} for tournament {tournament} with teams {teams}"
|
||||||
msgstr "Poule {round} du tournoi {tournament} avec les équipes {teams}"
|
msgstr "Poule du jour {round} du tournoi {tournament} avec les équipes {teams}"
|
||||||
|
|
||||||
#: apps/participation/models.py:395 apps/participation/models.py:403
|
#: apps/participation/models.py:395 apps/participation/models.py:403
|
||||||
msgid "pool"
|
msgid "pool"
|
||||||
|
|
Loading…
Reference in New Issue