diff --git a/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml b/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml
index 1a54dc27db..10f006538b 100644
--- a/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml
+++ b/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml
@@ -51,7 +51,7 @@ Item
target: warning
text: {
var profile_name = Cura.MachineManager.activeQualityChangesGroup.name
- return "%1 %2".arg(profile_name).arg(catalog.i18nc("@info", "custom profile is active and you overwrote some settings."))
+ return catalog.i18nc("@info, %1 is the name of the custom profile", "%1 custom profile is active and you overwrote some settings.").arg(profile_name)
}
}
@@ -65,7 +65,7 @@ Item
target: warning
text: {
var profile_name = Cura.MachineManager.activeQualityChangesGroup.name
- return "%1 %2".arg(profile_name).arg(catalog.i18nc("@info", "custom profile is overriding some settings."))
+ return catalog.i18nc("@info, %1 is the name of the custom profile", "%1 custom profile is overriding some settings.").arg(profile_name)
}
}
},