update algorithms readable labels

This commit is contained in:
Corban-Lee Jones 2024-07-10 21:09:37 +01:00
parent 83933a8131
commit ae940c2836

View File

@ -130,12 +130,12 @@ class Filter(models.Model):
MATCH_AUTO = 6
MATCHING_ALGORITHMS = (
# (MATCH_NONE, _("None")),
(MATCH_ANY, _("Any word")),
(MATCH_ALL, _("All words")),
(MATCH_LITERAL, _("Exact match")),
(MATCH_REGEX, _("Regular expression")),
(MATCH_FUZZY, _("Fuzzy word")),
(MATCH_NONE, _("None")),
(MATCH_ANY, _("Any: Item contains any of these words (space separated)")),
(MATCH_ALL, _("All: Item contains all of these words (space separated)")),
(MATCH_LITERAL, _("Exact: Item contains this string")),
(MATCH_REGEX, _("Regular expression: Item matches this regex")),
(MATCH_FUZZY, _("Fuzzy: Item contains a word similar to this word")),
# (MATCH_AUTO, _("Automatic")),
)
@ -228,7 +228,7 @@ class Subscription(models.Model):
blank=True
)
published_threshold = models.DateField(default=timezone.now, blank=True)
published_threshold = models.DateTimeField(default=timezone.now, blank=True)
article_fetch_image = models.BooleanField(
default=True,