aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2024-03-22 08:30:29 +0100
committerFabian Kosmale <fabian.kosmale@qt.io>2024-03-27 00:41:52 +0100
commit1f160ba65d7a984e06ed86492f3ed39c48842e50 (patch)
tree576a2163473df677e1df70bb2672c97d0e0572b5 /src/qml/qml
parentb4962fd0ba705d0c5b5e185298bd6f663d6664dd (diff)
qqmlpropertyvalidator: Mark new warning as translatable
Change-Id: I51bb9ca1e8dab6768fc2e85b53a4a6a3aab3a56d Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> Reviewed-by: Sami Shalayel <sami.shalayel@qt.io>
Diffstat (limited to 'src/qml/qml')
-rw-r--r--src/qml/qml/qqmlpropertyvalidator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlpropertyvalidator.cpp b/src/qml/qml/qqmlpropertyvalidator.cpp
index 5ae3829c27..ff22c3043a 100644
--- a/src/qml/qml/qqmlpropertyvalidator.cpp
+++ b/src/qml/qml/qqmlpropertyvalidator.cpp
@@ -316,7 +316,7 @@ QVector<QQmlError> QQmlPropertyValidator::validateObject(
}
if (QMetaObjectPrivate::get(mo)->flags & DynamicMetaObject) {
return recordError(binding->location,
- QString::fromLatin1("Unsupported grouped property access: Property \"%1\" with type \"%2\" has a dynamic meta-object.")
+ tr("Unsupported grouped property access: Property \"%1\" with type \"%2\" has a dynamic meta-object.")
.arg(name, QString::fromUtf8(type.name()))
);
}