diff --git a/app/settings/settingsdialog/layoutscontroller.cpp b/app/settings/settingsdialog/layoutscontroller.cpp
index 1077b7386..c6cbc89c9 100644
--- a/app/settings/settingsdialog/layoutscontroller.cpp
+++ b/app/settings/settingsdialog/layoutscontroller.cpp
@@ -536,8 +536,8 @@ void Layouts::initialMessageForErroredLayouts(const int &count)
m_handler->showInlineMessage(i18ncp("settings:counted layout with errors",
"Error: There is 1 layout that has reported errors.",
- "Error: There are %1 layouts that have reported errors.",
- count),
+ "Error: There are %0 layouts that have reported errors.",
+ count).arg(count),
KMessageWidget::Error);
}
@@ -549,8 +549,8 @@ void Layouts::initialMessageForWarningLayouts(const int &count)
m_handler->showInlineMessage(i18ncp("settings:counted layout with warnings",
"Warning: There is 1 layout that has reported warnings.",
- "Warning: There are %1 layouts that have reported warnings.",
- count),
+ "Warning: There are %0 layouts that have reported warnings.",
+ count).arg(count),
KMessageWidget::Warning);
}