fnp
/
audio.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
17f4e78d25a334f57424b509fd40665c28b3f2fc
[audio.git]
/
apps
/
archive
/
constants.py
1
from django.utils.translation import ugettext_lazy as _
2
3
class status:
4
WAITING = 1
5
ENCODING = 2
6
TAGGING = 3
7
SENDING = 4
8
9
choices = [
10
(WAITING, _('Waiting')),
11
(ENCODING, _('Encoding')),
12
(TAGGING, _('Tagging')),
13
(SENDING, _('Sending')),
14
]