如何翻译 humanize django
How translate humanize django
我需要将 humanize 翻译成葡萄牙语 (pt-BR)。怎么样?
导入:
from django.contrib.humanize.templatetags.humanize import naturaltime
使用:
_question['pub_date'] = naturaltime(question.pub_date)
设置:
LANGUAGE_CODE = 'pt-BR'
TIME_ZONE = 'America/Sao_Paulo'
USE_I18N = True
USE_L10N = True
USE_TZ = True
在我的模板中显示:
2 hours ago
我只需要在模板中设置人性化即可。
<span>{{question.pub_date|naturaltime}}</span>
您也需要添加已安装的应用程序
'django.contrib.humanize',
我需要将 humanize 翻译成葡萄牙语 (pt-BR)。怎么样?
导入:
from django.contrib.humanize.templatetags.humanize import naturaltime
使用:
_question['pub_date'] = naturaltime(question.pub_date)
设置:
LANGUAGE_CODE = 'pt-BR'
TIME_ZONE = 'America/Sao_Paulo'
USE_I18N = True
USE_L10N = True
USE_TZ = True
在我的模板中显示:
2 hours ago
我只需要在模板中设置人性化即可。
<span>{{question.pub_date|naturaltime}}</span>
您也需要添加已安装的应用程序
'django.contrib.humanize',