diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml index a37302673acc0af5b00312a17ac37a49ccae109e..c6193a4deda150938534368e59478dd3662b05d4 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml @@ -96,12 +96,12 @@ Rectangle { anchors.left: parent.left anchors.right: parent.right - caption: qsTr("Visibilty") + caption: qsTr("Visibility") SectionLayout { rows: 2 Label { - text: qsTr("Visibilty") + text: qsTr("Visibility") } SecondColumnLayout { diff --git a/src/plugins/qmldesigner/components/componentcore/tabviewdesigneraction.cpp b/src/plugins/qmldesigner/components/componentcore/tabviewdesigneraction.cpp index 9a04a2cec3ef3beb67a993cc0fa4e02c50337491..82411e6b989765d38bd5ae89f3561c9e054899db 100644 --- a/src/plugins/qmldesigner/components/componentcore/tabviewdesigneraction.cpp +++ b/src/plugins/qmldesigner/components/componentcore/tabviewdesigneraction.cpp @@ -151,7 +151,7 @@ void TabViewDesignerAction::addNewTab() QString newFilePath = directoryPath +QLatin1String("/") + tabName + QLatin1String(".qml"); if (QFileInfo(newFilePath).exists()) { - QMessageBox::warning(Core::ICore::mainWindow(), tr("Name Error"), tr("Component already exists.")); + QMessageBox::warning(Core::ICore::mainWindow(), tr("Naming Error"), tr("Component already exists.")); } else { bool fileCreated = createFile(newFilePath); diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml index 4633c06fc34d8a924cae1f90c82d8bc8f461469d..f02154a92a9ad4dcfea343ea5cd0c96dd03024b9 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml @@ -135,7 +135,7 @@ Column { Label { text: qsTr("Focus on press") - toolTip: "Determines whether the check box gets focus if pressed." + toolTip: "Determines whether the button gets focus if pressed." } SecondColumnLayout { diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml index 7ec2cfd91dfb8cdb935138fcc03500e2a2dc8b22..6384c65e012578d43b3a9fc9951a31ba05271ec2 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml @@ -44,7 +44,7 @@ Column { Label { text: qsTr("Text") - toolTip: qsTr("The text shown on the check button") + toolTip: qsTr("The text shown on the check box") } SecondColumnLayout { @@ -59,7 +59,7 @@ Column { Label { text: qsTr("Checked") - toolTip: qsTr("The state of the check button") + toolTip: qsTr("The state of the check box") } SecondColumnLayout { @@ -75,7 +75,7 @@ Column { Label { text: qsTr("Focus on press") - toolTip: "Determines whether the check box gets focus if pressed." + toolTip: qsTr("Determines whether the check box gets focus if pressed.") } SecondColumnLayout { diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml index 9bd9a5c56cfc70a5178098444dba5141755e16cb..7c031333ee625511bfb132557510e4cf3ed87d92 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml @@ -58,7 +58,7 @@ Column { Label { text: qsTr("Text") - toolTip: qsTr("The text shown on the button") + toolTip: qsTr("The text shown on the text area") } SecondColumnLayout { @@ -73,7 +73,7 @@ Column { Label { text: qsTr("Read only") - toolTip: qsTr("Determines whether the text field is read only.") + toolTip: qsTr("Determines whether the text area is read only.") } SecondColumnLayout { diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml index 7bad9156255c115364274937221ab1a63c5f9245..4967a340210054f7e9d369cdb87ee7d5170a5874 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml @@ -44,7 +44,7 @@ Column { Label { text: qsTr("Text") - toolTip: qsTr("The text shown on the button") + toolTip: qsTr("The text shown on the text field") } SecondColumnLayout {