1

我有这个永久链接定义:

@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})

网址如下所示:

/news/2012/oct/20/slug-title

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

这是我的设置:

LANGUAGE_CODE = 'nb'
USE_I18N = True
USE_L10N = True
4

0 回答 0