]> git.openstreetmap.org Git - osqa.git/blob - forum/settings/repgain.py
Merge pull request #2 from udacity/update_django
[osqa.git] / forum / settings / repgain.py
1 from base import Setting, SettingSet
2 from django.utils.translation import ugettext_lazy as _
3
4 REP_GAIN_SET = SettingSet('repgain', _('Reputation gains and losses config'), _("Configure the reputation points a user may gain or lose upon certain actions."), 200)
5
6 INITIAL_REP = Setting('INITIAL_REP', 1, REP_GAIN_SET, dict(
7 label = _("Initial reputation"),
8 help_text = _("The initial reputation an user gets when he first signs in.")))
9
10 MAX_REP_BY_UPVOTE_DAY = Setting('MAX_REP_BY_UPVOTE_DAY', 200, REP_GAIN_SET, dict(
11 label = "Max rep by up votes / day",
12 help_text = _("Maximum reputation a user can gain in one day for being upvoted.")))
13
14 REP_GAIN_BY_EMAIL_VALIDATION = Setting('REP_GAIN_BY_EMAIL_VALIDATION', 10, REP_GAIN_SET, dict(
15 label = _("Rep gain by e-mail validation"),
16 help_text = _("Reputation a user gains for validating his e-mail.")))
17
18 REP_GAIN_BY_UPVOTED = Setting('REP_GAIN_BY_UPVOTED', 10, REP_GAIN_SET, dict(
19 label = _("Rep gain by upvoted"),
20 help_text = _("Reputation a user gains for having one of his posts up voted.")))
21
22 REP_LOST_BY_DOWNVOTED = Setting('REP_LOST_BY_DOWNVOTED', 2, REP_GAIN_SET, dict(
23 label = _("Rep lost by downvoted"),
24 help_text = _("Reputation a user loses for having one of his posts down voted.")))
25
26 REP_LOST_BY_DOWNVOTING = Setting('REP_LOST_BY_DOWNVOTING', 1, REP_GAIN_SET, dict(
27 label = _("Rep lost by downvoting"),
28 help_text = _("Reputation a user loses for down voting a post.")))
29
30
31 REP_GAIN_BY_ACCEPTED = Setting('REP_GAIN_BY_ACCEPTED', 15, REP_GAIN_SET, dict(
32 label = _("Rep gain by accepted answer"),
33 help_text = _("Reputation a user gains for having one of his answers accepted.")))
34
35 REP_GAIN_BY_ACCEPTING = Setting('REP_GAIN_BY_ACCEPTING', 2, REP_GAIN_SET, dict(
36 label = _("Rep gain by accepting answer"),
37 help_text = _("Reputation a user gains for accepting an answer to one of his questions.")))
38
39 REP_LOST_BY_FLAGGED = Setting('REP_LOST_BY_FLAGGED', 2, REP_GAIN_SET, dict(
40 label = _("Rep lost by post flagged"),
41 help_text = _("Reputation a user loses by having one of his posts flagged.")))
42
43 REP_LOST_BY_FLAGGED_3_TIMES = Setting('REP_LOST_BY_FLAGGED_3_TIMES', 30, REP_GAIN_SET, dict(
44 label = _("Rep lost by post flagged and hidden"),
45 help_text = _("Reputation a user loses by having the last revision of one of his posts flagged the enough number of times to hide the post.")))
46
47 REP_LOST_BY_FLAGGED_5_TIMES = Setting('REP_LOST_BY_FLAGGED_5_TIMES', 100, REP_GAIN_SET, dict(
48 label = _("Rep lost by post flagged and deleted"),
49 help_text = _("Reputation a user loses by having the last revision of one of his posts flagged the enough number of times to delete the post.")))