diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml index d392ecf4d84..a0dab3962df 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml @@ -17,7 +17,7 @@ Column { SectionLayout { PropertyLabel { text: qsTr("Value 1") - tooltip: qsTr("The value of the first range slider handle.") + tooltip: qsTr("Sets the value of the first range slider handle.") } SecondColumnLayout { @@ -38,7 +38,7 @@ Column { implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth backendValue: backendValues.live - tooltip: qsTr("Whether the range slider provides live value updates.") + tooltip: qsTr("Toggles if the range slider provides live value updates.") } ExpandingSpacer {} @@ -47,7 +47,7 @@ Column { PropertyLabel { text: qsTr("Value 2") - tooltip: qsTr("The value of the second range slider handle.") + tooltip: qsTr("Sets the value of the second range slider handle.") } SecondColumnLayout { @@ -66,7 +66,7 @@ Column { PropertyLabel { text: qsTr("From") - tooltip: qsTr("The starting value of the range slider range.") + tooltip: qsTr("Sets the minimum value of the range slider.") } SecondColumnLayout { @@ -85,7 +85,7 @@ Column { PropertyLabel { text: qsTr("To") - tooltip: qsTr("The ending value of the range slider range.") + tooltip: qsTr("Sets the maximum value of the range slider.") } SecondColumnLayout { @@ -104,7 +104,8 @@ Column { PropertyLabel { text: qsTr("Step size") - tooltip: qsTr("The step size of the range slider.") + tooltip: qsTr("Sets the interval between the steps.\n" + + "This functions if Snap mode is selected.") } SecondColumnLayout { @@ -123,7 +124,7 @@ Column { PropertyLabel { text: qsTr("Drag threshold") - tooltip: qsTr("The threshold (in logical pixels) at which a drag event will be initiated.") + tooltip: qsTr("Sets the threshold at which a drag event begins.") } SecondColumnLayout { @@ -141,7 +142,8 @@ Column { PropertyLabel { text: qsTr("Snap mode") - tooltip: qsTr("The snap mode of the range slider.") + tooltip: qsTr("Sets how the slider handles snaps to the steps\n" + + "defined in step size.") } SecondColumnLayout { @@ -159,7 +161,7 @@ Column { PropertyLabel { text: qsTr("Orientation") - tooltip: qsTr("The orientation of the range slider.") + tooltip: qsTr("Sets the orientation of the range slider.") } SecondColumnLayout {