如何翻译简单JWT错误(Django REST框架)?

huangapple go评论59阅读模式
英文:

How to translate simplejwt error (django rest framework)?

问题

"找不到具有提供的凭据的活动帐户" 这个错误的最佳翻译方式是:

"找不到具有提供的凭据的活动帐户"

我在前端使用React,在后端使用Django和Django Rest Framework。我已经更改了Django的设置:

LANGUAGE_CODE = 'pl'

但显然这并没有改变simplejwt错误的语言。

英文:

What is the best way to translate the error:
"No active account found with the given credentials" coming from:

from rest_framework_simplejwt.views import TokenObtainPairView
...
urlpatterns = [
    path('token/', TokenObtainPairView.as_view()),

I use React on the frontend and Django and Django Rest Framework on the backend.
I changed django settings to:
LANGUAGE_CODE = 'pl'
but this apparently didn't change the simplejwt error language.

答案1

得分: 1

如果其他人也有这个问题,这里是答案:

按照Simple JWT文档中的说明,将rest_framework_simplejwt添加到已安装的应用程序中:

> 如果您希望使用本地化/翻译,请只需将rest_framework_simplejwt添加到INSTALLED_APPS中。

英文:

In case others also have this question, here is the answer:

Add rest_framework_simplejwt to the installed apps as described in the Simple JWT documentation:

> If you wish to use localizations/translations, simply add rest_framework_simplejwt to INSTALLED_APPS.

huangapple
  • 本文由 发表于 2023年7月13日 23:05:03
  • 转载请务必保留本文链接:https://go.coder-hub.com/76680884.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定