summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2023-02-23 13:18:08 +0100
committerThomas Hartmann <thomas.hartmann@qt.io>2023-02-23 13:08:40 +0000
commit542754a4ffb69e360b8602cfd0d9306a22e2c459 (patch)
treecdc68341241f48fe6f09c81ab3ae4e40abea7301
parent00e1a73c8a582eee06c56d14cd76b5d39abd2741 (diff)
downloadqt-creator-542754a4ffb69e360b8602cfd0d9306a22e2c459.tar.gz
Latest tooltips updates
Change-Id: If970dd2da0130bc0181a656a075b9e71cd0bf0d7 Reviewed-by: Pranta Ghosh Dastider <pranta.dastider@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ComboBoxSpecifics.qml10
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ContainerSection.qml2
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml15
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/GroupBoxSpecifics.qml2
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageIndicatorSpecifics.qml6
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageSpecifics.qml5
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSection.qml3
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ProgressBarSpecifics.qml10
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml20
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml2
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ScrollViewSpecifics.qml6
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml13
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeViewSpecifics.qml4
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabBarSpecifics.qml5
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolSeparatorSpecifics.qml2
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml7
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridViewSpecifics.qml14
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayerSection.qml23
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml24
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml13
20 files changed, 110 insertions, 76 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ComboBoxSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ComboBoxSpecifics.qml
index 45abf4bea9..ccda29a02c 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ComboBoxSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ComboBoxSpecifics.qml
@@ -17,7 +17,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Text role")
- tooltip: qsTr("The model role used for displaying text.")
+ tooltip: qsTr("Sets the model role for populating the combo box.")
}
SecondColumnLayout {
@@ -33,7 +33,7 @@ Column {
PropertyLabel {
text: qsTr("Display text")
- tooltip: qsTr("Holds the text that is displayed on the combo box button.")
+ tooltip: qsTr("Sets the initial display text for the combo box.")
}
SecondColumnLayout {
@@ -49,7 +49,7 @@ Column {
PropertyLabel {
text: qsTr("Current index")
- tooltip: qsTr("The index of the current item.")
+ tooltip: qsTr("Sets the current item.")
}
SecondColumnLayout {
@@ -68,7 +68,7 @@ Column {
PropertyLabel {
text: qsTr("Flat")
- tooltip: qsTr("Whether the combo box button is flat.")
+ tooltip: qsTr("Toggles if the combo box button is flat.")
}
SecondColumnLayout {
@@ -84,7 +84,7 @@ Column {
PropertyLabel {
text: qsTr("Editable")
- tooltip: qsTr("Whether the combo box is editable.")
+ tooltip: qsTr("Toggles if the combo box is editable.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ContainerSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ContainerSection.qml
index 0d416a7b1c..ea10ff9447 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ContainerSection.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ContainerSection.qml
@@ -14,7 +14,7 @@ Section {
SectionLayout {
PropertyLabel {
text: qsTr("Current index")
- tooltip: qsTr("The index of the current item.")
+ tooltip: qsTr("Sets the index of the current item.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml
index 93d53e0052..0bf345b860 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml
@@ -17,7 +17,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Value")
- tooltip: qsTr("The current value of the dial and whether it provides live value updates.")
+ tooltip: qsTr("Sets the value of the dial.")
}
SecondColumnLayout {
@@ -46,7 +46,7 @@ Column {
PropertyLabel {
text: qsTr("From")
- tooltip: qsTr("The starting value of the dial range.")
+ tooltip: qsTr("Sets the minimum value of the dial.")
}
SecondColumnLayout {
@@ -66,7 +66,7 @@ Column {
PropertyLabel {
text: qsTr("To")
- tooltip: qsTr("The ending value of the dial range.")
+ tooltip: qsTr("Sets the maximum value of the dial.")
}
SecondColumnLayout {
@@ -86,7 +86,7 @@ Column {
PropertyLabel {
text: qsTr("Step size")
- tooltip: qsTr("The step size of the dial.")
+ tooltip: qsTr("Sets the number by which the dial value changes.")
}
SecondColumnLayout {
@@ -106,7 +106,8 @@ Column {
PropertyLabel {
text: qsTr("Snap mode")
- tooltip: qsTr("The snap mode of the dial.")
+ tooltip: qsTr("Sets how the dial's handle snaps to the steps\n"
+ + "defined in <b>Step size</b>.")
}
SecondColumnLayout {
@@ -124,7 +125,7 @@ Column {
PropertyLabel {
text: qsTr("Input mode")
- tooltip: qsTr("How the dial tracks movement.")
+ tooltip: qsTr("Sets how the user can interact with the dial.")
}
SecondColumnLayout {
@@ -142,7 +143,7 @@ Column {
PropertyLabel {
text: qsTr("Wrap")
- tooltip: qsTr("Whether the dial wraps when dragged.")
+ tooltip: qsTr("Toggles if the dial wraps around when it reaches the start or end.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/GroupBoxSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/GroupBoxSpecifics.qml
index fa933090e9..4ecc892f5b 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/GroupBoxSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/GroupBoxSpecifics.qml
@@ -17,7 +17,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Title")
- tooltip: qsTr("The title of the group box.")
+ tooltip: qsTr("Sets the title for the group box.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageIndicatorSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageIndicatorSpecifics.qml
index 70e789db19..0fc050ea50 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageIndicatorSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageIndicatorSpecifics.qml
@@ -16,7 +16,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Count")
- tooltip: qsTr("The number of pages.")
+ tooltip: qsTr("Sets the number of pages.")
}
SecondColumnLayout {
@@ -35,7 +35,7 @@ Column {
PropertyLabel {
text: qsTr("Current")
- tooltip: qsTr("The index of the current page.")
+ tooltip: qsTr("Sets the current page.")
}
SecondColumnLayout {
@@ -54,7 +54,7 @@ Column {
PropertyLabel {
text: qsTr("Interactive")
- tooltip: qsTr("Whether the control is interactive.")
+ tooltip: qsTr("Toggles if the user can interact with the page indicator.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageSpecifics.qml
index 6654af5812..94495ab55e 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageSpecifics.qml
@@ -17,7 +17,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Title")
- tooltip: qsTr("Title of the page.")
+ tooltip: qsTr("Sets the title of the page.")
}
SecondColumnLayout {
@@ -33,7 +33,8 @@ Column {
PropertyLabel {
text: qsTr("Content size")
- tooltip: qsTr("Content width and height used for calculating the total implicit size.")
+ tooltip: qsTr("Sets the size of the page. This is used to\n"
+ + "calculate the total implicit size.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSection.qml
index ec83d6b178..049f7692ca 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSection.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSection.qml
@@ -14,7 +14,8 @@ Section {
SectionLayout {
PropertyLabel {
text: qsTr("Content size")
- tooltip: qsTr("Content width and height used for calculating the total implicit size.")
+ tooltip: qsTr("Sets the size of the pane. This is used to calculate\n"
+ + "the total implicit size.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ProgressBarSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ProgressBarSpecifics.qml
index 6dde7ca611..6dbf2123b7 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ProgressBarSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ProgressBarSpecifics.qml
@@ -17,7 +17,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Value")
- tooltip: qsTr("The current value of the progress.")
+ tooltip: qsTr("Sets the value of the progress bar.")
}
SecondColumnLayout {
@@ -37,7 +37,7 @@ Column {
PropertyLabel {
text: qsTr("From")
- tooltip: qsTr("The starting value for the progress.")
+ tooltip: qsTr("Sets the minimum value of the progress bar.")
}
SecondColumnLayout {
@@ -57,7 +57,7 @@ Column {
PropertyLabel {
text: qsTr("To")
- tooltip: qsTr("The ending value for the progress.")
+ tooltip: qsTr("Sets the maximum value of the progress bar.")
}
SecondColumnLayout {
@@ -77,7 +77,9 @@ Column {
PropertyLabel {
text: qsTr("Indeterminate")
- tooltip: qsTr("Whether the progress is indeterminate.")
+ tooltip: qsTr("Toggles if the progress bar is in indeterminate mode.\n"
+ +"A progress bar in indeterminate mode displays that an\n"
+ + "operation is in progress.")
blockedByTemplate: !backendValues.indeterminate.isAvailable
}
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml
index d392ecf4d8..a0dab3962d 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 <b>Snap mode</b> 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 {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml
index 0422c6eb1a..08df756a9e 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml
@@ -45,7 +45,7 @@ Column {
PropertyLabel {
text: qsTr("Radius")
- tooltip: qsTr("Radius of the button.")
+ tooltip: qsTr("Sets the radius of the button.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ScrollViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ScrollViewSpecifics.qml
index 3a8f819f7e..7785f6c7de 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ScrollViewSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ScrollViewSpecifics.qml
@@ -14,7 +14,11 @@ Column {
caption: qsTr("Scroll View")
SectionLayout {
- PropertyLabel { text: qsTr("Content size") }
+ PropertyLabel {
+ text: qsTr("Content size")
+ tooltip: qsTr("Sets the width and height of the view.\n"
+ + "This is used for calculating the total implicit size.")
+ }
SecondColumnLayout {
SpinBox {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml
index 536009a831..37cbc0b388 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml
@@ -16,7 +16,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Value")
- tooltip: qsTr("The current value of the spin box.")
+ tooltip: qsTr("Sets the current value of the spin box.")
}
SecondColumnLayout {
@@ -34,7 +34,7 @@ Column {
PropertyLabel {
text: qsTr("From")
- tooltip: qsTr("The starting value of the spin box range.")
+ tooltip: qsTr("Sets the lowest value of the spin box range.")
}
SecondColumnLayout {
@@ -52,7 +52,7 @@ Column {
PropertyLabel {
text: qsTr("To")
- tooltip: qsTr("The ending value of the spin box range.")
+ tooltip: qsTr("Sets the highest value of the spin box range.")
}
SecondColumnLayout {
@@ -70,7 +70,7 @@ Column {
PropertyLabel {
text: qsTr("Step size")
- tooltip: qsTr("The step size of the spin box.")
+ tooltip: qsTr("Sets the number by which the spin box value changes.")
}
SecondColumnLayout {
@@ -88,7 +88,7 @@ Column {
PropertyLabel {
text: qsTr("Editable")
- tooltip: qsTr("Whether the spin box is editable.")
+ tooltip: qsTr("Toggles if the spin box is editable.")
}
SecondColumnLayout {
@@ -104,7 +104,8 @@ Column {
PropertyLabel {
text: qsTr("Wrap")
- tooltip: qsTr("Whether the spin box values wrap.")
+ tooltip: qsTr("Toggles if the spin box wraps around when \n"
+ + "it reaches the start or end.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeViewSpecifics.qml
index 74c94571da..48f71d9aee 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeViewSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeViewSpecifics.qml
@@ -16,7 +16,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Interactive")
- tooltip: qsTr("Whether the view is interactive.")
+ tooltip: qsTr("Toggles if the user can interact with the view.")
}
SecondColumnLayout {
@@ -32,7 +32,7 @@ Column {
PropertyLabel {
text: qsTr("Orientation")
- tooltip: qsTr("Orientation of the view.")
+ tooltip: qsTr("Sets the orientation of the view.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabBarSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabBarSpecifics.qml
index 9e49b44803..6bd8d5750d 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabBarSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabBarSpecifics.qml
@@ -17,7 +17,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Position")
- tooltip: qsTr("Position of the tab bar.")
+ tooltip: qsTr("Sets the position of the tab bar.")
}
SecondColumnLayout {
@@ -35,7 +35,8 @@ Column {
PropertyLabel {
text: qsTr("Content size")
- tooltip: qsTr("Content width and height used for calculating the total implicit size.")
+ tooltip: qsTr("Sets the width and height of the tab bar.\n"
+ + "This is used for calculating the total implicit size.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolSeparatorSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolSeparatorSpecifics.qml
index ec54275f30..8c404cc3ea 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolSeparatorSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolSeparatorSpecifics.qml
@@ -16,7 +16,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Orientation")
- tooltip: qsTr("The orientation of the separator.")
+ tooltip: qsTr("Sets the orientation of the separator.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml
index 21f0c08190..cd717e7a32 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml
@@ -16,7 +16,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Visible count")
- tooltip: qsTr("The count of visible items.")
+ tooltip: qsTr("Sets the number of items in the model.")
}
SecondColumnLayout {
@@ -34,7 +34,7 @@ Column {
PropertyLabel {
text: qsTr("Current index")
- tooltip: qsTr("The index of the current item.")
+ tooltip: qsTr("Sets the index of the current item.")
}
SecondColumnLayout {
@@ -52,7 +52,8 @@ Column {
PropertyLabel {
text: qsTr("Wrap")
- tooltip: qsTr("Whether the tumbler values wrap.")
+ tooltip: qsTr("Toggles if the tumbler wraps around when it reaches the\n"
+ + "top or bottom.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridViewSpecifics.qml
index c738931180..9e2dbb699a 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridViewSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridViewSpecifics.qml
@@ -174,7 +174,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Range")
- tooltip: qsTr("Highlight range")
+ tooltip: qsTr("Sets the highlight range mode.")
}
SecondColumnLayout {
@@ -192,7 +192,7 @@ Column {
PropertyLabel {
text: qsTr("Move duration")
- tooltip: qsTr("Move animation duration of the highlight delegate.")
+ tooltip: qsTr("Sets the animation duration of the highlight delegate.")
}
SectionLayout {
@@ -210,7 +210,9 @@ Column {
PropertyLabel {
text: qsTr("Preferred begin")
- tooltip: qsTr("Preferred highlight begin - must be smaller than Preferred end.")
+ tooltip: qsTr("Sets the preferred highlight beginning. It must be smaller than\n"
+ + "the <b>Preferred end</b>. Note that the user has to add a\n"
+ + "highlight component.")
}
SectionLayout {
@@ -228,7 +230,9 @@ Column {
PropertyLabel {
text: qsTr("Preferred end")
- tooltip: qsTr("Preferred highlight end - must be larger than Preferred begin.")
+ tooltip: qsTr("Sets the preferred highlight end. It must be larger than\n"
+ + "the <b>Preferred begin</b>. Note that the user has to add\n"
+ + "a highlight component.")
}
SectionLayout {
@@ -246,7 +250,7 @@ Column {
PropertyLabel {
text: qsTr("Follows current")
- tooltip: qsTr("Whether the highlight is managed by the view.")
+ tooltip: qsTr("Toggles if the view manages the highlight.")
}
SectionLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayerSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayerSection.qml
index b4752192f5..9d2a27793c 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayerSection.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayerSection.qml
@@ -15,7 +15,7 @@ Section {
SectionLayout {
PropertyLabel {
text: qsTr("Enabled")
- tooltip: qsTr("Whether the component is layered or not.")
+ tooltip: qsTr("Toggles if the component is layered.")
}
SecondColumnLayout {
@@ -31,7 +31,7 @@ Section {
PropertyLabel {
text: qsTr("Sampler name")
- tooltip: qsTr("Name of the effect's source texture property.")
+ tooltip: qsTr("Sets the name of the effect's source texture property.")
}
SecondColumnLayout {
@@ -49,7 +49,7 @@ Section {
PropertyLabel {
text: qsTr("Samples")
- tooltip: qsTr("Allows requesting multisampled rendering in the layer.")
+ tooltip: qsTr("Sets the number of multisample renderings in the layer.")
}
SecondColumnLayout {
@@ -91,7 +91,7 @@ Section {
PropertyLabel {
text: qsTr("Effect")
- tooltip: qsTr("Applies the effect to this layer.")
+ tooltip: qsTr("Sets which effect is applied.")
}
SecondColumnLayout {
@@ -109,7 +109,7 @@ Section {
PropertyLabel {
text: qsTr("Format")
- tooltip: qsTr("Internal OpenGL format of the texture.")
+ tooltip: qsTr("Sets the internal OpenGL format for the texture.")
}
SecondColumnLayout {
@@ -127,7 +127,7 @@ Section {
PropertyLabel {
text: qsTr("Texture size")
- tooltip: qsTr("Requested pixel size of the layer's texture.")
+ tooltip: qsTr("Sets the requested pixel size of the layer's texture.")
}
SecondColumnLayout {
@@ -145,6 +145,7 @@ Section {
ControlLabel {
//: The width of the object
text: qsTr("W", "width")
+ tooltip: qsTr("Width.")
}
Spacer { implicitWidth: StudioTheme.Values.controlGap }
@@ -163,6 +164,7 @@ Section {
ControlLabel {
//: The height of the object
text: qsTr("H", "height")
+ tooltip: qsTr("Height.")
}
ExpandingSpacer {}
@@ -188,7 +190,7 @@ Section {
PropertyLabel {
text: qsTr("Wrap mode")
- tooltip: qsTr("OpenGL wrap modes associated with the texture.")
+ tooltip: qsTr("Sets the OpenGL warp modes associated with the texture.")
}
SecondColumnLayout {
@@ -206,7 +208,7 @@ Section {
PropertyLabel {
text: qsTr("Mipmap")
- tooltip: qsTr("Generates mipmaps for the texture.")
+ tooltip: qsTr("Toggles if mipmaps are generated for the texture.")
}
SecondColumnLayout {
@@ -222,7 +224,7 @@ Section {
PropertyLabel {
text: qsTr("Smooth")
- tooltip: qsTr("Transforms the layer smoothly.")
+ tooltip: qsTr("Toggles if the layer transforms smoothly.")
}
SecondColumnLayout {
@@ -238,7 +240,8 @@ Section {
PropertyLabel {
text: qsTr("Source rectangle")
- tooltip: qsTr("Sets the rectangular area of the component that should be rendered into the texture.")
+ tooltip: qsTr("Sets the rectangular area of the component that should\n"
+ + "be rendered into the texture.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml
index f66c3864fd..3017b0f30f 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml
@@ -144,7 +144,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Range")
- tooltip: qsTr("Highlight range.")
+ tooltip: qsTr("Sets the highlight range mode.")
blockedByTemplate: !backendValues.highlightRangeMode.isAvailable
}
@@ -164,7 +164,8 @@ Column {
PropertyLabel {
text: qsTr("Move duration")
- tooltip: qsTr("Move animation duration of the highlight delegate.")
+ tooltip: qsTr("Sets the animation duration of the highlight delegate when\n"
+ + "it is moved.")
blockedByTemplate: !backendValues.highlightMoveDuration.isAvailable
}
@@ -184,7 +185,8 @@ Column {
PropertyLabel {
text: qsTr("Move velocity")
- tooltip: qsTr("Move animation velocity of the highlight delegate.")
+ tooltip: qsTr("Sets the animation velocity of the highlight delegate when\n"
+ + "it is moved.")
blockedByTemplate: !backendValues.highlightMoveVelocity.isAvailable
}
@@ -204,7 +206,8 @@ Column {
PropertyLabel {
text: qsTr("Resize duration")
- tooltip: qsTr("Resize animation duration of the highlight delegate.")
+ tooltip: qsTr("Sets the animation duration of the highlight delegate when\n"
+ + "it is resized.")
blockedByTemplate: !backendValues.highlightResizeDuration.isAvailable
}
@@ -224,7 +227,8 @@ Column {
PropertyLabel {
text: qsTr("Resize velocity")
- tooltip: qsTr("Resize animation velocity of the highlight delegate.")
+ tooltip: qsTr("Sets the animation velocity of the highlight delegate when\n"
+ + "it is resized.")
blockedByTemplate: !backendValues.highlightResizeVelocity.isAvailable
}
@@ -244,7 +248,9 @@ Column {
PropertyLabel {
text: qsTr("Preferred begin")
- tooltip: qsTr("Preferred highlight begin - must be smaller than Preferred end.")
+ tooltip: qsTr("Sets the preferred highlight beginning. It must be smaller than\n"
+ + "the <b>Preferred end</b>. Note that the user has to add\n"
+ + "a highlight component.")
blockedByTemplate: !backendValues.preferredHighlightBegin.isAvailable
}
@@ -264,7 +270,9 @@ Column {
PropertyLabel {
text: qsTr("Preferred end")
- tooltip: qsTr("Preferred highlight end - must be larger than Preferred begin.")
+ tooltip: qsTr("Sets the preferred highlight end. It must be larger than\n"
+ + "the <b>Preferred begin</b>. Note that the user has to add\n"
+ + "a highlight component.")
blockedByTemplate: !backendValues.preferredHighlightEnd.isAvailable
}
@@ -284,7 +292,7 @@ Column {
PropertyLabel {
text: qsTr("Follows current")
- tooltip: qsTr("Whether the highlight is managed by the view.")
+ tooltip: qsTr("Toggles if the view manages the highlight.")
blockedByTemplate: !backendValues.highlightFollowsCurrentItem.isAvailable
}
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml
index 6370a6d735..7b26e2e595 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml
@@ -117,7 +117,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Range")
- tooltip: qsTr("Highlight range")
+ tooltip: qsTr("Sets the highlight range mode.")
}
SecondColumnLayout {
@@ -135,7 +135,8 @@ Column {
PropertyLabel {
text: qsTr("Move duration")
- tooltip: qsTr("Move animation duration of the highlight delegate.")
+ tooltip: qsTr("Sets the animation duration of the highlight delegate when\n"
+ + "it is moved.")
}
SecondColumnLayout {
@@ -153,7 +154,9 @@ Column {
PropertyLabel {
text: qsTr("Preferred begin")
- tooltip: qsTr("Preferred highlight begin - must be smaller than Preferred end. Note that the user has to add a highlight component.")
+ tooltip: qsTr("Sets the preferred highlight beginning. It must be smaller than\n"
+ + "the <b>Preferred end</b>. Note that the user has to add\n"
+ + "a highlight component.")
}
SecondColumnLayout {
@@ -172,7 +175,9 @@ Column {
PropertyLabel {
text: qsTr("Preferred end")
- tooltip: qsTr("Preferred highlight end - must be larger than Preferred begin. Note that the user has to add a highlight component.")
+ tooltip: qsTr("Sets the preferred highlight end. It must be larger than\n"
+ + "the <b>Preferred begin</b>. Note that the user has to add\n"
+ + "a highlight component.")
}
SecondColumnLayout {