I'm modifing a module to get the full month (translated) instead of Y/m/d:
old: new_date.strftime('%Y-%m-%d')
new: new_date.strftime('%B')
%B gives the full month in english, how can I translate the month in the current Odoo language setting using python code (not qweb)?