10 lines
211 B
Python
10 lines
211 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
TIME_DELTA_UNIT_CHOICES = (
|
|
('days', _('Days')),
|
|
('hours', _('Hours')),
|
|
('minutes', _('Minutes')),
|
|
)
|