QString QDate::shortMonthName(int month){ if (month < 1 || month > 12) { qWarning("QDate::shortMonthName: Parameter out ouf range"); month = 1; } return QLocale::system().monthName(month, QLocale::ShortFormat);}
QLocale eng=QLocale(QLocale::English);QDateTime dt = QDateTime::currentDateTime();... eng.monthName(dt.date().month(), QLocale::ShortFormat ) ...