Remove unused license preamble
[mygpo.git] / mygpo / api / constants.py
blob291a431acc385cf2a0c92b7878fd39d71aa192ac
1 # Set _ to no-op, because we just want to mark the strings as
2 # translatable and will use gettext on these strings later on
4 from django.utils.translation import ugettext_lazy as _
7 EPISODE_ACTION_TYPES = (
8 ('download', _('downloaded')),
9 ('play', _('played')),
10 ('delete', _('deleted')),
11 ('new', _('marked as new')),
12 ('flattr', _('flattr\'d')),
16 SUBSCRIBE_ACTION = 1
17 UNSUBSCRIBE_ACTION = -1
19 SUBSCRIPTION_ACTION_TYPES = (
20 (SUBSCRIBE_ACTION, _('subscribed')),
21 (UNSUBSCRIBE_ACTION, _('unsubscribed')),