Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add missing i18n lookups #269

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/rest_framework_api_key/apps.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _


class RestFrameworkApiKeyConfig(AppConfig):
name = "rest_framework_api_key"
verbose_name = "API Key Permissions"
verbose_name = _("API Key Permissions")
11 changes: 6 additions & 5 deletions src/rest_framework_api_key/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ class AbstractAPIKey(models.Model):
objects = APIKeyManager()

id = models.CharField(max_length=150, unique=True, primary_key=True, editable=False)
prefix = models.CharField(max_length=8, unique=True, editable=False)
prefix = models.CharField(max_length=8, unique=True, editable=False, verbose_name=_("Prefix"))
hashed_key = models.CharField(max_length=150, editable=False)
created = models.DateTimeField(auto_now_add=True, db_index=True)
created = models.DateTimeField(auto_now_add=True, db_index=True, verbose_name=_("Created"))
name = models.CharField(
max_length=50,
blank=False,
Expand All @@ -93,6 +93,7 @@ class AbstractAPIKey(models.Model):
revoked = models.BooleanField(
blank=True,
default=False,
verbose_name=_("Revoked"),
help_text=(
_(
"If the API key is revoked, clients cannot use it anymore. "
Expand All @@ -110,8 +111,8 @@ class AbstractAPIKey(models.Model):
class Meta: # noqa
abstract = True
ordering = ("-created",)
verbose_name = "API key"
verbose_name_plural = "API keys"
verbose_name = _("API key")
verbose_name_plural = _("API keys")

def __init__(self, *args: typing.Any, **kwargs: typing.Any):
super().__init__(*args, **kwargs)
Expand All @@ -123,7 +124,7 @@ def _has_expired(self) -> bool:
return False
return self.expiry_date < timezone.now()

_has_expired.short_description = "Has expired" # type: ignore
_has_expired.short_description = _("Has expired") # type: ignore
_has_expired.boolean = True # type: ignore
has_expired = property(_has_expired)

Expand Down
Loading