Skip to content

Commit

Permalink
Fixed empty msgid warning. (#1397)
Browse files Browse the repository at this point in the history
Co-authored-by: Carlton Gibson <carlton@noumenal.es>
  • Loading branch information
sarathak and carltongibson committed Aug 29, 2021
1 parent 10bd30e commit c290074
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions django_filters/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
'second': _('second'),

# standard lookups
'exact': _(''),
'iexact': _(''),
'exact': '',
'iexact': '',
'contains': _('contains'),
'icontains': _('contains'),
'in': _('is in'),
Expand All @@ -40,7 +40,7 @@
'endswith': _('ends with'),
'iendswith': _('ends with'),
'range': _('is in range'),
'isnull': _(''),
'isnull': _('is null'),
'regex': _('matches regex'),
'iregex': _('matches regex'),
'search': _('search'),
Expand Down

0 comments on commit c290074

Please sign in to comment.