iommirocks / iommi

Your first pick for a django power cord
http://iommi.rocks
BSD 3-Clause "New" or "Revised" License
688 stars 47 forks source link

table.py replace in translation #457

Closed berycz closed 9 months ago

berycz commented 11 months ago

gettext_lazy('Are you sure you want to delete these {} items?').format(queryset.count())

this would be better as

gettext_lazy('Are you sure you want to delete these {count} items?').format(count=queryset.count())

boxed commented 11 months ago

agreed