We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When sending requests to the "auth/jwt/create" endpoint, the message "No active account found with the given credentials" is not translated:
{ "detail": "No active account found with the given credentials" }
But the message about the missing field is translated correctly:
{ "email": [ "Este campo es requerido." ] }
I checked for the "es" and "ru" locales.
Django==4.2.3 djangorestframework==3.14.0 djangorestframework-simplejwt==5.2.2
INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', ... ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'corsheaders.middleware.CorsMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'django.middleware.locale.LocaleMiddleware', ] LANGUAGE_CODE = 'es'
The text was updated successfully, but these errors were encountered:
:(
Possibly need locales to be updated. Just merged an auto locale script fixer thanks to some amazing helpers. Will get back to this soon.
Sorry, something went wrong.
No branches or pull requests
When sending requests to the "auth/jwt/create" endpoint, the message "No active account found with the given credentials" is not translated:
But the message about the missing field is translated correctly:
I checked for the "es" and "ru" locales.
The text was updated successfully, but these errors were encountered: