summaryrefslogtreecommitdiff
path: root/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml
diff options
context:
space:
mode:
Diffstat (limited to 'share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml')
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml35
1 files changed, 22 insertions, 13 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml
index f4c6e62c3f..ec86f2f606 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml
@@ -21,7 +21,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Orientation")
- tooltip: qsTr("Orientation of the list.")
+ tooltip: qsTr("Sets the orientation of the list.")
}
SecondColumnLayout {
@@ -39,6 +39,7 @@ Column {
PropertyLabel {
text: qsTr("Layout direction")
+ tooltip: qsTr("Sets the direction that the cells flow inside a list.")
blockedByTemplate: !backendValues.layoutDirection.isAvailable
}
@@ -58,7 +59,7 @@ Column {
PropertyLabel {
text: qsTr("Snap mode")
- tooltip: qsTr("Determines how the view scrolling will settle following a drag or flick.")
+ tooltip: qsTr("Sets how the view scrolling settles following a drag or flick.")
blockedByTemplate: !backendValues.snapMode.isAvailable
}
@@ -78,7 +79,7 @@ Column {
PropertyLabel {
text: qsTr("Spacing")
- tooltip: qsTr("Spacing between components.")
+ tooltip: qsTr("Sets the spacing between components.")
}
SecondColumnLayout {
@@ -96,7 +97,7 @@ Column {
PropertyLabel {
text: qsTr("Cache")
- tooltip: qsTr("Cache buffer.")
+ tooltip: qsTr("Sets in pixels how far the components are kept loaded outside the view's visible area.")
blockedByTemplate: !backendValues.cacheBuffer.isAvailable
}
@@ -116,7 +117,7 @@ Column {
PropertyLabel {
text: qsTr("Navigation wraps")
- tooltip: qsTr("Whether the grid wraps key navigation.")
+ tooltip: qsTr("Toggles if the grid wraps key navigation.")
blockedByTemplate: !backendValues.keyNavigationWraps.isAvailable
}
@@ -143,7 +144,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Range")
- tooltip: qsTr("Highlight range.")
+ tooltip: qsTr("Sets the highlight range mode.")
blockedByTemplate: !backendValues.highlightRangeMode.isAvailable
}
@@ -163,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
}
@@ -183,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
}
@@ -203,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
}
@@ -223,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
}
@@ -243,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
}
@@ -263,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
}
@@ -283,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
}