Changed dateformat 'M' to use MONTHS_3 instead of MONTHS, for better support of translations
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4226 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
d9ce900e13
commit
3f4d6a2dda
|
@ -11,7 +11,7 @@ Usage:
|
||||||
>>>
|
>>>
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from django.utils.dates import MONTHS, MONTHS_AP, WEEKDAYS
|
from django.utils.dates import MONTHS, MONTHS_3, MONTHS_AP, WEEKDAYS
|
||||||
from django.utils.tzinfo import LocalTimezone
|
from django.utils.tzinfo import LocalTimezone
|
||||||
from calendar import isleap, monthrange
|
from calendar import isleap, monthrange
|
||||||
import re, time
|
import re, time
|
||||||
|
@ -147,7 +147,7 @@ class DateFormat(TimeFormat):
|
||||||
|
|
||||||
def M(self):
|
def M(self):
|
||||||
"Month, textual, 3 letters; e.g. 'Jan'"
|
"Month, textual, 3 letters; e.g. 'Jan'"
|
||||||
return MONTHS[self.data.month][0:3]
|
return MONTHS_3[self.data.month].title()
|
||||||
|
|
||||||
def n(self):
|
def n(self):
|
||||||
"Month without leading zeros; i.e. '1' to '12'"
|
"Month without leading zeros; i.e. '1' to '12'"
|
||||||
|
|
Loading…
Reference in New Issue