英文:
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
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论