I use matplotlib.dates.DateFormatter('%b') to display months names, hoping see them in my mother language.
But my code displays them in English.
Thus after searching, I've found the code
locale.set_locale(locale.LC_ALL, 'fr_FR')
print locale.nl_langinfo(locale.LC_MON1)
But that does not give me the hoped French "janvier" instead of the English "January"...
Thanks to help me