Use variable placeholder instead of string concatenation

This commit is contained in:
James Graham
2023-09-30 10:54:07 +01:00
parent e8f40d98de
commit fe4230b5fd

View File

@@ -38,7 +38,7 @@ Kirigami.Dialog {
FormCard.FormCard { FormCard.FormCard {
Layout.topMargin: Kirigami.Units.largeSpacing Layout.topMargin: Kirigami.Units.largeSpacing
FormCard.FormTextDelegate { FormCard.FormTextDelegate {
text: i18n("The child ") + root.displayName + i18n(" will be removed from the space ") + root.parentDisplayName text: i18n("The child %1 will be removed from the space %2", root.displayName, root.parentDisplayName)
textItem.wrapMode: Text.Wrap textItem.wrapMode: Text.Wrap
} }
FormCard.FormCheckDelegate { FormCard.FormCheckDelegate {