The function QDate::toString(const QString &format)
allows to display the month name with MMM
(e.g. 'Jan' to 'Dec') or MMMM
(e.g. 'January' to 'December').
But this function uses the system locale from QLocale::system()
(source code).
What is the easiest way to display a QDate
with a month name, for a specific QLocale ?