aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qmljs/qmljsstaticanalysismessage.cpp
diff options
context:
space:
mode:
authorLeena Miettinen <[email protected]>2014-11-03 15:47:39 +0100
committerLeena Miettinen <[email protected]>2014-11-05 10:40:15 +0100
commitb93ba85c58855bfa2d5b3c1d261413ac585fcd21 (patch)
tree963f77551813058fb09cf71d740dd45cd1ceae08 /src/libs/qmljs/qmljsstaticanalysismessage.cpp
parentc456968b076654f1d3605e8d1f2f5d156ec831c5 (diff)
Doc: new QML code syntax check messages
Edit the new messages and add them to the Qt Creator Manual. Change-Id: Ib494fd20861473ea824dd0d4260cad621c4081a4 Reviewed-by: Tim Jenssen <[email protected]> Reviewed-by: Thomas Hartmann <[email protected]>
Diffstat (limited to 'src/libs/qmljs/qmljsstaticanalysismessage.cpp')
-rw-r--r--src/libs/qmljs/qmljsstaticanalysismessage.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/libs/qmljs/qmljsstaticanalysismessage.cpp b/src/libs/qmljs/qmljsstaticanalysismessage.cpp
index dd8c4098dd3..01a09a00b2f 100644
--- a/src/libs/qmljs/qmljsstaticanalysismessage.cpp
+++ b/src/libs/qmljs/qmljsstaticanalysismessage.cpp
@@ -225,19 +225,19 @@ StaticAnalysisMessages::StaticAnalysisMessages()
newMsg(ErrUnsupportedRootTypeInVisualDesigner, Error,
tr("This type (%1) is not supported as a root element by Qt Quick Designer."), 1);
newMsg(ErrUnsupportedRootTypeInQmlUi, Error,
- tr("This type (%1) is not supported as a root element of a Qt Quick ui file."), 1);
+ tr("This type (%1) is not supported as a root element of a Qt Quick UI form."), 1);
newMsg(ErrUnsupportedTypeInQmlUi, Error,
- tr("This type (%1) is not supported in a Qt Quick ui file."), 1);
+ tr("This type (%1) is not supported in a Qt Quick UI form."), 1);
newMsg(ErrFunctionsNotSupportedInQmlUi, Error,
- tr("Functions are not supported in a Qt Quick ui file."));
+ tr("Functions are not supported in a Qt Quick UI form."));
newMsg(ErrBlocksNotSupportedInQmlUi, Error,
- tr("Java Script blocks are not supported in a Qt Quick ui file."));
+ tr("Java Script blocks are not supported in a Qt Quick UI form."));
newMsg(ErrBehavioursNotSupportedInQmlUi, Error,
- tr("Behaviours are not supported in a Qt Quick ui file."));
+ tr("Behavior type is not supported in a Qt Quick UI form."));
newMsg(ErrStatesOnlyInRootItemInQmlUi, Error,
- tr("States are only supported in the root item in a Qt Quick ui file."));
+ tr("States are only supported in the root item in a Qt Quick UI form."));
newMsg(ErrReferenceToParentItemNotSupportedInQmlUi, Error,
- tr("Referencing the parent of the root item is not supported in a Qt Quick ui file."));
+ tr("Referencing the parent of the root item is not supported in a Qt Quick UI form."));
}
} // anonymous namespace