Is there an out of the box way to format in python (or within django templates), a date with full month name in accordance to polish language rules?
I want to get:>
Use Babel:
>>> import babel.dates >>> import datetime >>> now = datetime.datetime.now() >>> print(babel.dates.format_date(now, 'd MMMM yyyy', locale='pl_PL')) 6 września 2010
Update: Incorporated Nathan Davis' comment.