Раньше я использовал DRF (django -rest-framework) , а также locale
(django перевод) . Но проблема в том, что я не могу изменить сообщение "You do not have permission to perform this action."
на другой язык, например: id
.
Кстати, язык перевода из rest_auth
и мое собственное приложение работает хорошо.
And this is my languange settings.py
LANGUAGES = (
('id', 'Indonesia'),
('en', 'English')
)
DEFAULT_LANGUAGE = 1
LOCALE_PATHS = (
os.path.join(BASE_DIR, 'locale'),
os.path.join(BASE_DIR, 'locale/rest_auth'),
)
LANGUAGE_CODE = 'id'
USE_I18N = True
USE_L10N = True
The error message in decorators.py
and permissions.py
also was implemented. But the error message still doesn't change.
сообщение об ошибке