Rename spam threshold to spam tolerance

This commit is contained in:
kaiyou
2017-11-05 17:17:51 +01:00
parent baf3b7d276
commit f5ee77519e
7 changed files with 53 additions and 39 deletions

View File

@@ -77,7 +77,7 @@ class UserForm(flask_wtf.FlaskForm):
class UserSettingsForm(flask_wtf.FlaskForm):
displayed_name = fields.StringField(_('Displayed name'))
spam_enabled = fields.BooleanField(_('Enable spam filter'))
spam_threshold = fields_.IntegerSliderField(_('Spam filter threshold'))
spam_threshold = fields_.IntegerSliderField(_('Spam filter tolerance'))
submit = fields.SubmitField(_('Save settings'))