diff options
Diffstat (limited to 'forum/const.py')
-rw-r--r-- | forum/const.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/forum/const.py b/forum/const.py index 76fd4a24..ce81acb2 100644 --- a/forum/const.py +++ b/forum/const.py @@ -75,10 +75,10 @@ TYPE_ACTIVITY = ( ) TYPE_RESPONSE = { - 'QUESTION_ANSWERED' : 'question_answered', - 'QUESTION_COMMENTED': 'question_commented', - 'ANSWER_COMMENTED' : 'answer_commented', - 'ANSWER_ACCEPTED' : 'answer_accepted', + 'QUESTION_ANSWERED' : _('question_answered'), + 'QUESTION_COMMENTED': _('question_commented'), + 'ANSWER_COMMENTED' : _('answer_commented'), + 'ANSWER_ACCEPTED' : _('answer_accepted'), } CONST = { |