diff --git a/src/widgets/navigatorbar.cpp b/src/widgets/navigatorbar.cpp --- a/src/widgets/navigatorbar.cpp +++ b/src/widgets/navigatorbar.cpp @@ -129,7 +129,7 @@ // set the label text at the top of the navigator mMonth->setText(i18nc("monthname", "%1", - QLocale().monthName(mDate.month(), QLocale::LongFormat))); + QLocale().standaloneMonthName(mDate.month(), QLocale::LongFormat))); mYear->setText(i18nc("4 digit year", "%1", QLocale().toString(mDate, QLatin1String("yyyy")))); } @@ -146,7 +146,7 @@ QAction *activateAction = nullptr; act.reserve(months); for (int i = 1; i <= months; ++i) { - QAction *monthAction = menu->addAction(QLocale().monthName(i, QLocale::LongFormat)); + QAction *monthAction = menu->addAction(QLocale().standaloneMonthName(i, QLocale::LongFormat)); act.append(monthAction); if (i == month) { activateAction = monthAction;