3 lines
140 B
Python
3 lines
140 B
Python
from django.utils.translation import gettext_lazy as _
|
|
|
|
TRANSACTION_TYPE_CHOICES = (("DEPOSIT", _("deposit")), ("WITHDRAW", _("withdraw")))
|