summaryrefslogtreecommitdiffstats
path: root/askbot/const
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-05-07 16:31:15 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-05-07 16:31:15 -0400
commitf7d0836fef60e876be23cb15747865aadfe27379 (patch)
tree87f6238b6d27eeffff72f3921808e58fdec918a0 /askbot/const
parent0c46a9b987373e5a791cf1c5bd731a682aa652c6 (diff)
downloadaskbot-f7d0836fef60e876be23cb15747865aadfe27379.tar.gz
askbot-f7d0836fef60e876be23cb15747865aadfe27379.tar.bz2
askbot-f7d0836fef60e876be23cb15747865aadfe27379.zip
added a possibility to have independent set of "subscribed" tags in addition to "favorite/ignored"
Diffstat (limited to 'askbot/const')
-rw-r--r--askbot/const/__init__.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/askbot/const/__init__.py b/askbot/const/__init__.py
index 305239f5..7eef91d1 100644
--- a/askbot/const/__init__.py
+++ b/askbot/const/__init__.py
@@ -249,10 +249,15 @@ POST_STATUS = {
INCLUDE_ALL = 0
EXCLUDE_IGNORED = 1
INCLUDE_INTERESTING = 2
-TAG_FILTER_STRATEGY_CHOICES = (
- (INCLUDE_ALL, _('off')),
- (EXCLUDE_IGNORED, _('exclude ignored')),
- (INCLUDE_INTERESTING, _('only selected')),
+TAG_DISPLAY_FILTER_STRATEGY_CHOICES = (
+ (INCLUDE_ALL, _('show all tags')),
+ (EXCLUDE_IGNORED, _('exclude ignored tags')),
+ (INCLUDE_INTERESTING, _('only interesting tags')),
+)
+TAG_EMAIL_FILTER_STRATEGY_CHOICES = (
+ (INCLUDE_ALL, _('email for all tags')),
+ (EXCLUDE_IGNORED, _('exclude ignored tags')),
+ (INCLUDE_INTERESTING, _('only subscribed tags')),
)
NOTIFICATION_DELIVERY_SCHEDULE_CHOICES = (