国际月份在django网址

时间:2012-11-20 13:17:33

标签: python django localization django-urls

我有这个永久链接def:

@models.permalink
def get_absolute_url(self):
        creation_date = timezone.localtime(self.start_publication)
        return ('entry_detail', (), {
            'year': creation_date.strftime('%Y'),
            'month': creation_date.strftime('%b').lower(),
            'day': creation_date.strftime('%d'),
            'slug': self.slug})

网址如下:

/消息/ 2012 /辛/ 20 /嵌块式标题

oct是英文,而不是我当地指定的语言。我怎样才能得到“okt”而不是“oct”?

以下是我的设置:

LANGUAGE_CODE = 'nb'
USE_I18N = True
USE_L10N = True

0 个答案:

没有答案