diff --git a/accounts/models.py b/accounts/models.py index 759455c..2510d7d 100644 --- a/accounts/models.py +++ b/accounts/models.py @@ -30,7 +30,7 @@ class UserAttributes(models.Model): user = models.OneToOneField(User, on_delete=models.CASCADE) can_clone_instances = models.BooleanField(default=True) max_instances = models.IntegerField(default=2, - help_text="-1 for unlimited. Any integer value", + help_text=_("-1 for unlimited. Any integer value"), validators=[ MinValueValidator(-1), ]) diff --git a/accounts/templates/accounts-list.html b/accounts/templates/accounts-list.html index 9c77911..f34afd8 100644 --- a/accounts/templates/accounts-list.html +++ b/accounts/templates/accounts-list.html @@ -8,7 +8,7 @@